/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 44 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile extern char *yytext; #undef __GNUC_MINOR__ #include #include #include "TypedefTable.h" #include "lex.h" #include "ParseNode.h" #include "TypeData.h" #include "LinkageSpec.h" DeclarationNode *theTree = 0; // the resulting parse tree LinkageSpec::Type linkage = LinkageSpec::Cforall; std::stack< LinkageSpec::Type > linkageStack; TypedefTable typedefTable; /* Line 268 of yacc.c */ #line 93 "Parser/parser.cc" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { TYPEDEF = 258, AUTO = 259, EXTERN = 260, REGISTER = 261, STATIC = 262, INLINE = 263, FORTRAN = 264, CONST = 265, VOLATILE = 266, RESTRICT = 267, FORALL = 268, LVALUE = 269, VOID = 270, CHAR = 271, SHORT = 272, INT = 273, LONG = 274, FLOAT = 275, DOUBLE = 276, SIGNED = 277, UNSIGNED = 278, BOOL = 279, COMPLEX = 280, IMAGINARY = 281, TYPEOF = 282, LABEL = 283, ENUM = 284, STRUCT = 285, UNION = 286, TYPE = 287, FTYPE = 288, DTYPE = 289, CONTEXT = 290, SIZEOF = 291, ATTRIBUTE = 292, EXTENSION = 293, IF = 294, ELSE = 295, SWITCH = 296, CASE = 297, DEFAULT = 298, DO = 299, WHILE = 300, FOR = 301, BREAK = 302, CONTINUE = 303, GOTO = 304, RETURN = 305, CHOOSE = 306, DISABLE = 307, ENABLE = 308, FALLTHRU = 309, TRY = 310, CATCH = 311, CATCHRESUME = 312, FINALLY = 313, THROW = 314, THROWRESUME = 315, AT = 316, ASM = 317, ALIGNAS = 318, ALIGNOF = 319, ATOMIC = 320, GENERIC = 321, NORETURN = 322, STATICASSERT = 323, THREADLOCAL = 324, IDENTIFIER = 325, QUOTED_IDENTIFIER = 326, TYPEDEFname = 327, TYPEGENname = 328, ATTR_IDENTIFIER = 329, ATTR_TYPEDEFname = 330, ATTR_TYPEGENname = 331, INTEGERconstant = 332, FLOATINGconstant = 333, CHARACTERconstant = 334, STRINGliteral = 335, ZERO = 336, ONE = 337, ARROW = 338, ICR = 339, DECR = 340, LS = 341, RS = 342, LE = 343, GE = 344, EQ = 345, NE = 346, ANDAND = 347, OROR = 348, ELLIPSIS = 349, MULTassign = 350, DIVassign = 351, MODassign = 352, PLUSassign = 353, MINUSassign = 354, LSassign = 355, RSassign = 356, ANDassign = 357, ERassign = 358, ORassign = 359, ATassign = 360, THEN = 361 }; #endif /* Tokens. */ #define TYPEDEF 258 #define AUTO 259 #define EXTERN 260 #define REGISTER 261 #define STATIC 262 #define INLINE 263 #define FORTRAN 264 #define CONST 265 #define VOLATILE 266 #define RESTRICT 267 #define FORALL 268 #define LVALUE 269 #define VOID 270 #define CHAR 271 #define SHORT 272 #define INT 273 #define LONG 274 #define FLOAT 275 #define DOUBLE 276 #define SIGNED 277 #define UNSIGNED 278 #define BOOL 279 #define COMPLEX 280 #define IMAGINARY 281 #define TYPEOF 282 #define LABEL 283 #define ENUM 284 #define STRUCT 285 #define UNION 286 #define TYPE 287 #define FTYPE 288 #define DTYPE 289 #define CONTEXT 290 #define SIZEOF 291 #define ATTRIBUTE 292 #define EXTENSION 293 #define IF 294 #define ELSE 295 #define SWITCH 296 #define CASE 297 #define DEFAULT 298 #define DO 299 #define WHILE 300 #define FOR 301 #define BREAK 302 #define CONTINUE 303 #define GOTO 304 #define RETURN 305 #define CHOOSE 306 #define DISABLE 307 #define ENABLE 308 #define FALLTHRU 309 #define TRY 310 #define CATCH 311 #define CATCHRESUME 312 #define FINALLY 313 #define THROW 314 #define THROWRESUME 315 #define AT 316 #define ASM 317 #define ALIGNAS 318 #define ALIGNOF 319 #define ATOMIC 320 #define GENERIC 321 #define NORETURN 322 #define STATICASSERT 323 #define THREADLOCAL 324 #define IDENTIFIER 325 #define QUOTED_IDENTIFIER 326 #define TYPEDEFname 327 #define TYPEGENname 328 #define ATTR_IDENTIFIER 329 #define ATTR_TYPEDEFname 330 #define ATTR_TYPEGENname 331 #define INTEGERconstant 332 #define FLOATINGconstant 333 #define CHARACTERconstant 334 #define STRINGliteral 335 #define ZERO 336 #define ONE 337 #define ARROW 338 #define ICR 339 #define DECR 340 #define LS 341 #define RS 342 #define LE 343 #define GE 344 #define EQ 345 #define NE 346 #define ANDAND 347 #define OROR 348 #define ELLIPSIS 349 #define MULTassign 350 #define DIVassign 351 #define MODassign 352 #define PLUSassign 353 #define MINUSassign 354 #define LSassign 355 #define RSassign 356 #define ANDassign 357 #define ERassign 358 #define ORassign 359 #define ATassign 360 #define THEN 361 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 110 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantNode *constant; LabelNode *label; InitializerNode *in; bool flag; /* Line 293 of yacc.c */ #line 357 "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 369 "Parser/parser.cc" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(e) ((void) (e)) #else # define YYUSE(e) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(n) (n) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int yyi) #else static int YYID (yyi) int yyi; #endif { return yyi; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (YYID (0)) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 247 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 10817 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 131 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 238 /* YYNRULES -- Number of rules. */ #define YYNRULES 749 /* YYNRULES -- Number of states. */ #define YYNSTATES 1570 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 361 #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, 116, 2, 2, 2, 123, 118, 2, 107, 108, 117, 119, 114, 120, 111, 122, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 115, 130, 124, 129, 125, 128, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 109, 2, 110, 126, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 112, 127, 113, 121, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 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 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 4, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 32, 34, 36, 40, 44, 46, 53, 58, 62, 70, 74, 82, 85, 88, 96, 101, 103, 107, 108, 110, 114, 122, 132, 134, 138, 140, 144, 152, 156, 164, 166, 168, 170, 173, 176, 179, 182, 185, 188, 191, 196, 198, 203, 208, 211, 216, 219, 221, 223, 225, 227, 229, 234, 239, 241, 245, 249, 253, 255, 259, 263, 265, 269, 273, 275, 279, 283, 287, 291, 293, 297, 301, 303, 307, 309, 313, 315, 319, 321, 325, 327, 331, 333, 339, 344, 350, 352, 354, 358, 362, 365, 366, 368, 371, 377, 384, 392, 394, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 424, 425, 427, 429, 431, 433, 435, 437, 439, 441, 443, 450, 455, 458, 466, 468, 472, 474, 477, 479, 482, 484, 487, 490, 496, 504, 510, 520, 526, 536, 538, 542, 544, 546, 550, 554, 557, 559, 562, 565, 566, 568, 571, 575, 576, 578, 581, 585, 589, 594, 595, 597, 599, 602, 608, 616, 623, 630, 635, 639, 644, 647, 651, 654, 658, 662, 666, 670, 676, 680, 684, 689, 691, 697, 704, 710, 717, 727, 738, 748, 759, 762, 764, 767, 770, 773, 775, 782, 791, 802, 815, 830, 831, 833, 834, 836, 838, 842, 847, 855, 856, 858, 862, 864, 868, 870, 872, 874, 878, 880, 882, 884, 888, 889, 891, 895, 900, 902, 906, 908, 910, 914, 918, 922, 926, 930, 933, 937, 944, 948, 952, 957, 959, 962, 965, 969, 975, 984, 992, 1000, 1006, 1016, 1019, 1022, 1028, 1032, 1038, 1043, 1047, 1052, 1057, 1065, 1069, 1073, 1077, 1081, 1086, 1093, 1095, 1097, 1099, 1101, 1103, 1105, 1107, 1109, 1110, 1112, 1114, 1117, 1119, 1121, 1123, 1125, 1127, 1129, 1131, 1132, 1138, 1140, 1143, 1147, 1149, 1152, 1154, 1156, 1158, 1160, 1162, 1164, 1166, 1168, 1170, 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1199, 1202, 1206, 1210, 1212, 1216, 1218, 1221, 1224, 1227, 1232, 1237, 1242, 1247, 1249, 1252, 1255, 1259, 1261, 1264, 1267, 1269, 1272, 1275, 1279, 1281, 1284, 1287, 1289, 1291, 1296, 1299, 1305, 1313, 1316, 1319, 1322, 1324, 1327, 1330, 1334, 1337, 1341, 1343, 1346, 1350, 1353, 1356, 1361, 1362, 1364, 1367, 1370, 1372, 1373, 1375, 1378, 1381, 1387, 1394, 1397, 1400, 1405, 1406, 1409, 1410, 1412, 1414, 1416, 1422, 1428, 1434, 1436, 1442, 1448, 1458, 1460, 1466, 1467, 1469, 1471, 1477, 1479, 1481, 1487, 1493, 1495, 1499, 1503, 1508, 1510, 1512, 1514, 1516, 1519, 1521, 1525, 1529, 1531, 1534, 1536, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1565, 1567, 1569, 1571, 1574, 1575, 1578, 1581, 1583, 1588, 1589, 1591, 1594, 1598, 1603, 1606, 1609, 1611, 1614, 1616, 1619, 1625, 1631, 1639, 1646, 1648, 1651, 1654, 1658, 1660, 1663, 1666, 1671, 1674, 1679, 1680, 1685, 1688, 1690, 1692, 1694, 1695, 1698, 1704, 1710, 1724, 1726, 1728, 1732, 1736, 1739, 1743, 1747, 1750, 1755, 1757, 1764, 1774, 1775, 1787, 1789, 1793, 1797, 1801, 1803, 1805, 1811, 1814, 1820, 1821, 1823, 1825, 1829, 1830, 1832, 1834, 1836, 1838, 1839, 1846, 1849, 1851, 1854, 1859, 1862, 1866, 1870, 1874, 1879, 1885, 1891, 1897, 1904, 1906, 1908, 1910, 1914, 1915, 1921, 1922, 1924, 1926, 1929, 1936, 1938, 1942, 1943, 1945, 1950, 1952, 1954, 1956, 1958, 1961, 1963, 1966, 1969, 1971, 1975, 1978, 1982, 1986, 1989, 1994, 1999, 2003, 2012, 2016, 2019, 2021, 2024, 2031, 2040, 2044, 2047, 2051, 2055, 2060, 2065, 2069, 2071, 2073, 2075, 2080, 2087, 2091, 2094, 2098, 2102, 2107, 2112, 2116, 2119, 2121, 2124, 2127, 2129, 2133, 2136, 2140, 2144, 2147, 2152, 2157, 2161, 2168, 2177, 2181, 2184, 2186, 2189, 2192, 2195, 2199, 2203, 2206, 2211, 2216, 2220, 2227, 2236, 2240, 2243, 2245, 2248, 2251, 2253, 2255, 2258, 2262, 2266, 2269, 2274, 2281, 2290, 2292, 2295, 2298, 2300, 2303, 2306, 2310, 2314, 2316, 2321, 2326, 2330, 2336, 2345, 2349, 2352, 2356, 2358, 2364, 2370, 2377, 2384, 2386, 2389, 2392, 2394, 2397, 2400, 2404, 2408, 2410, 2415, 2420, 2424, 2430, 2439, 2443, 2445, 2448, 2450, 2453, 2460, 2466, 2473, 2481, 2489, 2491, 2494, 2497, 2499, 2502, 2505, 2509, 2513, 2515, 2520, 2525, 2529, 2538, 2542, 2544, 2546, 2549, 2551, 2553, 2556, 2560, 2563, 2567, 2570, 2574, 2578, 2581, 2586, 2590, 2593, 2597, 2600, 2605, 2609, 2612, 2619, 2626, 2633, 2641, 2643, 2646, 2648, 2650, 2652, 2655, 2659, 2662, 2666, 2669, 2673, 2677, 2682, 2685, 2689, 2694, 2697, 2703, 2709, 2716, 2723, 2724, 2726, 2727 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 297, 0, -1, -1, -1, 77, -1, 78, -1, 79, -1, 70, -1, 74, -1, 138, -1, 70, -1, 74, -1, 70, -1, 81, -1, 82, -1, 80, -1, 139, 80, -1, 70, -1, 138, -1, 107, 166, 108, -1, 107, 170, 108, -1, 140, -1, 141, 109, 132, 161, 133, 110, -1, 141, 107, 142, 108, -1, 141, 111, 137, -1, 141, 111, 109, 132, 144, 133, 110, -1, 141, 83, 137, -1, 141, 83, 109, 132, 144, 133, 110, -1, 141, 84, -1, 141, 85, -1, 107, 270, 108, 112, 274, 367, 113, -1, 141, 112, 142, 113, -1, 143, -1, 142, 114, 143, -1, -1, 161, -1, 137, 115, 161, -1, 109, 132, 161, 133, 110, 115, 161, -1, 109, 132, 161, 114, 164, 133, 110, 115, 161, -1, 145, -1, 144, 114, 145, -1, 137, -1, 137, 111, 145, -1, 137, 111, 109, 132, 144, 133, 110, -1, 137, 83, 145, -1, 137, 83, 109, 132, 144, 133, 110, -1, 141, -1, 134, -1, 139, -1, 84, 146, -1, 85, 146, -1, 38, 148, -1, 147, 148, -1, 116, 148, -1, 117, 148, -1, 36, 146, -1, 36, 107, 270, 108, -1, 74, -1, 74, 107, 271, 108, -1, 74, 107, 143, 108, -1, 64, 146, -1, 64, 107, 270, 108, -1, 92, 137, -1, 118, -1, 119, -1, 120, -1, 121, -1, 146, -1, 107, 270, 108, 148, -1, 107, 270, 108, 163, -1, 148, -1, 149, 117, 148, -1, 149, 122, 148, -1, 149, 123, 148, -1, 149, -1, 150, 119, 149, -1, 150, 120, 149, -1, 150, -1, 151, 86, 150, -1, 151, 87, 150, -1, 151, -1, 152, 124, 151, -1, 152, 125, 151, -1, 152, 88, 151, -1, 152, 89, 151, -1, 152, -1, 153, 90, 152, -1, 153, 91, 152, -1, 153, -1, 154, 118, 153, -1, 154, -1, 155, 126, 154, -1, 155, -1, 156, 127, 155, -1, 156, -1, 157, 92, 156, -1, 157, -1, 158, 93, 157, -1, 158, -1, 158, 128, 166, 115, 159, -1, 158, 128, 115, 159, -1, 158, 128, 166, 115, 163, -1, 159, -1, 159, -1, 146, 129, 161, -1, 146, 165, 161, -1, 163, 368, -1, -1, 161, -1, 109, 110, -1, 109, 132, 161, 133, 110, -1, 109, 132, 114, 164, 133, 110, -1, 109, 132, 161, 114, 164, 133, 110, -1, 162, -1, 164, 114, 162, -1, 95, -1, 96, -1, 97, -1, 98, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 161, -1, 166, 114, 161, -1, -1, 166, -1, 169, -1, 170, -1, 174, -1, 175, -1, 187, -1, 189, -1, 190, -1, 195, -1, 126, 141, 112, 142, 113, 130, -1, 137, 115, 307, 168, -1, 112, 113, -1, 112, 132, 132, 206, 171, 133, 113, -1, 172, -1, 171, 132, 172, -1, 209, -1, 38, 209, -1, 303, -1, 168, 133, -1, 168, -1, 173, 168, -1, 167, 130, -1, 39, 107, 166, 108, 168, -1, 39, 107, 166, 108, 168, 40, 168, -1, 41, 107, 166, 108, 180, -1, 41, 107, 166, 108, 112, 132, 202, 181, 113, -1, 51, 107, 166, 108, 180, -1, 51, 107, 166, 108, 112, 132, 202, 183, 113, -1, 160, -1, 160, 94, 160, -1, 305, -1, 176, -1, 177, 114, 176, -1, 42, 177, 115, -1, 43, 115, -1, 178, -1, 179, 178, -1, 179, 168, -1, -1, 182, -1, 179, 173, -1, 182, 179, 173, -1, -1, 184, -1, 179, 186, -1, 179, 173, 185, -1, 184, 179, 186, -1, 184, 179, 173, 185, -1, -1, 186, -1, 54, -1, 54, 130, -1, 45, 107, 166, 108, 168, -1, 44, 168, 45, 107, 166, 108, 130, -1, 46, 107, 132, 188, 108, 168, -1, 167, 133, 130, 167, 130, 167, -1, 209, 167, 130, 167, -1, 49, 137, 130, -1, 49, 117, 166, 130, -1, 48, 130, -1, 48, 137, 130, -1, 47, 130, -1, 47, 137, 130, -1, 50, 167, 130, -1, 59, 162, 130, -1, 60, 162, 130, -1, 60, 162, 61, 161, 130, -1, 55, 170, 191, -1, 55, 170, 193, -1, 55, 170, 191, 193, -1, 192, -1, 56, 107, 94, 108, 170, -1, 192, 56, 107, 94, 108, 170, -1, 57, 107, 94, 108, 170, -1, 192, 57, 107, 94, 108, 170, -1, 56, 107, 132, 132, 194, 133, 108, 170, 133, -1, 192, 56, 107, 132, 132, 194, 133, 108, 170, 133, -1, 57, 107, 132, 132, 194, 133, 108, 170, 133, -1, 192, 57, 107, 132, 132, 194, 133, 108, 170, 133, -1, 58, 170, -1, 222, -1, 222, 304, -1, 222, 352, -1, 361, 137, -1, 361, -1, 62, 196, 107, 139, 108, 130, -1, 62, 196, 107, 139, 115, 197, 108, 130, -1, 62, 196, 107, 139, 115, 197, 115, 197, 108, 130, -1, 62, 196, 107, 139, 115, 197, 115, 197, 115, 200, 108, 130, -1, 62, 196, 49, 107, 139, 115, 115, 197, 115, 200, 115, 201, 108, 130, -1, -1, 11, -1, -1, 198, -1, 199, -1, 198, 114, 199, -1, 139, 107, 160, 108, -1, 109, 160, 110, 139, 107, 160, 108, -1, -1, 139, -1, 200, 114, 139, -1, 137, -1, 201, 114, 137, -1, 133, -1, 203, -1, 209, -1, 203, 132, 209, -1, 133, -1, 205, -1, 219, -1, 205, 132, 219, -1, -1, 207, -1, 28, 208, 130, -1, 207, 28, 208, 130, -1, 269, -1, 208, 114, 269, -1, 210, -1, 219, -1, 211, 133, 130, -1, 216, 133, 130, -1, 213, 133, 130, -1, 288, 133, 130, -1, 291, 133, 130, -1, 212, 272, -1, 228, 212, 272, -1, 211, 133, 114, 132, 267, 272, -1, 362, 267, 306, -1, 365, 267, 306, -1, 224, 365, 267, 306, -1, 214, -1, 224, 214, -1, 228, 214, -1, 228, 224, 214, -1, 213, 133, 114, 132, 267, -1, 109, 110, 267, 107, 132, 255, 133, 108, -1, 365, 267, 107, 132, 255, 133, 108, -1, 215, 267, 107, 132, 255, 133, 108, -1, 109, 132, 257, 133, 110, -1, 109, 132, 257, 133, 114, 132, 258, 133, 110, -1, 3, 212, -1, 3, 214, -1, 216, 133, 114, 132, 137, -1, 3, 222, 304, -1, 217, 133, 114, 132, 304, -1, 224, 3, 222, 304, -1, 222, 3, 304, -1, 222, 3, 224, 304, -1, 3, 137, 129, 161, -1, 218, 133, 114, 132, 137, 129, 161, -1, 220, 133, 130, -1, 217, 133, 130, -1, 218, 133, 130, -1, 237, 133, 130, -1, 221, 304, 306, 272, -1, 220, 114, 307, 304, 306, 272, -1, 233, -1, 237, -1, 239, -1, 278, -1, 234, -1, 238, -1, 240, -1, 279, -1, -1, 224, -1, 225, -1, 224, 225, -1, 226, -1, 309, -1, 10, -1, 12, -1, 11, -1, 14, -1, 65, -1, -1, 13, 107, 227, 281, 108, -1, 229, -1, 224, 229, -1, 228, 224, 229, -1, 230, -1, 229, 230, -1, 231, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 67, -1, 69, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 24, -1, 25, -1, 26, -1, 234, -1, 228, 234, -1, 233, 230, -1, 233, 230, 224, -1, 233, 230, 234, -1, 235, -1, 223, 236, 223, -1, 232, -1, 224, 232, -1, 235, 225, -1, 235, 232, -1, 27, 107, 271, 108, -1, 27, 107, 166, 108, -1, 76, 107, 271, 108, -1, 76, 107, 166, 108, -1, 238, -1, 228, 238, -1, 237, 230, -1, 237, 230, 224, -1, 241, -1, 224, 241, -1, 238, 225, -1, 240, -1, 228, 240, -1, 239, 230, -1, 239, 230, 224, -1, 72, -1, 224, 72, -1, 240, 225, -1, 242, -1, 252, -1, 243, 112, 244, 113, -1, 243, 269, -1, 243, 269, 112, 244, 113, -1, 243, 107, 287, 108, 112, 244, 113, -1, 243, 280, -1, 30, 307, -1, 31, 307, -1, 245, -1, 244, 245, -1, 246, 130, -1, 38, 246, 130, -1, 247, 130, -1, 38, 247, 130, -1, 361, -1, 361, 269, -1, 246, 114, 269, -1, 246, 114, -1, 222, 248, -1, 247, 114, 307, 248, -1, -1, 250, -1, 313, 249, -1, 326, 249, -1, 352, -1, -1, 250, -1, 115, 160, -1, 29, 307, -1, 251, 112, 253, 367, 113, -1, 251, 269, 112, 253, 367, 113, -1, 251, 269, -1, 269, 254, -1, 253, 114, 269, 254, -1, -1, 129, 160, -1, -1, 256, -1, 258, -1, 257, -1, 257, 133, 114, 132, 258, -1, 258, 133, 114, 132, 94, -1, 257, 133, 114, 132, 94, -1, 262, -1, 258, 133, 114, 132, 262, -1, 257, 133, 114, 132, 262, -1, 257, 133, 114, 132, 258, 133, 114, 132, 262, -1, 263, -1, 258, 133, 114, 132, 263, -1, -1, 260, -1, 261, -1, 261, 133, 114, 132, 94, -1, 265, -1, 264, -1, 261, 133, 114, 132, 265, -1, 261, 133, 114, 132, 264, -1, 264, -1, 357, 267, 368, -1, 365, 267, 368, -1, 224, 365, 267, 368, -1, 214, -1, 265, -1, 357, -1, 365, -1, 224, 365, -1, 366, -1, 221, 331, 368, -1, 221, 335, 368, -1, 221, -1, 221, 346, -1, 137, -1, 266, 114, 137, -1, 135, -1, 72, -1, 73, -1, 136, -1, 72, -1, 73, -1, 137, -1, 72, -1, 73, -1, 361, -1, 222, -1, 222, 352, -1, 361, -1, 366, -1, 222, -1, 222, 340, -1, -1, 129, 273, -1, 105, 273, -1, 161, -1, 112, 274, 367, 113, -1, -1, 273, -1, 275, 273, -1, 274, 114, 273, -1, 274, 114, 275, 273, -1, 276, 115, -1, 269, 115, -1, 277, -1, 276, 277, -1, 78, -1, 111, 269, -1, 109, 132, 161, 133, 110, -1, 109, 132, 305, 133, 110, -1, 109, 132, 160, 94, 160, 133, 110, -1, 111, 109, 132, 144, 133, 110, -1, 279, -1, 228, 279, -1, 278, 230, -1, 278, 230, 224, -1, 280, -1, 224, 280, -1, 279, 225, -1, 73, 107, 287, 108, -1, 282, 368, -1, 281, 114, 282, 368, -1, -1, 284, 269, 283, 285, -1, 222, 331, -1, 32, -1, 34, -1, 33, -1, -1, 285, 286, -1, 127, 269, 107, 287, 108, -1, 127, 112, 132, 293, 113, -1, 127, 107, 132, 281, 133, 108, 112, 132, 293, 113, 107, 287, 108, -1, 271, -1, 161, -1, 287, 114, 271, -1, 287, 114, 161, -1, 32, 289, -1, 229, 32, 289, -1, 288, 114, 289, -1, 290, 285, -1, 290, 285, 129, 271, -1, 269, -1, 268, 107, 132, 281, 133, 108, -1, 35, 269, 107, 132, 281, 133, 108, 112, 113, -1, -1, 35, 269, 107, 132, 281, 133, 108, 112, 292, 293, 113, -1, 294, -1, 293, 132, 294, -1, 295, 133, 130, -1, 296, 133, 130, -1, 212, -1, 214, -1, 295, 133, 114, 132, 267, -1, 222, 304, -1, 296, 133, 114, 132, 304, -1, -1, 298, -1, 300, -1, 298, 132, 300, -1, -1, 298, -1, 209, -1, 302, -1, 195, -1, -1, 5, 80, 301, 112, 299, 113, -1, 38, 300, -1, 303, -1, 318, 170, -1, 322, 132, 204, 170, -1, 213, 170, -1, 221, 318, 170, -1, 224, 318, 170, -1, 228, 318, 170, -1, 228, 224, 318, 170, -1, 221, 322, 132, 204, 170, -1, 224, 322, 132, 204, 170, -1, 228, 322, 132, 204, 170, -1, 228, 224, 322, 132, 204, 170, -1, 313, -1, 318, -1, 326, -1, 160, 121, 160, -1, -1, 62, 107, 139, 108, 307, -1, -1, 308, -1, 309, -1, 308, 309, -1, 37, 107, 107, 310, 108, 108, -1, 311, -1, 310, 114, 311, -1, -1, 312, -1, 312, 107, 167, 108, -1, 267, -1, 231, -1, 232, -1, 225, -1, 314, 307, -1, 315, -1, 316, 307, -1, 317, 307, -1, 135, -1, 107, 314, 108, -1, 117, 313, -1, 117, 224, 313, -1, 107, 315, 108, -1, 314, 344, -1, 107, 315, 108, 344, -1, 107, 316, 108, 345, -1, 107, 316, 108, -1, 107, 315, 108, 107, 132, 259, 133, 108, -1, 107, 317, 108, -1, 319, 307, -1, 320, -1, 321, 307, -1, 314, 107, 132, 259, 133, 108, -1, 107, 320, 108, 107, 132, 259, 133, 108, -1, 107, 319, 108, -1, 117, 318, -1, 117, 224, 318, -1, 107, 320, 108, -1, 107, 320, 108, 344, -1, 107, 321, 108, 345, -1, 107, 321, 108, -1, 323, -1, 324, -1, 325, -1, 314, 107, 266, 108, -1, 107, 324, 108, 107, 266, 108, -1, 107, 323, 108, -1, 117, 322, -1, 117, 224, 322, -1, 107, 324, 108, -1, 107, 324, 108, 344, -1, 107, 325, 108, 345, -1, 107, 325, 108, -1, 327, 307, -1, 328, -1, 329, 307, -1, 330, 307, -1, 336, -1, 107, 327, 108, -1, 117, 326, -1, 117, 224, 326, -1, 107, 328, 108, -1, 327, 344, -1, 107, 328, 108, 344, -1, 107, 329, 108, 345, -1, 107, 329, 108, -1, 327, 107, 132, 259, 133, 108, -1, 107, 328, 108, 107, 132, 259, 133, 108, -1, 107, 330, 108, -1, 314, 307, -1, 332, -1, 333, 307, -1, 334, 307, -1, 117, 331, -1, 117, 224, 331, -1, 107, 332, 108, -1, 314, 350, -1, 107, 332, 108, 344, -1, 107, 333, 108, 345, -1, 107, 333, 108, -1, 314, 107, 132, 259, 133, 108, -1, 107, 332, 108, 107, 132, 259, 133, 108, -1, 107, 334, 108, -1, 336, 307, -1, 337, -1, 338, 307, -1, 339, 307, -1, 72, -1, 73, -1, 117, 335, -1, 117, 224, 335, -1, 107, 337, 108, -1, 336, 350, -1, 107, 337, 108, 350, -1, 336, 107, 132, 259, 133, 108, -1, 107, 337, 108, 107, 132, 259, 133, 108, -1, 341, -1, 342, 307, -1, 343, 307, -1, 117, -1, 117, 224, -1, 117, 340, -1, 117, 224, 340, -1, 107, 341, 108, -1, 344, -1, 107, 341, 108, 344, -1, 107, 342, 108, 345, -1, 107, 342, 108, -1, 107, 132, 259, 133, 108, -1, 107, 341, 108, 107, 132, 259, 133, 108, -1, 107, 343, 108, -1, 109, 110, -1, 109, 110, 345, -1, 345, -1, 109, 132, 161, 133, 110, -1, 109, 132, 117, 133, 110, -1, 345, 109, 132, 161, 133, 110, -1, 345, 109, 132, 117, 133, 110, -1, 347, -1, 348, 307, -1, 349, 307, -1, 117, -1, 117, 224, -1, 117, 346, -1, 117, 224, 346, -1, 107, 347, 108, -1, 350, -1, 107, 347, 108, 350, -1, 107, 348, 108, 345, -1, 107, 348, 108, -1, 107, 132, 259, 133, 108, -1, 107, 347, 108, 107, 132, 259, 133, 108, -1, 107, 349, 108, -1, 351, -1, 351, 345, -1, 345, -1, 109, 110, -1, 109, 132, 224, 117, 133, 110, -1, 109, 132, 224, 133, 110, -1, 109, 132, 224, 161, 133, 110, -1, 109, 132, 7, 223, 161, 133, 110, -1, 109, 132, 224, 7, 161, 133, 110, -1, 353, -1, 354, 307, -1, 355, 307, -1, 117, -1, 117, 224, -1, 117, 352, -1, 117, 224, 352, -1, 107, 353, 108, -1, 344, -1, 107, 353, 108, 344, -1, 107, 354, 108, 345, -1, 107, 354, 108, -1, 107, 353, 108, 107, 132, 259, 133, 108, -1, 107, 355, 108, -1, 357, -1, 365, -1, 224, 365, -1, 358, -1, 359, -1, 117, 222, -1, 224, 117, 222, -1, 117, 366, -1, 224, 117, 366, -1, 117, 356, -1, 224, 117, 356, -1, 109, 110, 222, -1, 360, 222, -1, 109, 110, 345, 222, -1, 360, 345, 222, -1, 345, 222, -1, 109, 110, 358, -1, 360, 358, -1, 109, 110, 345, 358, -1, 360, 345, 358, -1, 345, 358, -1, 109, 132, 224, 117, 133, 110, -1, 109, 132, 224, 161, 133, 110, -1, 109, 132, 228, 161, 133, 110, -1, 109, 132, 228, 224, 161, 133, 110, -1, 365, -1, 224, 365, -1, 362, -1, 363, -1, 364, -1, 117, 222, -1, 224, 117, 222, -1, 117, 366, -1, 224, 117, 366, -1, 117, 361, -1, 224, 117, 361, -1, 109, 110, 222, -1, 109, 110, 345, 222, -1, 345, 222, -1, 109, 110, 363, -1, 109, 110, 345, 363, -1, 345, 363, -1, 109, 132, 258, 133, 110, -1, 109, 110, 107, 255, 108, -1, 365, 107, 132, 255, 133, 108, -1, 215, 107, 132, 255, 133, 108, -1, -1, 114, -1, -1, 129, 161, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 290, 290, 296, 305, 306, 307, 311, 312, 313, 317, 318, 323, 327, 328, 332, 333, 339, 341, 343, 345, 350, 351, 357, 359, 361, 362, 364, 365, 367, 369, 371, 379, 380, 386, 387, 388, 393, 395, 400, 401, 405, 407, 409, 411, 413, 418, 421, 423, 425, 427, 429, 431, 433, 435, 441, 443, 445, 447, 449, 451, 453, 455, 460, 461, 462, 463, 467, 468, 470, 475, 476, 478, 480, 485, 486, 488, 493, 494, 496, 501, 502, 504, 506, 508, 513, 514, 516, 521, 522, 527, 528, 533, 534, 539, 540, 545, 546, 551, 552, 554, 556, 561, 566, 567, 569, 571, 577, 578, 584, 586, 588, 590, 595, 596, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 614, 615, 621, 622, 628, 629, 630, 631, 632, 633, 634, 635, 636, 645, 652, 654, 664, 665, 670, 672, 674, 676, 680, 681, 686, 691, 694, 696, 698, 703, 705, 713, 714, 716, 720, 721, 726, 727, 732, 733, 737, 742, 743, 747, 749, 755, 756, 760, 762, 764, 766, 772, 773, 777, 778, 782, 784, 786, 791, 793, 798, 800, 804, 807, 811, 814, 818, 820, 824, 826, 833, 835, 837, 846, 848, 850, 852, 854, 859, 861, 863, 865, 870, 883, 884, 889, 891, 896, 900, 902, 904, 906, 908, 914, 915, 921, 922, 926, 927, 932, 934, 940, 941, 943, 948, 950, 957, 959, 963, 964, 969, 971, 975, 976, 980, 982, 986, 987, 991, 992, 996, 997, 1012, 1013, 1014, 1015, 1016, 1020, 1025, 1032, 1042, 1047, 1052, 1060, 1065, 1070, 1075, 1080, 1088, 1110, 1115, 1122, 1124, 1131, 1136, 1141, 1152, 1157, 1162, 1167, 1172, 1181, 1186, 1194, 1195, 1196, 1197, 1203, 1208, 1216, 1217, 1218, 1219, 1223, 1224, 1225, 1226, 1231, 1232, 1241, 1242, 1247, 1248, 1253, 1255, 1257, 1259, 1261, 1264, 1263, 1275, 1276, 1278, 1288, 1289, 1294, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1317, 1319, 1321, 1323, 1325, 1327, 1329, 1331, 1333, 1335, 1337, 1339, 1345, 1346, 1348, 1350, 1352, 1357, 1358, 1364, 1365, 1367, 1369, 1374, 1376, 1378, 1380, 1385, 1386, 1388, 1390, 1395, 1396, 1398, 1403, 1404, 1406, 1408, 1413, 1415, 1417, 1422, 1423, 1427, 1429, 1431, 1433, 1435, 1440, 1442, 1447, 1449, 1454, 1455, 1457, 1458, 1463, 1464, 1466, 1468, 1473, 1475, 1481, 1482, 1484, 1487, 1490, 1495, 1496, 1501, 1506, 1510, 1512, 1514, 1519, 1521, 1527, 1528, 1536, 1537, 1541, 1542, 1543, 1545, 1547, 1554, 1555, 1557, 1559, 1564, 1565, 1571, 1572, 1576, 1577, 1582, 1583, 1584, 1586, 1594, 1595, 1597, 1600, 1602, 1606, 1607, 1608, 1610, 1612, 1616, 1621, 1629, 1630, 1639, 1641, 1646, 1647, 1648, 1652, 1653, 1654, 1658, 1659, 1660, 1664, 1665, 1666, 1671, 1672, 1673, 1674, 1680, 1681, 1683, 1688, 1689, 1694, 1695, 1696, 1697, 1698, 1713, 1714, 1719, 1720, 1728, 1730, 1732, 1735, 1737, 1739, 1762, 1763, 1765, 1767, 1772, 1773, 1775, 1780, 1785, 1786, 1792, 1791, 1795, 1799, 1801, 1803, 1809, 1810, 1815, 1820, 1822, 1827, 1829, 1830, 1832, 1837, 1839, 1841, 1846, 1848, 1853, 1858, 1866, 1872, 1871, 1885, 1886, 1891, 1892, 1896, 1901, 1906, 1914, 1919, 1930, 1931, 1942, 1943, 1949, 1950, 1954, 1955, 1956, 1959, 1958, 1969, 1974, 1979, 1985, 1994, 2000, 2006, 2012, 2018, 2026, 2032, 2040, 2046, 2055, 2056, 2057, 2061, 2065, 2067, 2072, 2073, 2077, 2078, 2083, 2089, 2090, 2093, 2095, 2096, 2100, 2101, 2102, 2103, 2137, 2139, 2140, 2142, 2147, 2152, 2157, 2159, 2161, 2166, 2168, 2170, 2172, 2177, 2179, 2189, 2191, 2192, 2197, 2199, 2201, 2206, 2208, 2210, 2215, 2217, 2219, 2228, 2229, 2230, 2234, 2236, 2238, 2243, 2245, 2247, 2252, 2254, 2256, 2271, 2273, 2274, 2276, 2281, 2282, 2287, 2289, 2291, 2296, 2298, 2300, 2302, 2307, 2309, 2311, 2321, 2323, 2324, 2326, 2331, 2333, 2335, 2340, 2342, 2344, 2346, 2351, 2353, 2355, 2386, 2388, 2389, 2391, 2396, 2401, 2409, 2411, 2413, 2418, 2420, 2425, 2427, 2441, 2442, 2444, 2449, 2451, 2453, 2455, 2457, 2462, 2463, 2465, 2467, 2472, 2474, 2476, 2482, 2484, 2486, 2490, 2492, 2494, 2496, 2510, 2511, 2513, 2518, 2520, 2522, 2524, 2526, 2531, 2532, 2534, 2536, 2541, 2543, 2545, 2551, 2552, 2554, 2563, 2566, 2568, 2571, 2573, 2575, 2588, 2589, 2591, 2596, 2598, 2600, 2602, 2604, 2609, 2610, 2612, 2614, 2619, 2621, 2629, 2630, 2631, 2636, 2637, 2641, 2643, 2645, 2647, 2649, 2651, 2658, 2660, 2662, 2664, 2666, 2668, 2670, 2672, 2674, 2676, 2681, 2683, 2685, 2690, 2716, 2717, 2719, 2723, 2724, 2728, 2730, 2732, 2734, 2736, 2738, 2745, 2747, 2749, 2751, 2753, 2755, 2760, 2765, 2767, 2769, 2787, 2789, 2794, 2795 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "TYPEDEF", "AUTO", "EXTERN", "REGISTER", "STATIC", "INLINE", "FORTRAN", "CONST", "VOLATILE", "RESTRICT", "FORALL", "LVALUE", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE", "SIGNED", "UNSIGNED", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "TYPE", "FTYPE", "DTYPE", "CONTEXT", "SIZEOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "DISABLE", "ENABLE", "FALLTHRU", "TRY", "CATCH", "CATCHRESUME", "FINALLY", "THROW", "THROWRESUME", "AT", "ASM", "ALIGNAS", "ALIGNOF", "ATOMIC", "GENERIC", "NORETURN", "STATICASSERT", "THREADLOCAL", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname", "TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname", "INTEGERconstant", "FLOATINGconstant", "CHARACTERconstant", "STRINGliteral", "ZERO", "ONE", "ARROW", "ICR", "DECR", "LS", "RS", "LE", "GE", "EQ", "NE", "ANDAND", "OROR", "ELLIPSIS", "MULTassign", "DIVassign", "MODassign", "PLUSassign", "MINUSassign", "LSassign", "RSassign", "ANDassign", "ERassign", "ORassign", "ATassign", "THEN", "'('", "')'", "'['", "']'", "'.'", "'{'", "'}'", "','", "':'", "'!'", "'*'", "'&'", "'+'", "'-'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'", "'='", "';'", "$accept", "push", "pop", "constant", "identifier", "no_01_identifier", "no_attr_identifier", "zero_one", "string_literal_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "unary_expression", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression", "equality_expression", "AND_expression", "exclusive_OR_expression", "inclusive_OR_expression", "logical_AND_expression", "logical_OR_expression", "conditional_expression", "constant_expression", "assignment_expression", "assignment_expression_opt", "tuple", "tuple_expression_list", "assignment_operator", "comma_expression", "comma_expression_opt", "statement", "labeled_statement", "compound_statement", "block_item_list", "block_item", "statement_list", "expression_statement", "selection_statement", "case_value", "case_value_list", "case_label", "case_label_list", "case_clause", "switch_clause_list_opt", "switch_clause_list", "choose_clause_list_opt", "choose_clause_list", "fall_through_opt", "fall_through", "iteration_statement", "for_control_expression", "jump_statement", "exception_statement", "handler_list", "handler_clause", "finally_clause", "exception_declaration", "asm_statement", "asm_volatile_opt", "asm_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list_opt", "label_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "local_label_declaration_opt", "local_label_declaration_list", "local_label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "storage_class_name", "basic_type_name", "basic_declaration_specifier", "basic_type_specifier", "direct_type_name", "indirect_type_name", "sue_declaration_specifier", "sue_type_specifier", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type_name", "aggregate_name", "aggregate_key", "field_declaration_list", "field_declaration", "new_field_declaring_list", "field_declaring_list", "field_declarator", "bit_subrange_size_opt", "bit_subrange_size", "enum_key", "enum_name", "enumerator_list", "enumerator_value_opt", "new_parameter_type_list_opt", "new_parameter_type_list", "new_parameter_list", "new_abstract_parameter_list", "parameter_type_list_opt", "parameter_type_list", "parameter_list", "new_parameter_declaration", "new_abstract_parameter_declaration", "parameter_declaration", "abstract_parameter_declaration", "identifier_list", "identifier_or_type_name", "no_01_identifier_or_type_name", "no_attr_identifier_or_type_name", "type_name_no_function", "type_name", "initializer_opt", "initializer", "initializer_list", "designation", "designator_list", "designator", "typegen_declaration_specifier", "typegen_type_specifier", "typegen_name", "type_parameter_list", "type_parameter", "$@2", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "context_specifier", "$@3", "context_declaration_list", "context_declaration", "new_context_declaring_list", "context_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@4", "external_function_definition", "function_definition", "declarator", "subrange", "asm_name_opt", "attribute_list_opt", "attribute_list", "attribute", "attribute_parameter_list", "attrib", "any_word", "variable_declarator", "paren_identifier", "variable_ptr", "variable_array", "variable_function", "function_declarator", "function_no_ptr", "function_ptr", "function_array", "old_function_declarator", "old_function_no_ptr", "old_function_ptr", "old_function_array", "type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 40, 41, 91, 93, 46, 123, 125, 44, 58, 33, 42, 38, 43, 45, 126, 47, 37, 60, 62, 94, 124, 63, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 131, 132, 133, 134, 134, 134, 135, 135, 135, 136, 136, 137, 138, 138, 139, 139, 140, 140, 140, 140, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 142, 142, 143, 143, 143, 143, 143, 144, 144, 145, 145, 145, 145, 145, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 147, 147, 147, 147, 148, 148, 148, 149, 149, 149, 149, 150, 150, 150, 151, 151, 151, 152, 152, 152, 152, 152, 153, 153, 153, 154, 154, 155, 155, 156, 156, 157, 157, 158, 158, 159, 159, 159, 159, 160, 161, 161, 161, 161, 162, 162, 163, 163, 163, 163, 164, 164, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 166, 166, 167, 167, 168, 168, 168, 168, 168, 168, 168, 168, 168, 169, 170, 170, 171, 171, 172, 172, 172, 172, 173, 173, 174, 175, 175, 175, 175, 175, 175, 176, 176, 176, 177, 177, 178, 178, 179, 179, 180, 181, 181, 182, 182, 183, 183, 184, 184, 184, 184, 185, 185, 186, 186, 187, 187, 187, 188, 188, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 190, 190, 190, 191, 191, 191, 191, 191, 192, 192, 192, 192, 193, 194, 194, 194, 194, 194, 195, 195, 195, 195, 195, 196, 196, 197, 197, 198, 198, 199, 199, 200, 200, 200, 201, 201, 202, 202, 203, 203, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 210, 210, 210, 211, 211, 211, 212, 212, 212, 213, 213, 213, 213, 213, 214, 214, 214, 215, 215, 216, 216, 216, 217, 217, 217, 217, 217, 218, 218, 219, 219, 219, 219, 220, 220, 221, 221, 221, 221, 222, 222, 222, 222, 223, 223, 224, 224, 225, 225, 226, 226, 226, 226, 226, 227, 226, 228, 228, 228, 229, 229, 230, 231, 231, 231, 231, 231, 231, 231, 231, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, 233, 233, 233, 233, 233, 234, 234, 235, 235, 235, 235, 236, 236, 236, 236, 237, 237, 237, 237, 238, 238, 238, 239, 239, 239, 239, 240, 240, 240, 241, 241, 242, 242, 242, 242, 242, 243, 243, 244, 244, 245, 245, 245, 245, 246, 246, 246, 246, 247, 247, 248, 248, 248, 248, 248, 249, 249, 250, 251, 252, 252, 252, 253, 253, 254, 254, 255, 255, 256, 256, 256, 256, 256, 257, 257, 257, 257, 258, 258, 259, 259, 260, 260, 261, 261, 261, 261, 262, 262, 262, 262, 262, 263, 263, 263, 263, 263, 264, 264, 265, 265, 266, 266, 267, 267, 267, 268, 268, 268, 269, 269, 269, 270, 270, 270, 271, 271, 271, 271, 272, 272, 272, 273, 273, 274, 274, 274, 274, 274, 275, 275, 276, 276, 277, 277, 277, 277, 277, 277, 278, 278, 278, 278, 279, 279, 279, 280, 281, 281, 283, 282, 282, 284, 284, 284, 285, 285, 286, 286, 286, 287, 287, 287, 287, 288, 288, 288, 289, 289, 290, 290, 291, 292, 291, 293, 293, 294, 294, 295, 295, 295, 296, 296, 297, 297, 298, 298, 299, 299, 300, 300, 300, 301, 300, 300, 302, 302, 302, 303, 303, 303, 303, 303, 303, 303, 303, 303, 304, 304, 304, 305, 306, 306, 307, 307, 308, 308, 309, 310, 310, 311, 311, 311, 312, 312, 312, 312, 313, 313, 313, 313, 314, 314, 315, 315, 315, 316, 316, 316, 316, 317, 317, 318, 318, 318, 319, 319, 319, 320, 320, 320, 321, 321, 321, 322, 322, 322, 323, 323, 323, 324, 324, 324, 325, 325, 325, 326, 326, 326, 326, 327, 327, 328, 328, 328, 329, 329, 329, 329, 330, 330, 330, 331, 331, 331, 331, 332, 332, 332, 333, 333, 333, 333, 334, 334, 334, 335, 335, 335, 335, 336, 336, 337, 337, 337, 338, 338, 339, 339, 340, 340, 340, 341, 341, 341, 341, 341, 342, 342, 342, 342, 343, 343, 343, 344, 344, 344, 345, 345, 345, 345, 346, 346, 346, 347, 347, 347, 347, 347, 348, 348, 348, 348, 349, 349, 349, 350, 350, 350, 351, 351, 351, 351, 351, 351, 352, 352, 352, 353, 353, 353, 353, 353, 354, 354, 354, 354, 355, 355, 356, 356, 356, 357, 357, 358, 358, 358, 358, 358, 358, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 360, 360, 360, 360, 361, 361, 361, 362, 362, 363, 363, 363, 363, 363, 363, 364, 364, 364, 364, 364, 364, 365, 366, 366, 366, 367, 367, 368, 368 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 6, 4, 3, 7, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 3, 7, 9, 1, 3, 1, 3, 7, 3, 7, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 4, 1, 4, 4, 2, 4, 2, 1, 1, 1, 1, 1, 4, 4, 1, 3, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 5, 4, 5, 1, 1, 3, 3, 2, 0, 1, 2, 5, 6, 7, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 4, 2, 7, 1, 3, 1, 2, 1, 2, 1, 2, 2, 5, 7, 5, 9, 5, 9, 1, 3, 1, 1, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 0, 1, 2, 3, 3, 4, 0, 1, 1, 2, 5, 7, 6, 6, 4, 3, 4, 2, 3, 2, 3, 3, 3, 3, 5, 3, 3, 4, 1, 5, 6, 5, 6, 9, 10, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 14, 0, 1, 0, 1, 1, 3, 4, 7, 0, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 8, 7, 7, 5, 9, 2, 2, 5, 3, 5, 4, 3, 4, 4, 7, 3, 3, 3, 3, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 1, 3, 1, 2, 2, 2, 4, 4, 4, 4, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 3, 1, 2, 2, 1, 1, 4, 2, 5, 7, 2, 2, 2, 1, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 6, 2, 2, 4, 0, 2, 0, 1, 1, 1, 5, 5, 5, 1, 5, 5, 9, 1, 5, 0, 1, 1, 5, 1, 1, 5, 5, 1, 3, 3, 4, 1, 1, 1, 1, 2, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 2, 2, 1, 4, 0, 1, 2, 3, 4, 2, 2, 1, 2, 1, 2, 5, 5, 7, 6, 1, 2, 2, 3, 1, 2, 2, 4, 2, 4, 0, 4, 2, 1, 1, 1, 0, 2, 5, 5, 13, 1, 1, 3, 3, 2, 3, 3, 2, 4, 1, 6, 9, 0, 11, 1, 3, 3, 3, 1, 1, 5, 2, 5, 0, 1, 1, 3, 0, 1, 1, 1, 1, 0, 6, 2, 1, 2, 4, 2, 3, 3, 3, 4, 5, 5, 5, 6, 1, 1, 1, 3, 0, 5, 0, 1, 1, 2, 6, 1, 3, 0, 1, 4, 1, 1, 1, 1, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 8, 3, 2, 1, 2, 6, 8, 3, 2, 3, 3, 4, 4, 3, 1, 1, 1, 4, 6, 3, 2, 3, 3, 4, 4, 3, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 1, 1, 2, 3, 3, 2, 4, 6, 8, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 2, 3, 1, 5, 5, 6, 6, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 1, 2, 1, 2, 6, 5, 6, 7, 7, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 8, 3, 1, 1, 2, 1, 1, 2, 3, 2, 3, 2, 3, 3, 2, 4, 3, 2, 3, 2, 4, 3, 2, 6, 6, 6, 7, 1, 2, 1, 1, 1, 2, 3, 2, 3, 2, 3, 3, 4, 2, 3, 4, 2, 5, 5, 6, 6, 0, 1, 0, 2 }; /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { 292, 292, 313, 311, 314, 312, 315, 316, 298, 300, 299, 0, 301, 327, 319, 324, 322, 323, 321, 320, 325, 326, 328, 329, 330, 544, 544, 544, 0, 0, 0, 292, 218, 302, 317, 318, 7, 357, 0, 8, 13, 14, 0, 2, 292, 562, 9, 522, 520, 245, 3, 450, 3, 258, 0, 3, 3, 3, 246, 3, 0, 0, 0, 293, 294, 296, 292, 305, 308, 310, 338, 284, 331, 336, 285, 346, 286, 353, 350, 360, 0, 0, 361, 287, 470, 474, 3, 3, 0, 2, 516, 521, 526, 297, 0, 0, 544, 574, 544, 2, 585, 586, 587, 292, 0, 728, 729, 0, 12, 292, 0, 268, 269, 0, 293, 288, 289, 290, 291, 523, 303, 389, 545, 546, 367, 368, 12, 441, 442, 11, 437, 440, 0, 500, 495, 486, 441, 442, 0, 0, 525, 219, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 292, 292, 2, 0, 730, 293, 579, 591, 734, 727, 725, 732, 0, 0, 0, 252, 2, 0, 529, 435, 436, 434, 0, 0, 0, 0, 544, 0, 631, 632, 0, 0, 542, 538, 544, 559, 544, 544, 539, 2, 540, 544, 598, 544, 544, 601, 0, 0, 0, 292, 292, 311, 358, 2, 292, 259, 295, 306, 339, 351, 475, 0, 2, 0, 450, 260, 293, 332, 347, 354, 471, 0, 2, 0, 309, 333, 340, 341, 0, 348, 352, 355, 359, 442, 292, 292, 363, 366, 0, 392, 472, 476, 0, 0, 0, 1, 292, 2, 527, 573, 575, 292, 2, 738, 293, 741, 542, 542, 293, 0, 0, 0, 271, 544, 539, 2, 292, 0, 0, 292, 547, 2, 498, 2, 551, 0, 0, 0, 0, 0, 17, 57, 4, 5, 6, 15, 0, 0, 0, 292, 2, 0, 292, 63, 64, 65, 66, 47, 18, 48, 21, 46, 67, 0, 70, 74, 77, 80, 85, 88, 90, 92, 94, 96, 98, 103, 492, 748, 448, 491, 0, 446, 447, 0, 563, 578, 581, 584, 590, 593, 596, 357, 0, 2, 736, 0, 292, 739, 2, 292, 3, 422, 0, 430, 293, 292, 305, 331, 285, 346, 353, 3, 3, 404, 408, 418, 423, 470, 292, 424, 703, 704, 292, 425, 427, 292, 2, 580, 592, 726, 2, 2, 247, 2, 455, 0, 453, 452, 451, 139, 2, 2, 249, 2, 2, 248, 2, 279, 2, 280, 0, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 564, 603, 0, 450, 2, 558, 567, 657, 560, 561, 530, 292, 2, 597, 606, 599, 600, 0, 274, 292, 292, 337, 293, 0, 293, 0, 292, 731, 735, 733, 531, 292, 542, 253, 261, 307, 0, 2, 532, 292, 496, 334, 335, 281, 349, 356, 0, 292, 2, 381, 292, 369, 0, 0, 375, 725, 292, 746, 395, 0, 473, 497, 250, 251, 517, 292, 432, 0, 292, 235, 0, 2, 237, 0, 293, 0, 255, 2, 256, 276, 0, 0, 2, 292, 542, 292, 483, 485, 484, 0, 0, 748, 0, 292, 0, 292, 487, 292, 557, 555, 556, 554, 0, 549, 552, 0, 0, 292, 55, 67, 51, 292, 60, 292, 292, 49, 50, 62, 2, 125, 0, 0, 444, 0, 443, 109, 292, 53, 54, 16, 0, 28, 29, 34, 2, 0, 34, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 2, 643, 449, 640, 544, 544, 648, 477, 292, 2, 582, 583, 0, 594, 595, 0, 2, 737, 740, 109, 292, 2, 292, 0, 705, 293, 709, 700, 701, 707, 0, 2, 2, 665, 544, 748, 614, 544, 544, 748, 544, 628, 544, 544, 679, 431, 662, 544, 544, 670, 677, 292, 426, 293, 0, 0, 292, 715, 293, 720, 748, 712, 292, 717, 748, 292, 292, 292, 0, 109, 0, 17, 5, 2, 0, 0, 456, 746, 0, 0, 462, 239, 0, 292, 0, 0, 0, 542, 566, 570, 572, 602, 605, 609, 612, 565, 604, 0, 282, 655, 0, 292, 275, 0, 0, 0, 0, 273, 2, 0, 257, 533, 292, 0, 0, 0, 0, 292, 292, 0, 0, 689, 379, 382, 386, 544, 386, 694, 385, 686, 544, 544, 362, 370, 378, 371, 544, 373, 376, 292, 747, 0, 0, 393, 746, 293, 3, 411, 3, 415, 414, 588, 0, 528, 292, 3, 3, 292, 430, 293, 3, 424, 425, 2, 0, 0, 0, 482, 304, 292, 478, 480, 3, 2, 2, 0, 499, 3, 0, 551, 127, 0, 0, 220, 0, 0, 2, 0, 0, 35, 0, 0, 109, 292, 19, 0, 20, 0, 689, 445, 0, 107, 3, 2, 26, 2, 0, 32, 0, 2, 24, 0, 104, 105, 71, 72, 73, 75, 76, 78, 79, 83, 84, 81, 82, 86, 87, 89, 91, 93, 95, 97, 0, 0, 749, 292, 0, 0, 0, 644, 645, 641, 642, 494, 493, 292, 0, 3, 292, 711, 292, 716, 293, 292, 292, 292, 659, 702, 658, 2, 292, 0, 0, 0, 0, 0, 0, 0, 0, 680, 0, 666, 617, 633, 667, 2, 613, 620, 428, 615, 616, 429, 2, 627, 636, 629, 630, 663, 664, 678, 706, 710, 708, 748, 266, 2, 742, 2, 419, 714, 719, 420, 0, 398, 3, 3, 3, 3, 450, 3, 0, 2, 465, 461, 747, 0, 457, 464, 2, 460, 463, 0, 292, 240, 262, 3, 270, 272, 0, 450, 2, 568, 569, 2, 607, 608, 0, 656, 534, 3, 343, 342, 345, 344, 292, 535, 0, 536, 292, 372, 374, 2, 0, 0, 0, 0, 102, 388, 690, 691, 383, 387, 384, 687, 688, 377, 381, 364, 395, 390, 396, 0, 0, 0, 433, 238, 0, 0, 3, 2, 665, 426, 0, 524, 0, 748, 486, 0, 292, 292, 292, 0, 548, 550, 128, 0, 0, 213, 0, 0, 0, 221, 222, 56, 61, 292, 0, 59, 58, 0, 126, 690, 455, 68, 69, 108, 113, 3, 107, 0, 0, 0, 23, 34, 3, 0, 31, 100, 0, 3, 647, 651, 654, 646, 3, 589, 3, 713, 718, 2, 292, 3, 3, 293, 0, 3, 619, 623, 626, 635, 669, 673, 676, 292, 3, 618, 634, 668, 292, 292, 421, 292, 292, 743, 0, 0, 0, 0, 254, 0, 102, 0, 3, 3, 0, 458, 0, 454, 0, 0, 243, 292, 0, 0, 127, 0, 0, 0, 0, 0, 127, 0, 0, 107, 107, 2, 0, 0, 0, 3, 129, 130, 2, 141, 131, 132, 133, 134, 135, 136, 143, 145, 0, 0, 0, 283, 292, 292, 544, 0, 537, 292, 109, 693, 697, 699, 692, 380, 394, 391, 576, 2, 661, 660, 0, 666, 2, 479, 481, 501, 3, 509, 510, 0, 2, 505, 3, 3, 0, 0, 553, 220, 0, 0, 0, 220, 0, 3, 36, 746, 107, 0, 3, 658, 41, 3, 39, 3, 33, 0, 3, 99, 101, 0, 2, 649, 650, 0, 0, 292, 0, 0, 0, 3, 635, 0, 2, 621, 622, 2, 637, 2, 671, 672, 0, 0, 3, 0, 3, 3, 3, 3, 406, 405, 409, 2, 2, 745, 744, 110, 0, 0, 0, 0, 3, 459, 3, 0, 241, 144, 3, 293, 292, 0, 0, 0, 0, 2, 189, 0, 187, 0, 0, 0, 0, 0, 0, 0, 0, 109, 0, 544, 149, 146, 292, 0, 0, 265, 277, 3, 3, 543, 610, 365, 2, 695, 696, 292, 264, 292, 0, 512, 489, 292, 0, 0, 488, 503, 0, 0, 0, 214, 0, 223, 107, 0, 0, 114, 111, 0, 0, 0, 0, 0, 0, 22, 0, 652, 292, 577, 263, 721, 722, 723, 0, 674, 292, 292, 292, 3, 3, 0, 682, 0, 0, 0, 0, 292, 292, 3, 541, 466, 467, 0, 0, 244, 293, 0, 0, 0, 0, 292, 190, 188, 0, 185, 191, 0, 0, 0, 0, 195, 198, 196, 192, 0, 193, 34, 127, 142, 140, 242, 0, 0, 292, 413, 417, 416, 0, 506, 2, 507, 2, 508, 502, 292, 226, 0, 224, 0, 226, 3, 658, 30, 112, 2, 44, 2, 42, 40, 27, 110, 25, 3, 724, 3, 3, 3, 0, 0, 681, 683, 624, 638, 267, 2, 403, 3, 402, 0, 469, 466, 127, 0, 0, 127, 3, 0, 127, 186, 0, 2, 2, 207, 197, 0, 0, 0, 0, 138, 571, 611, 3, 2, 0, 0, 2, 227, 0, 0, 215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 684, 685, 292, 0, 468, 150, 0, 0, 2, 163, 127, 152, 0, 180, 0, 127, 0, 2, 154, 0, 2, 0, 2, 2, 2, 194, 31, 0, 292, 511, 513, 504, 0, 0, 0, 0, 112, 37, 3, 3, 653, 625, 639, 675, 407, 127, 156, 159, 0, 158, 162, 3, 165, 164, 0, 127, 182, 127, 3, 0, 292, 0, 292, 0, 2, 0, 2, 137, 698, 2, 228, 229, 0, 225, 216, 0, 0, 0, 151, 0, 0, 161, 231, 166, 2, 233, 181, 0, 184, 170, 199, 3, 208, 212, 201, 3, 0, 292, 0, 292, 0, 0, 0, 38, 45, 43, 157, 160, 127, 0, 167, 292, 127, 127, 0, 171, 0, 0, 689, 209, 210, 211, 0, 200, 3, 202, 3, 292, 217, 230, 147, 168, 153, 127, 234, 183, 178, 176, 172, 155, 127, 0, 690, 0, 0, 0, 0, 148, 169, 179, 173, 177, 176, 174, 3, 3, 0, 0, 490, 175, 203, 205, 3, 3, 204, 206 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 834, 472, 299, 45, 130, 131, 300, 301, 302, 303, 780, 781, 1139, 1140, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 1045, 522, 990, 319, 991, 551, 968, 1072, 1534, 1074, 1075, 1076, 1077, 1535, 1078, 1079, 1451, 1452, 1413, 1414, 1415, 1513, 1514, 1518, 1519, 1554, 1555, 1080, 1371, 1081, 1082, 1305, 1306, 1307, 1495, 1083, 142, 974, 975, 976, 1392, 1476, 1487, 1488, 473, 474, 896, 897, 1053, 48, 49, 50, 51, 52, 343, 155, 55, 56, 57, 58, 59, 345, 61, 62, 260, 64, 65, 271, 347, 348, 68, 69, 70, 71, 115, 73, 201, 350, 116, 76, 117, 78, 79, 80, 453, 454, 455, 456, 696, 934, 697, 81, 82, 460, 717, 876, 877, 353, 354, 720, 721, 722, 355, 356, 357, 358, 470, 337, 132, 133, 526, 321, 167, 650, 651, 652, 653, 654, 83, 118, 85, 493, 494, 960, 495, 274, 499, 322, 86, 134, 135, 87, 1329, 1118, 1119, 1120, 1121, 88, 89, 738, 90, 270, 91, 92, 184, 1047, 684, 408, 122, 93, 505, 506, 507, 185, 265, 187, 188, 189, 266, 96, 97, 98, 99, 100, 101, 102, 192, 193, 194, 195, 196, 846, 610, 611, 612, 613, 197, 615, 616, 617, 576, 577, 578, 579, 701, 103, 619, 620, 621, 622, 623, 624, 933, 703, 704, 705, 600, 361, 362, 363, 364, 323, 161, 105, 106, 107, 366, 715, 573 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1362 static const yytype_int16 yypact[] = { 5182, 8315, -1362, 65, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 58, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 82, 82, 82, 907, 818, 118, 6817, 261, -1362, -1362, -1362, -1362, -1362, 194, -1362, -1362, -1362, 762, 245, 3620, -1362, -1362, -1362, -1362, -1362, -1362, 110, 286, -1362, 690, -1362, -1362, -1362, -1362, 307, 1768, 457, 101, 6932, -1362, -1362, 4184, 407, -1362, -1362, -1362, 1616, 474, 5211, 816, 1213, 1616, 2188, -1362, -1362, 386, 368, -1362, 1616, 2312, -1362, 370, -1362, 505, 519, -1362, -1362, -1362, -1362, 390, 286, 82, -1362, 82, -1362, -1362, -1362, -1362, 8539, 690, -1362, -1362, 690, -1362, 9099, 393, -1362, -1362, 2123, 9180, -1362, 951, 951, 951, -1362, -1362, -1362, 82, -1362, -1362, -1362, 455, 470, 487, -1362, -1362, -1362, 492, -1362, -1362, -1362, -1362, -1362, 517, 553, -1362, -1362, 76, 8285, 1659, 753, 483, 539, 586, 596, 599, 606, 7594, 6229, 641, 646, -1362, 8650, -1362, -1362, -1362, -1362, 673, -1362, 126, 3695, 3695, -1362, 682, 235, -1362, -1362, -1362, -1362, 693, 419, 442, 449, 82, 685, -1362, -1362, 1768, 2932, 768, -1362, 90, -1362, 82, 82, 286, -1362, -1362, 121, -1362, 82, 82, -1362, 3090, 696, 779, 951, 6612, -1362, -1362, 728, 3620, -1362, -1362, 1616, -1362, -1362, -1362, 286, -1362, 690, 110, -1362, 7263, -1362, 951, 951, 951, 286, -1362, 907, -1362, 5761, -1362, -1362, 745, 951, -1362, 951, -1362, 194, 8285, 8427, 777, -1362, 818, 866, 951, -1362, 907, 775, 789, -1362, 6817, 874, -1362, -1362, -1362, 5519, -1362, -1362, 6022, -1362, 768, 173, 9180, 10174, 2123, 3090, -1362, 265, -1362, -1362, 9099, 690, 879, 6376, -1362, -1362, 507, -1362, 10523, 887, 920, 3349, 10328, 10347, -1362, 895, -1362, -1362, -1362, -1362, 10405, 10405, 874, 7949, 897, 10328, 8397, -1362, -1362, -1362, -1362, -1362, -1362, 930, -1362, 797, 2723, 10328, -1362, 688, 806, 843, 301, 862, 899, 893, 906, 932, 20, -1362, -1362, 934, 593, -1362, 402, -1362, -1362, 1659, -1362, -1362, 610, 919, -1362, 621, 919, 946, 194, -1362, -1362, 962, 8539, -1362, 961, 8061, -1362, -1362, 1747, 1347, 7675, 6612, 1616, -1362, 1616, 951, 951, -1362, -1362, -1362, -1362, -1362, -1362, 951, 9209, 690, -1362, -1362, 9247, 1940, -1362, 9032, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 966, 4295, 10328, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 2123, -1362, 446, 964, 972, 978, 719, 979, 987, 990, 2932, -1362, -1362, 994, 110, 992, -1362, -1362, 995, -1362, -1362, -1362, 5519, -1362, -1362, -1362, -1362, -1362, 3090, -1362, 8285, 8285, -1362, 951, 2123, 6731, 690, 7745, -1362, -1362, -1362, -1362, 5519, 173, -1362, -1362, 1616, 286, -1362, -1362, 5519, -1362, 6258, -1362, -1362, 951, 951, 484, 9317, 998, 1130, 4716, -1362, 459, 467, 818, -1362, 8427, 991, 980, 818, 951, -1362, -1362, -1362, -1362, 9608, -1362, 567, 6494, -1362, 286, 999, -1362, 2123, 10603, 10193, -1362, -1362, -1362, -1362, 793, 3090, -1362, 7815, 768, 6702, -1362, -1362, -1362, 842, 625, 934, 818, 6376, 494, 9099, -1362, 6376, -1362, -1362, -1362, -1362, 636, -1362, 1005, 920, 328, 7949, -1362, -1362, -1362, 7949, -1362, 8173, 7949, -1362, -1362, -1362, 1004, -1362, 644, 1013, 617, 1014, -1362, 8787, 5845, -1362, -1362, -1362, 93, -1362, -1362, 10251, -1362, 164, 10251, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 10174, 10174, -1362, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 10328, 4995, 10174, -1362, 593, 1220, -1362, -1362, 82, 82, -1362, -1362, 8285, -1362, -1362, 995, 874, -1362, 995, 10270, -1362, -1362, -1362, 5874, 5845, 1015, 8509, 1017, -1362, 9355, -1362, -1362, 673, -1362, 1019, 506, 1020, 2624, 288, 934, -1362, 82, 82, 934, 294, -1362, 82, 82, 995, -1362, -1362, 82, 82, -1362, 919, 9384, 690, 10744, 254, 525, 9384, -1362, 6140, -1362, 934, -1362, 9209, -1362, 255, 7377, 7377, 7377, 690, -1362, 10097, 1009, 565, 966, 409, 1022, -1362, 1018, 3695, 612, -1362, 1103, 690, 7377, 874, 2123, 874, 768, 628, 919, -1362, -1362, 744, 919, -1362, -1362, -1362, 920, -1362, 919, 286, 9608, -1362, 659, 1026, 668, 1031, -1362, 1032, 286, -1362, -1362, 5519, 286, 1029, 497, 511, 9465, 6347, 1465, 10328, 2769, -1362, -1362, 1039, 94, 1039, -1362, -1362, -1362, 82, 82, -1362, -1362, 818, -1362, 82, -1362, -1362, 8924, 818, 1033, 10328, -1362, 991, 10744, -1362, -1362, 1048, -1362, -1362, -1362, 874, -1362, 10674, 10328, -1362, 7377, 639, 7675, -1362, -1362, 673, 1034, 1044, 842, 1987, -1362, -1362, 6376, -1362, -1362, 1045, -1362, -1362, 1051, -1362, 1045, 1054, 10523, 10174, 142, 1040, 53, 1055, 1056, 897, 1057, 1061, -1362, 1063, 1066, 8203, 5993, -1362, 10174, -1362, 617, 1650, -1362, 10116, 10174, 1062, -1362, -1362, 966, 676, -1362, 10174, -1362, -1362, 901, -1362, -1362, -1362, -1362, -1362, 688, 688, 806, 806, 843, 843, 843, 843, 301, 301, 862, 899, 893, 906, 932, 10328, 912, -1362, 9608, 1069, 1070, 1075, 1220, -1362, -1362, -1362, -1362, -1362, 9608, 680, 10328, 7377, -1362, 9209, -1362, 6465, 8621, 9070, 6229, -1362, -1362, -1362, 506, 9608, 832, 1076, 1078, 1079, 1080, 1082, 1083, 1088, -1362, 3884, 2624, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 995, -1362, -1362, -1362, 934, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 1089, -1362, 1099, 1101, -1362, -1362, 110, 1062, 10097, -1362, -1362, -1362, 4295, 1100, -1362, -1362, -1362, -1362, -1362, 818, 5597, 1173, -1362, -1362, -1362, -1362, 1085, 110, -1362, -1362, 995, -1362, -1362, 995, 28, 995, -1362, -1362, -1362, -1362, -1362, -1362, 8758, -1362, 286, -1362, 8427, -1362, -1362, 1108, 913, 1111, 1112, 1120, -1362, -1362, 2769, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 1130, -1362, 980, -1362, -1362, 1116, 1128, 1124, -1362, -1362, 1132, 1133, -1362, 639, 1695, -1362, 589, -1362, 1987, 934, -1362, 1138, 6376, 9494, 8285, 1140, -1362, -1362, 1137, 1144, 1147, -1362, 10328, 146, 128, 1150, -1362, 1153, 1153, 5845, 10174, -1362, -1362, 1153, -1362, 1650, 4295, -1362, -1362, -1362, -1362, 1152, 10174, 1158, 874, 10097, -1362, 10251, -1362, 874, -1362, -1362, 10174, -1362, 826, 919, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 966, 8061, -1362, -1362, 6583, 1161, -1362, 841, 919, -1362, 865, 883, 919, -1362, 951, 4042, -1362, -1362, -1362, 9608, 9608, -1362, 7745, 7745, -1362, 1156, 1157, 1168, 1169, -1362, 1174, 677, 212, 1062, -1362, 874, -1362, 3695, -1362, 10174, 515, -1362, 5727, 1176, 1179, 9970, 1180, 1184, 11, 62, 64, 10174, 1185, 286, 10174, 10174, 1183, 535, 1182, 1164, -1362, -1362, -1362, 1187, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 818, 1190, 10174, -1362, 9608, 9608, 82, 1194, -1362, 8962, 8895, 888, 919, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 1195, 1695, -1362, -1362, 1186, -1362, 1045, -1362, -1362, 2123, 1196, -1362, -1362, -1362, 684, 1203, -1362, 53, 1197, 10328, 1188, 53, 53, 1205, -1362, 1018, 10174, 1207, 1152, 337, 130, 1206, -1362, 1205, -1362, 1214, 1206, -1362, -1362, 1217, -1362, -1362, 995, 1218, 1222, 6111, 1221, 1223, 1225, -1362, -1362, 1224, -1362, -1362, 995, -1362, -1362, -1362, -1362, 995, 10174, 10174, 10328, 1226, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 10328, 10328, 1232, 1234, 1206, -1362, -1362, 818, -1362, -1362, -1362, 7193, 9494, 10174, 10174, 1283, 10174, -1362, -1362, 1215, -1362, 1219, 10174, 1233, 1242, 10174, 900, 1243, 37, 8091, 1006, 82, -1362, -1362, 5597, 1239, 523, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 995, 10093, -1362, 7815, 1256, -1362, -1362, 9494, 540, 555, -1362, 1263, 1262, 920, 1270, -1362, 354, -1362, 10174, 1271, 1269, -1362, -1362, 1273, 206, 262, 874, 1274, 1275, -1362, 1276, -1362, 9608, -1362, -1362, -1362, -1362, -1362, 1277, -1362, 9608, 9608, 9608, -1362, -1362, 1279, -1362, 1282, 1286, 1287, 702, 7447, 7561, -1362, -1362, 388, -1362, 1291, 1292, -1362, 7885, 700, 705, 1296, 731, 5363, -1362, -1362, 575, -1362, -1362, 741, 1297, 1299, 286, 1349, 974, -1362, -1362, 10174, -1362, 10251, 9970, -1362, -1362, -1362, 1303, 1304, 9608, -1362, -1362, -1362, 1312, -1362, -1362, -1362, -1362, -1362, -1362, 9494, 920, 263, -1362, 1293, 920, 1152, 273, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 1301, -1362, -1362, -1362, -1362, -1362, -1362, 1316, 1317, -1362, -1362, -1362, -1362, -1362, -1362, -1362, 1322, -1362, 1329, -1362, -1362, 9970, 107, 10174, 9970, -1362, 1332, 10174, -1362, 151, 1351, 1355, -1362, -1362, 1334, 1335, 1320, 924, -1362, -1362, -1362, -1362, -1362, 690, 2123, 1338, 930, 937, 10328, -1362, 742, 1343, 10174, 874, 874, 1352, 1353, 1354, 1357, -1362, -1362, 7745, 1341, -1362, 1417, 10328, 1344, -1362, -1362, 9884, -1362, 785, -1362, 1333, 9970, 1340, -1362, -1362, 1363, -1362, 1364, -1362, 1379, 1382, -1362, 1350, 1371, 9494, -1362, -1362, -1362, 920, 874, 1374, 1365, 1370, -1362, 1206, 1206, -1362, -1362, -1362, -1362, -1362, 9970, 258, -1362, 941, -1362, -1362, 7047, -1362, -1362, 1367, 10174, -1362, 10174, 7047, 286, 9317, 286, 9317, 1392, -1362, 1396, -1362, -1362, -1362, 1393, 930, -1362, 803, -1362, -1362, 10174, 1397, 1398, -1362, 10328, 10328, -1362, -1362, 1016, 97, -1362, -1362, 1383, -1362, 1016, -1362, -1362, 2377, 874, -1362, -1362, 286, 9317, 286, 9317, 1405, 1384, 874, -1362, -1362, -1362, -1362, -1362, 9884, 1402, 1016, 7122, 10174, 9798, 1406, 1016, 1412, 2377, 2919, -1362, -1362, -1362, 1413, -1362, -1362, -1362, -1362, 8285, -1362, -1362, -1362, 9705, -1362, 9884, -1362, -1362, 1400, 9612, -1362, -1362, 9798, 286, 2919, 286, 1414, 1419, 807, -1362, 9705, -1362, -1362, -1362, 9612, -1362, -1362, -1362, 286, 286, -1362, -1362, -1362, -1362, -1362, -1362, -1362, -1362 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1362, 3493, 1093, -1362, 1502, -1362, -1, 2, 435, -1362, 458, -522, -509, -926, -270, 4585, -1362, 1298, 508, 516, 480, 518, 965, 977, 985, 963, 975, -1362, 450, -552, 3932, -889, -691, -949, -1362, 269, -657, -346, -1362, 1391, -1362, 339, -1080, -1362, -1362, 75, -1362, -1321, -831, 188, -1362, -1362, -1362, -1362, 7, -1083, -1362, -1362, -1362, -1362, -1362, -1362, 268, -1220, 39, -1362, -255, -1362, 439, 242, -1362, 117, -1362, -360, -1362, -1362, -1362, 498, -843, -1362, -1362, 12, -1020, 26, 1825, -1362, -1362, -1362, -118, -1362, 513, 86, -185, 665, 2995, -1362, -1362, 55, 143, 302, -254, 1799, -1362, 1348, -1362, -1362, 259, 1704, -1362, 2086, 1311, -1362, -1362, -430, -428, 1135, 1143, 640, 890, 313, -1362, -1362, 1126, 652, -484, -1362, -469, -299, 976, -1362, -1362, -931, -975, -226, 1098, 1011, 22, -1362, 189, 264, -13, -195, -156, 609, 711, -1362, 947, -1362, 2242, 541, -458, 859, -1362, -1362, 647, -1362, -235, -1362, 24, -1362, -1362, -1362, -1279, 371, -1362, -1362, -1362, 1122, -1362, 46, -1362, -1362, -859, -108, -1361, -83, 2954, -1362, 2772, -1362, 858, -1362, -175, 138, -168, -167, -163, 3, -38, -31, -30, 910, 25, 70, 79, -147, -162, -159, -152, -151, -287, -573, -525, -485, -559, -293, -488, -1362, -1362, -496, 1038, 1041, 1042, 2149, 4025, -548, -554, -520, -498, -453, -1362, -411, -687, -675, -653, -597, -296, -300, -1362, -1362, 829, 71, -28, -1362, 3030, 124, -627, -190 }; /* 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 -520 static const yytype_int16 yytable[] = { 110, 449, 46, 95, 146, 264, 927, 762, 403, 379, 380, 147, 148, 111, 395, 396, 424, 785, 928, 397, 398, 436, 502, 399, 889, 707, 53, 112, 865, 713, 400, 401, 836, 46, 95, 1194, 404, 1085, 746, 47, 929, 702, 751, 1136, 46, 601, 46, 158, 847, 1453, 1390, 840, 614, 1084, 674, 66, 46, 53, 609, 848, 633, 1178, 46, 190, 637, 46, 213, 149, 46, 223, 47, 104, 104, 1144, 683, 257, 174, 140, 216, 814, 837, 108, 687, 988, 927, 841, 66, 113, 403, 207, 421, 945, 217, 1457, 395, 396, 928, 969, 1309, 397, 398, 406, 104, 399, 1176, 1177, 46, 842, 532, 46, 400, 401, 150, 570, 773, 46, 404, 839, 929, 30, 838, 151, 1188, 1453, 339, 277, 258, 30, 199, 259, 156, 30, 108, 287, 108, 475, 1092, 104, 94, -232, -232, 1202, 931, 67, 146, 119, 46, 158, 571, 1410, 1411, 147, 148, 1473, 46, 851, 880, 881, 30, 46, 369, 858, 972, 108, 944, 120, 836, 1310, 163, 94, 878, 878, 878, 899, 67, 479, 481, 200, 1211, 1212, 145, 1206, 94, 278, 46, 46, 158, 734, 878, 255, 735, 1457, 1204, 1410, 1411, 156, 1457, 249, 186, 407, 46, 94, 777, 407, 94, 741, 209, 149, 46, 158, -232, 672, 1193, 1254, 837, 165, 1457, 46, 138, 1412, 46, 439, 532, 1457, 146, 139, 532, 669, 415, 320, 407, 147, 148, 163, 108, 405, 1128, 435, 336, 166, 373, 1255, 723, 1129, 437, 1251, 1499, 952, 469, 443, 46, 95, 150, 1127, 838, 670, 374, 970, 1178, 74, 836, 151, 878, 1421, 46, 46, 158, 324, 464, 238, 241, 46, 141, 783, 53, 1194, 108, 698, 46, 840, 480, 1528, 94, 1530, 661, 707, 1030, 47, 426, 520, 74, 487, 430, 825, 467, 94, 475, 1031, 504, 1335, 601, 143, 30, 66, 744, 700, 1184, 1178, 837, 669, 592, 1146, 676, 841, 614, 1339, 475, 1007, 681, 104, 394, 186, 320, 452, 475, 30, 920, 46, 369, 601, 432, 30, 108, 1185, 601, 842, 874, 670, 1010, 339, 879, 879, 879, 532, 94, 1018, 46, 46, 838, 383, 1176, 1177, 1483, 878, 430, 152, 94, 492, 879, 1085, 324, 438, 480, 46, 868, 384, 174, 46, 869, 226, 1393, 1341, 485, 227, 407, 1084, 231, 525, 233, 1185, 156, -110, 851, 634, 572, 242, 94, 638, 1397, 560, 561, 67, 432, 734, 46, 849, 735, 606, 168, 840, 483, 856, -110, 606, 46, 369, 848, 1208, 532, 678, 680, 2, 203, 4, 5, 6, 7, 865, 163, 852, 1126, 178, 46, 855, 591, 562, 563, 598, 46, 461, 46, 1178, 879, 841, 1542, 1194, 756, 1541, 108, 225, 136, 137, 1194, 757, 872, -110, 631, -110, 875, 723, 635, -110, 1372, 336, 46, 842, 108, 1552, 136, 235, 198, 1557, 1333, 94, 1556, 603, -110, -110, 734, 1334, 110, 735, 1442, 1443, 34, 1448, 35, -288, 46, 108, 240, 136, 137, 608, 244, 750, 46, 369, 1142, 209, 46, 95, 1095, 236, 46, 1194, 890, 249, 237, 502, 339, -110, -110, 764, 1114, 247, 1250, 74, 320, 320, 581, 226, 74, 60, 53, 761, 582, -110, 885, -515, 403, 1100, 261, 879, 1012, 395, 396, 47, 825, 702, 397, 398, 778, 386, 399, 761, 452, 784, 761, 452, 186, 400, 401, 66, 60, 452, 324, 324, 404, 387, 1073, 901, 614, 249, 326, 407, 388, 113, 1029, 104, 523, 1031, -10, 390, 108, 649, 136, 137, 475, 818, 1164, 1166, 389, 708, 1100, 1244, 36, -438, 903, 391, 39, 710, 492, 723, 320, 469, 492, 40, 41, 709, 699, 327, 688, 723, -439, 46, 525, 711, 582, 273, 525, 747, 320, 525, 212, 282, 748, 46, 723, 46, 949, 708, 1489, 833, 336, 606, 40, 41, 825, 1489, 209, 239, 324, 607, 275, 710, 94, 923, 46, 1191, 608, 67, 1283, 1284, 497, 870, 498, 1191, 1370, 871, 324, 924, 517, -464, 46, 1192, 712, 328, 867, 827, 226, 461, 231, 1315, 1324, 212, 1512, 900, 46, 902, 276, 46, 1517, 339, 882, 63, 114, 707, 320, 1326, 1325, 1029, 1538, 74, -464, 725, -464, 1034, 898, 823, -464, 726, 598, 1537, 745, 1327, 749, 1042, 1544, 769, 891, 677, 679, 74, 329, 46, 63, 46, 212, 870, 574, 74, 407, 1110, 330, 1373, 324, 331, 1089, 157, 575, 864, 1199, 509, 332, 1420, 598, 583, 601, 407, 603, 892, 873, 648, 771, 948, 407, 893, 586, 1122, 407, 218, 1049, 742, 772, 904, 1175, 407, 339, 743, 226, 46, 46, 835, 752, 608, 953, 74, 606, 866, 753, 367, 768, 368, 603, 46, 954, 669, 769, 212, 36, 60, 171, 172, 39, 698, 476, 914, 256, 1111, 438, 40, 41, 769, 758, 504, 916, 336, 759, 523, 372, 765, 769, 523, 996, 670, 523, -103, 1009, 1382, 997, -103, 1240, 700, 726, 381, 825, 212, 582, 452, 385, 212, 1491, 422, 1492, 553, 723, 723, 1366, 325, 554, 555, 1358, 1367, 769, 393, 1359, 256, 346, 769, 2, 203, 4, 5, 6, 7, 415, 665, 407, 492, 405, 926, 36, 699, 927, 46, 39, 886, 428, 1369, 807, 1438, 1168, 40, 41, 769, 928, 46, 402, 1374, 1439, 907, 336, 407, 734, 769, 1436, 735, 1450, 1539, 249, 326, 209, 420, 723, 723, 425, 427, 929, 42, 1242, 157, 1073, 160, 1246, 446, 209, 835, 608, 144, 533, 534, 535, 34, 827, 35, 423, 212, 108, 459, 136, 137, 444, 1458, 1189, 1071, 447, 939, 448, 769, 485, 326, 407, 942, 536, 465, 537, 463, 538, 539, 1011, 1505, 36, 63, 823, 1562, 39, 1506, 477, 466, 46, 582, 53, 40, 41, 556, 557, 476, 484, 558, 559, 1510, 1450, 1148, 46, 407, 427, 735, 160, 849, 326, 606, 46, 755, 108, 74, -3, 476, 1160, 739, 407, 66, 564, 565, 159, 476, 1302, 1303, 1304, 740, 46, 8, 9, 10, 11, 12, 1383, 104, 212, 209, 191, 835, 1163, 214, 606, 1115, 224, 126, 462, 127, 128, 129, 1361, 608, 1340, 1342, 1343, 74, 30, 1116, 1165, 488, 606, 1138, 508, 1228, 761, 407, 1138, 732, 287, 60, 516, 256, 823, 1320, 599, 528, 452, 1235, 532, 935, 627, 935, 1000, 997, 33, 566, 212, 567, 1409, 326, 407, 1417, 569, 632, 769, 1002, 335, 632, 1379, 1380, 256, 568, 104, 431, 723, 1430, 997, 67, 795, 796, 797, 798, 723, 723, 723, 1138, 492, 1117, 320, 1436, 1437, -435, 159, 1484, 1485, 1071, 1410, 1411, 1203, 1205, 1207, 572, 791, 792, 457, 370, 1456, 590, 699, 593, 662, 1460, 793, 794, 643, 649, 699, 477, 663, 53, 799, 800, 1054, 1524, 664, 666, 324, 533, 534, 535, 723, 159, 346, 667, 608, 431, 668, 477, 864, 671, 673, 1482, 254, 714, 910, 477, 691, 716, 1196, -236, 754, 536, 766, 537, 159, 538, 1311, 46, 527, 770, 774, 160, -12, 828, 104, 830, 440, 832, 843, 895, 888, 719, 915, 1100, 427, 887, 866, 917, 212, 922, 918, 164, 930, 169, 943, -519, 175, 176, 177, 733, 179, 63, 694, 74, -412, 957, 964, 743, 438, 427, 966, 977, 978, 427, 930, 230, 212, 981, 971, 982, 980, 212, 983, 649, 992, 1004, 1005, 245, 246, 452, 823, 1006, 1020, 339, 1021, 1022, 1023, 1551, 1024, 1025, 973, 256, 346, 1551, 1026, 1037, 67, 476, 36, 1086, 180, 181, 39, 732, 1551, -400, 216, -399, 1551, 40, 41, 1051, 1088, 46, -289, 1071, 1096, 1097, 1098, 207, 217, 8, 9, 10, 11, 12, 1099, 1103, 8, 9, 10, 11, 12, 370, 1104, 693, 1105, 407, 813, 476, 1106, 1107, 53, 694, 1113, 695, 1123, 1115, 30, 769, 1124, 1138, 1138, 1138, 1001, 30, 632, 826, 212, 599, 1125, 1116, 1130, 986, 1134, 104, 1137, 1158, 1179, 1180, 845, 66, 212, 1054, 1181, 1182, 33, 457, 732, 1434, 457, 1197, 1183, 33, 1198, 1200, 457, 104, 599, 1201, 1209, 1213, 1216, 599, 1550, 1215, 1221, 336, -3, 632, 1226, 1232, 346, 346, 346, 1243, 104, 1236, 761, 1071, 370, 497, 74, 1241, 437, 1252, 1245, 1248, 1256, 53, 346, 1117, 1259, 1261, 1263, 574, 1293, 407, 1264, 1265, 1269, 1266, 1044, 1267, 1276, 575, 209, 527, 719, 1115, 1285, 527, 1286, 1296, 527, 403, 72, 1297, 1196, 477, 1314, 395, 396, 1116, 256, 733, 397, 398, 932, 67, 399, 1299, 1322, 1071, 104, 212, 1071, 400, 401, 669, 1300, 1308, 211, 404, 1328, 1330, 1332, 72, 1289, 1336, 1337, 1338, 1344, 1345, 1346, 1348, 1523, 1354, 46, 46, 1355, 477, 1356, 1357, 346, 1138, 1138, 670, 104, 1364, 1365, 1368, 1375, 958, 1376, 1304, 427, 60, 1433, 1384, 1385, 1071, 219, 1117, 1397, 36, 1071, 180, 181, 39, 930, 1394, 1387, 211, 1404, 1405, 40, 41, -401, 256, 733, 438, 597, 604, 1475, 985, 67, 1408, 1419, 1427, 1428, 170, 1115, 1423, 628, 629, 1071, 1425, 1429, 1435, 1145, 1440, 605, 1359, 606, 1449, 1116, 1454, 1444, 1445, 1446, 1459, 607, 1447, 1291, 1292, 211, 1294, 1461, 1463, 1465, 1467, 719, 1298, 1469, 74, 1301, 1472, 1471, 53, 1477, 146, 719, 1479, 250, 346, 53, 632, 147, 148, 1017, 632, 826, 1478, 1525, 1490, 46, 719, 1500, 349, 1044, 104, 1502, 1533, 1504, 1508, 1509, 1028, 1196, 1071, 1531, 1516, 1532, 1536, 1071, 1196, 1117, 1543, 1545, 1547, 1560, 46, 46, 158, 104, 1561, 1214, 211, 1553, 801, 804, 104, 1071, 36, 1071, 180, 181, 39, 1071, 53, 457, 1071, 802, 805, 40, 41, 46, 369, 1496, 1071, 1496, 803, 74, 1071, 173, 1313, 212, 1511, 973, 63, 1422, 1563, 973, 973, 724, 211, 476, 1247, 1196, 211, 693, 1378, 407, 445, 1395, 930, 513, 1493, 1101, 413, 695, 632, 1220, 689, 104, 1496, 718, 1496, 936, 530, 531, 690, 1102, 1133, 72, 820, 67, 1050, 894, 72, 959, 552, 433, 67, 173, 1112, 1323, 173, 737, 967, 810, 0, 441, 811, 812, 320, 0, 1109, 2, 203, 4, 5, 6, 7, 0, 427, 114, 0, 0, 0, 0, 0, 930, 930, 0, 1416, 0, 531, 0, 0, 0, 0, 346, 0, 0, 0, 0, 0, 0, 913, 0, 0, 173, 324, 0, 211, 67, 483, 8, 9, 10, 11, 12, 0, 732, 0, 0, 8, 9, 10, 11, 12, 0, 531, 0, 0, 1331, 599, 0, 0, 524, 34, 0, 35, 0, 30, 0, 0, 0, 0, 425, 0, 0, 219, 30, 719, 719, 0, 346, 346, 0, 0, 75, 8, 9, 10, 11, 12, 0, 0, 0, 0, 74, 33, 0, 173, 0, 0, 1195, 74, 0, 0, 33, 0, 0, 0, 0, 36, 0, 60, 30, 39, 0, 75, 212, 0, 211, 0, 40, 41, 0, 0, 0, 0, 732, 0, 0, 0, 0, 457, 0, 0, 0, 719, 719, 771, 0, 407, 33, 632, 72, 0, 0, 1391, 42, 772, 0, 1391, 220, 173, 0, 724, 74, 0, 144, 349, 173, 0, 0, 0, 72, 0, 0, 1003, 0, 0, 211, 0, 72, 0, 0, 0, 0, 1008, 0, 0, 0, 0, 0, 0, 953, 0, 606, 0, 0, 0, 476, 0, 1019, 0, 954, 946, 0, 947, 349, 36, 733, 171, 172, 39, 950, 951, 0, 54, 54, 956, 40, 41, 685, 212, 0, 0, 349, 0, 72, 0, 36, 961, 180, 181, 39, 930, 965, 0, 173, 0, 0, 40, 41, 788, 789, 790, 368, 0, 54, 351, 0, 0, 930, 1290, 210, 173, 727, 0, 0, 173, 0, 993, 0, 1474, 229, 0, 0, 182, 0, 349, 256, 0, 0, 0, 0, 63, 0, 183, 0, 0, 54, 0, 0, 54, 0, 0, 531, 0, 719, 0, 733, 0, 0, 524, 114, 0, 0, 524, 0, 724, 524, 0, 211, 0, 0, 210, 597, 0, 0, 724, 0, 0, 0, 0, 0, 0, 457, 0, 0, 719, 0, 0, 173, 0, 724, 930, 930, 719, 719, 719, 211, 0, 0, 0, 349, 211, 0, 0, 346, 346, 0, 0, 0, 0, 75, 0, 0, 0, 210, 75, 0, 0, 1195, 0, 0, 0, 0, 0, 0, 0, 476, 0, 0, 1038, 1039, 1040, 1041, 476, 1043, 0, 344, 0, 0, 0, 0, 719, 0, 0, 0, 349, 349, 349, 0, 0, 1087, 0, 114, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 349, 1093, 0, 1173, 1174, 36, 0, 171, 172, 39, 0, 0, 210, 0, 0, 0, 40, 41, 349, 30, 0, 0, 531, 476, 0, 211, 0, 0, 0, 72, 0, 0, 0, 0, 0, 349, 0, 0, 54, 211, 1108, 0, 372, 0, 0, 0, 220, 33, 0, 0, 210, 0, 36, 0, 210, 0, 39, 0, 0, 0, 912, 1223, 1224, 40, 41, 0, 346, 987, 54, 919, 503, 72, 0, 921, 349, 0, 0, 0, 0, 1135, 0, 77, 0, 0, 0, 0, 1143, 0, 0, 739, 173, 1147, 114, 0, 0, 0, 1151, 0, 1152, 740, 0, 0, 1154, 1155, 1156, 0, 0, 1159, 0, 0, 349, 0, 77, 75, 531, 1195, 1171, 0, 0, 0, 0, 0, 1195, 173, 0, 724, 724, 0, 351, 0, 0, 0, 211, 75, 1186, 1187, 0, 0, 0, 173, 210, 75, 0, 0, 0, 0, 0, 221, 0, 0, 0, 0, 349, 173, 0, 0, 0, 0, 0, 0, 0, 1217, 349, 0, 1219, 349, 0, 351, 0, 0, 219, 0, 349, 0, 0, 1195, 0, 349, 0, 0, 0, 0, 1546, 724, 724, 351, -290, 75, 36, 0, 180, 181, 39, 8, 9, 10, 11, 12, 0, 40, 41, 0, 1234, 0, 0, 0, 0, 0, 1238, 1239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1249, 30, 210, 0, 0, 1253, 262, 0, 1257, 351, 1258, 0, 0, 1260, 1347, 352, 263, 0, 84, 210, 72, 0, 1349, 1350, 1351, 0, 1268, 0, 0, 33, 344, 173, 0, 0, 0, 0, 0, 0, 0, 1275, 0, 1277, 1278, 1279, 1280, 0, 0, 0, 0, 84, 0, 0, 210, 0, 0, 0, 0, 1287, 0, 1288, 0, 0, 0, 169, 0, 0, 0, 0, 0, 1497, 1386, 1497, 0, 0, 351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 0, 0, 1094, 531, 54, 0, -291, 1316, 1317, 0, 0, 0, 0, 8, 9, 10, 11, 12, 349, 211, 1321, 1497, 0, 1497, 0, 77, 409, 0, 0, 0, 77, 0, 0, 417, 351, 351, 351, 0, 0, 0, 30, 0, 0, 0, 513, 344, 0, 0, 0, 0, 0, 724, 351, 0, 0, 0, 0, 1352, 1353, 724, 724, 724, 0, 0, 0, 0, 0, 1363, 33, 0, 351, 349, 349, 0, 349, 349, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 359, 351, 0, 210, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 409, 0, 724, 0, 0, 344, 173, 0, 0, 0, 0, 0, 210, 0, 1396, 0, 0, 210, 75, 221, 0, 351, 0, 0, 349, 349, 1400, 0, 1401, 1402, 1403, 0, 0, 36, 0, 180, 181, 39, 0, 0, 1407, 0, 0, 1210, 40, 41, 0, 0, 0, 1418, 344, 344, 344, 0, 531, 580, 0, 351, 0, 0, 0, 0, 0, 584, 0, 1431, 587, 0, 344, 0, 1521, 0, 407, 0, 0, 0, 84, 0, 0, 0, 1522, 84, 0, 0, 0, 0, 77, 349, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 351, 0, 352, 0, 0, 210, 0, 77, 0, 0, 351, 0, 0, 351, 0, 77, 0, 0, 220, 210, 351, 0, 1480, 1481, 0, 351, 0, 0, 0, 0, 409, 219, 0, 0, 417, 1486, 0, 0, 0, 503, 0, 352, 1486, 344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 352, 0, 77, 0, 0, 0, 0, 349, 0, 349, 0, 0, 0, 0, 0, 0, 1520, 222, 0, 0, 1526, 0, 0, 0, 0, 0, 0, 0, 75, 211, 0, 0, 0, 0, 0, 0, 0, 0, 349, 0, 0, 0, 0, 352, 0, 0, 349, 349, 349, 1548, 0, 1549, 0, 210, 0, 0, 0, 349, 349, 0, 409, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 72, 0, 0, 0, 344, 0, 0, 0, 1564, 1565, 0, 344, 0, 84, 0, 0, 1568, 1569, 30, 0, 0, 0, 0, 349, 0, 0, 0, 0, 359, 0, 0, 0, 0, 84, 0, 0, 0, 352, 0, 0, 351, 84, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 1377, 180, 181, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 359, 0, 0, 0, 0, 173, 0, 0, 0, 0, 0, 54, 0, 580, 580, 352, 352, 352, 359, 0, 84, 605, 0, 606, 0, 0, 351, 351, 0, 351, 351, 607, 0, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349, 0, 0, 0, 0, 75, 0, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359, 77, 0, 0, 0, 0, 0, 352, 8, 9, 10, 11, 12, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 351, 351, 0, 123, 123, 123, 0, 0, 0, 72, 344, 0, 30, 0, 0, 0, 72, 905, 0, 0, 77, 908, 210, 352, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 0, 0, 0, 0, 0, 0, 33, 0, 359, 0, 0, 36, 0, 180, 181, 39, 0, 0, 0, 0, 409, 0, 40, 41, 550, 352, 1494, 0, 1498, 351, 0, 0, 344, 344, 0, 72, 0, 0, 0, 0, 123, 0, 123, 0, 0, 0, 0, 0, 693, 0, 407, 0, 54, 359, 359, 359, 0, 0, 695, 0, 0, 0, 173, 1527, 0, 1529, 272, 352, 0, 0, 0, 359, 220, 0, 0, 0, 0, 352, 0, 0, 352, 0, 0, 0, 0, 221, 0, 352, 0, 359, 0, 0, 352, 0, 75, 0, 0, 0, 0, 0, 84, 8, 9, 10, 11, 12, 359, 351, 1558, 351, 1559, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 123, 1566, 1567, 0, 0, 0, 30, 0, 123, 0, 123, 123, 580, 0, 0, 123, 351, 123, 123, 30, 84, 0, 0, 359, 351, 351, 351, 0, 0, 121, 124, 125, 77, 0, 33, 351, 351, 0, 0, 36, 0, 180, 181, 39, 210, 0, 0, 33, 0, 75, 40, 41, 36, 0, 180, 181, 39, 0, 0, 359, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 54, 54, 351, 0, 0, 0, 1521, 0, 407, 0, 0, 0, 0, 0, 0, 0, 1522, 123, 0, 182, 0, 0, 0, 54, 0, 0, 0, 0, 0, 183, 251, 359, 252, 0, 0, 0, 0, 0, 208, 0, 0, 359, 54, 0, 359, 352, 0, 0, 228, 222, 232, 359, 234, 0, 162, 409, 359, 0, 0, 243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 215, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 344, 344, 0, 208, 351, 232, 234, 243, 0, 54, 0, 0, 352, 352, 54, 352, 352, 0, 0, 0, 0, 30, 0, 0, 0, 0, 392, 0, 0, 0, 0, 0, 84, 162, 0, 77, 411, 412, 269, 0, 0, 416, 0, 418, 419, 0, 208, 1149, 54, 33, 0, 0, 0, 75, 36, 0, 180, 181, 39, 0, 75, 0, 0, 1161, 0, 40, 41, 162, 0, 0, 352, 352, 0, 0, 0, 0, 0, 365, 0, 0, 0, 371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 0, 0, 0, 0, 0, 208, 0, 232, 234, 243, 0, 75, 0, 359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 344, 0, 0, 0, 0, 162, 0, 0, 352, 0, 0, 0, 0, 0, 0, 1229, 0, 215, 0, 0, 208, 0, 0, 0, 208, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 162, 458, 0, 0, 0, 501, 0, 0, 359, 359, 0, 359, 359, 0, 54, 0, 221, 0, 0, 0, 0, 54, 0, 0, 371, 0, 0, 0, 0, 0, 0, 84, 162, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 0, 352, 208, 458, 0, 0, 162, 0, 0, 0, 0, 0, 0, 0, 359, 359, 0, 0, 0, 0, 0, 0, 54, 208, 0, 0, 0, 0, 232, 234, 352, 0, 123, 123, 0, 0, 243, 0, 352, 352, 352, 0, 0, 0, 0, 0, 0, 0, 0, 352, 352, 0, 0, 602, 0, 0, 0, 0, 626, 0, 0, 0, 123, 77, 0, 123, 123, 279, 123, 280, 123, 123, 0, 0, 0, 123, 123, 359, 0, 208, 0, 0, 0, 0, 0, 0, 352, 0, 0, 0, 0, 0, 0, 0, 0, 281, 0, 208, 0, 0, 0, 282, 208, 0, 208, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 222, 208, 0, 290, 208, 208, 0, 0, 0, 0, 0, 0, 0, 0, 162, 162, 0, 0, 510, 0, 208, 365, 84, 0, 0, 0, 0, 293, 377, 295, 296, 297, 298, 123, 208, 359, 0, 359, 123, 123, 0, 208, 458, 0, 123, 458, 0, 0, 0, 0, 0, 458, 0, 0, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359, 0, 0, 0, 0, 0, 0, 0, 359, 359, 359, 0, 736, 0, 0, 0, 0, 0, 0, 359, 359, 0, 0, 0, 162, 0, 0, 0, 815, 816, 0, 0, 153, 84, 0, 0, 458, 77, 0, 0, 458, 0, 162, 458, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365, 359, 0, 850, 0, 0, 853, 854, 0, 857, 0, 859, 860, 0, 0, 0, 861, 862, 0, 0, 0, 0, 0, 248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 208, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 0, 365, 0, 602, 208, 0, 831, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 153, 359, 25, 26, 27, 0, 0, 0, 602, 0, 30, 937, 938, 602, 382, 0, 0, 940, 0, 0, 0, 0, 365, 365, 365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 33, 0, 365, 0, 0, 36, 0, 37, 38, 39, 0, 0, 84, 429, 0, 0, 40, 41, 0, 84, 0, 0, 434, 0, 0, 0, 0, 0, 0, 208, 0, 0, 442, 0, 0, 0, 0, 736, 0, 0, 0, 0, 42, 208, 154, 0, 279, 0, 280, 0, 0, 0, 44, 0, 0, 0, 0, 468, 458, 0, 0, 0, 478, 501, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 281, 486, 365, 0, 955, 0, 282, 496, 0, 500, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 529, 0, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 736, 0, 0, 0, 0, 291, 0, 375, 0, 0, 376, 208, 0, 0, 293, 377, 295, 296, 297, 298, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 589, 0, 0, 0, 0, 594, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365, 0, 0, 0, 626, 0, 0, 365, 0, 640, 0, 0, 123, 641, 642, 0, 644, 0, 0, 0, 0, 0, 0, 655, 656, 0, 657, 658, 0, 659, 0, 660, 0, 0, 0, 0, 0, 0, 0, 1027, 0, 0, 8, 9, 10, 11, 12, 0, 589, 0, 0, 0, 0, 0, 0, 0, 675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 30, 280, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 692, 0, 0, 0, 281, 33, 0, 0, 458, 208, 282, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 728, 288, 289, 0, 0, 0, 731, 0, 0, 290, 0, 468, 0, 208, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 291, 0, 375, 162, 0, 0, 0, 0, 0, 293, 821, 295, 296, 297, 298, 0, 0, 0, 365, 0, 0, 208, 0, 767, 0, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 602, 0, 1225, 0, 0, 1169, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 365, 365, 809, 0, 0, 0, 0, 0, 0, 0, 318, 819, 0, 279, 30, 280, 0, 0, 822, 0, 342, 0, 0, 829, 0, 0, 0, 0, 0, 0, 0, 0, 378, 378, 844, 0, 0, 0, 0, 208, 0, 281, 33, 0, 0, 0, 0, 282, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 458, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, 884, 0, 0, 0, 0, 0, 0, 0, 0, 291, 0, 375, 0, 0, 0, 0, 0, 0, 293, 1170, 295, 296, 297, 298, 0, 0, 0, 0, 318, 1312, 0, 0, 0, 0, 0, 829, 0, 338, 360, 0, 0, 0, 0, 736, 0, 0, 0, 0, 0, 0, 208, 0, 0, 482, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 410, 0, 25, 26, 27, 0, 0, 410, 0, 0, 30, 0, 0, 0, 215, 0, 0, 0, 0, 248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 962, 963, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 979, 36, 0, 37, 38, 39, 0, 0, 0, 0, 736, 0, 40, 41, 0, 0, 0, 994, 0, 995, 0, 0, 0, 999, 0, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 410, 42, 0, 43, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 378, 0, 0, 365, 365, 0, 0, 0, 0, 0, 0, 0, 215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 0, 280, 0, 0, 0, 0, 0, 0, 0, 0, 1032, 0, 0, 410, 0, 0, 0, 1033, 0, 0, 0, 410, 585, 0, 410, 588, 0, 281, 0, 0, 1035, 0, 1036, 645, 360, 136, 137, 283, 618, 0, 284, 646, 286, 287, 40, 41, 1048, 288, 289, 0, 0, 0, 0, 1052, 0, 290, 0, 636, 0, 0, 338, 0, 0, 0, 0, 1090, 0, 0, 1091, 0, 291, 0, 647, 0, 648, 376, 0, 0, 730, 293, 377, 295, 296, 297, 298, 0, 594, 410, 0, 0, 0, 410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 763, 0, 0, 0, 0, 0, 360, 0, 0, 0, 0, 0, 0, 776, 0, 0, 0, 0, 0, 0, 763, 0, 0, 763, 0, 0, 0, 0, 0, 410, 0, 0, 0, 0, 786, 787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458, 0, 458, 0, 0, 0, 0, 0, 0, 0, 808, 0, 1153, 0, 410, 0, 0, 360, 0, 0, 817, 0, 0, 0, 0, 0, 0, 342, 0, 0, 0, 0, 776, 0, 0, 0, 0, 458, 0, 458, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 410, 0, 0, 338, 360, 0, 0, 0, 0, 0, 0, 162, 529, 0, 0, 0, 0, 0, 0, 1218, 0, 0, 0, 0, 0, 0, 883, 0, 0, 0, 0, 0, 0, 0, 378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1231, 410, 410, 0, 0, 1233, 0, 0, 0, 0, 0, 0, 0, 1237, 0, 0, 0, 0, 0, 0, 824, 360, 0, 360, 0, 0, 342, 0, 0, 0, 0, 0, 618, 0, 618, 618, 0, 0, 0, 0, 0, 618, 0, 1262, 0, 0, 0, 0, 0, 0, 0, 863, 360, 0, 0, 1270, 0, 360, 1271, 0, 1272, 0, 0, 0, 0, 0, 360, 360, 360, 0, 0, 0, 0, 0, 1281, 1282, 0, 0, 0, 0, 0, 0, 0, 0, 360, 0, 0, 0, 0, 410, 906, 0, 0, 410, 909, 0, 1295, 0, 0, 0, 911, 776, 0, 984, 0, 0, 0, 0, 0, 989, 0, 0, 0, 0, 0, 0, 998, 0, 338, 360, 410, 0, 410, 1318, 0, 0, 410, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 450, 0, 360, 618, 1015, 1016, 0, 342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 338, 360, 0, 0, 0, 410, 410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1046, 1388, 0, 1389, 378, 0, 0, 0, 0, 451, 0, 0, 0, 706, 0, 0, 1398, 109, 1399, 0, 0, 0, 410, 0, 0, 0, 0, 0, 0, 0, 0, 360, 0, 0, 0, 0, 1406, 824, 360, 0, 0, 0, 618, 0, 618, 0, 0, 0, 511, 512, 515, 0, 1424, 1426, 618, 0, 0, 518, 519, 0, 0, 0, 512, 512, 1432, 0, 0, 1237, 0, 0, 0, 0, 0, 0, 512, 0, 0, 0, 0, 0, 318, 0, 0, 0, 0, 0, 0, 0, 0, 1455, 0, 0, 0, 0, 0, 1131, 1132, 0, 1462, 0, 0, 1464, 378, 1466, 1468, 1470, 0, 0, 989, 0, 512, 1141, 0, 763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 824, 0, 0, 0, 0, 0, 1157, 0, 410, 0, 0, 0, 0, 0, 410, 0, 0, 1172, 1501, 512, 1503, 0, 410, 1237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 618, 618, 0, 1515, 378, 0, 1190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 989, 989, 0, 0, 0, 360, 0, 0, 0, 0, 0, 410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1222, 0, 0, 0, 0, 0, 0, 0, 0, 410, 1150, 279, 0, 280, 0, 0, 0, 0, 0, 360, 0, 0, 0, 0, 0, 410, 1162, 0, 618, 618, 1167, 0, 0, 0, 0, 0, 0, 0, 0, 281, 360, 360, 0, 0, 0, 282, 989, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 883, 0, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1273, 1274, 291, 0, 375, 0, 0, 0, 0, 0, 806, 293, 377, 295, 296, 297, 298, 0, 0, 0, 0, 824, 410, 1230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 618, 0, 0, 0, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 0, 989, 512, -514, 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, 0, 0, 25, 26, 27, 28, 0, 0, 29, 0, 30, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 338, 0, 0, 1381, 0, 763, 32, 0, 0, 33, 30, 34, 0, 35, 36, 0, 37, 38, 39, 0, 360, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 43, 0, 0, 0, 0, 0, 0, 0, 44, 0, 512, 0, 0, 0, 0, 360, 360, 0, 0, 0, 0, 0, 0, 512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1441, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 0, 0, 0, 0, 0, 0, 1, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 512, 25, 26, 27, 28, 0, 0, 29, 279, 30, 280, 0, 0, 0, 0, 512, 0, 0, 0, 0, 1507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281, 33, 0, 34, 360, 35, 282, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, 0, 0, 318, 0, 0, 0, 0, 0, 0, 291, 0, 1069, 0, 0, 0, 0, 0, 0, 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, 0, 0, 0, 0, -127, 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, 410, 471, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 410, 410, 25, 26, 27, 0, 0, 0, 0, 0, 30, 512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 512, 35, 0, 0, 37, 38, 0, 0, 0, 0, 0, 0, 512, 1, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, -3, 29, 279, 30, 1055, 1056, 0, 1057, 0, 512, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 0, 0, 0, 1066, 0, 0, 0, 1067, 1068, 0, 32, 0, 281, 33, 0, 34, 0, 35, 645, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 0, 1069, 0, 0, 168, 0, 0, 512, 293, 294, 295, 296, 297, 298, 0, 0, 0, 0, 1070, 0, 0, 0, -127, 0, 0, 1, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 512, 25, 26, 27, 28, 0, 0, 29, 279, 30, 280, 0, 0, 0, 512, 512, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -292, 0, 0, 281, 33, 0, 34, 0, 35, 282, 30, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 291, 0, 43, -292, 0, 0, 0, 0, 0, 293, 294, 295, 296, 297, 298, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 30, 280, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -292, 0, 25, 26, 27, 0, 0, 0, 281, 33, 30, 34, 0, 35, 282, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 33, 0, 0, 0, 0, 36, 0, 333, 334, 39, 0, -292, 0, 291, 0, 340, 40, 41, 0, 0, 775, 0, 293, 341, 295, 296, 297, 298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 0, 0, 639, 0, 335, 0, 0, 0, 0, 0, 0, 0, 630, 0, 0, 0, 512, 0, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 30, 280, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 281, 33, 30, 34, 0, 35, 282, 0, 37, 38, 283, 512, 512, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 33, 0, 0, 0, 0, 0, 0, 204, 38, 0, 0, 0, 0, 291, 0, 925, 0, 0, 0, 0, 775, 0, 293, 341, 295, 296, 297, 298, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 268, 25, 26, 27, 0, 0, 0, 0, 279, 30, 280, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 281, 33, 30, 34, 0, 35, 282, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 33, 0, 0, 0, 0, 0, 0, 204, 38, 0, 0, 0, 0, 291, 0, 925, 0, 0, 0, 0, 775, 0, 293, 596, 295, 296, 297, 298, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 625, 25, 26, 27, 0, 0, 0, 0, 279, 30, 280, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -293, 0, 0, 0, 0, 0, 0, 0, 281, 33, 30, 34, 0, 35, 282, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -293, 0, 291, 0, 340, 0, 0, 0, 0, 0, 0, 293, 341, 295, 296, 297, 298, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 30, 280, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 489, 490, 491, 281, 33, 30, 34, 0, 35, 282, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 0, 291, 0, 925, 0, 0, 0, 0, 0, 0, 293, 341, 295, 296, 297, 298, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 30, 280, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 281, 33, 30, 34, 0, 35, 282, 0, 204, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 33, 0, 0, 0, 0, 108, 0, 37, 38, 0, 0, 0, 0, 291, 0, 1013, 0, 0, 0, 0, 0, 0, 293, 1014, 295, 296, 297, 298, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 30, 280, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 281, 33, 30, 34, 0, 35, 282, 0, 204, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 0, 291, 0, 375, 0, 0, 0, 0, 0, 0, 293, 377, 295, 296, 297, 298, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 0, 30, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 32, 0, 0, 33, 30, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 204, 38, 0, 0, 0, 0, 42, 0, 43, 0, 0, 0, -518, 0, 0, 0, 44, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 0, 30, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 33, 0, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 43, 0, 0, 0, 0, 0, 0, 0, 44, 202, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 36, 0, 204, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 205, 0, 0, 0, 0, 0, 0, 0, 206, 1, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -292, 0, 25, 26, 27, 28, 0, 0, 29, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 0, -292, 0, 1, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 43, 29, 0, 30, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 202, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 43, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 204, 38, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 205, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 36, 0, 204, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 205, 0, 0, 0, 0, 0, 0, 0, 206, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, -397, 682, 0, 0, 0, 0, 0, 0, 0, 630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 682, 0, 0, 0, 0, 0, 0, 0, 630, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 33, 0, 34, 0, 35, 30, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1362, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 333, 334, 39, 0, 682, 0, 0, 0, 0, 40, 41, 0, 630, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 335, 25, 26, 27, 0, 0, 0, 0, 109, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 204, 38, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 267, 0, 0, 0, 0, 0, 0, 0, 625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 682, 0, 0, 0, 0, 0, 0, 0, 630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 595, 0, 0, 0, 0, 0, 0, 0, 630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 204, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 30, 280, 0, 0, 0, 0, 0, 0, 205, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281, 33, 0, 0, 0, 0, 282, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 0, 521, 0, 0, 168, 0, 0, 0, 293, 294, 295, 296, 297, 298, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 30, 280, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -292, 0, 25, 26, 27, 0, 0, 281, 33, 0, 30, 0, 0, 282, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 33, 0, 0, 0, 0, 36, 0, 333, 334, 39, 0, -292, 291, 0, 595, -3, 40, 41, 0, 0, 0, 293, 596, 295, 296, 297, 298, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 335, 0, 25, 26, 27, 0, 0, 0, 109, 279, 30, 280, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -292, 0, 25, 26, 27, 0, 0, 281, 33, 0, 30, 0, 0, 645, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, -292, 291, -34, 760, 0, 0, 0, 0, 0, 0, 293, 294, 295, 296, 297, 298, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 335, 0, 25, 26, 27, 0, 0, 0, 109, 279, 30, 280, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 281, 33, 0, 30, 0, 0, 282, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 33, 0, 0, 0, 0, 108, 0, 37, 38, 0, 0, 0, 291, 0, 292, 0, 0, 0, 0, 0, 0, 293, 294, 295, 296, 297, 298, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 43, 0, 25, 26, 27, 0, 0, 0, 109, 279, 30, 280, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 281, 33, 0, 30, 450, 0, 282, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 291, 0, 154, 0, 0, 0, 0, 0, 0, 293, 294, 295, 296, 297, 298, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 451, 0, 25, 26, 27, 0, 0, 0, 109, 279, 30, 280, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 281, 33, 0, 30, 0, 0, 282, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 291, 0, 595, 0, 0, 0, 0, 0, 0, 293, 596, 295, 296, 297, 298, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 254, 0, 25, 26, 27, 0, 0, 0, 109, 279, 30, 280, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 281, 33, 30, 0, 0, 0, 282, 0, 37, 38, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 33, 0, 0, 0, 0, 36, 0, 204, 38, 39, 0, 0, 0, 291, 0, 375, 40, 41, 0, 0, 0, 0, 293, 377, 295, 296, 297, 298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 267, 0, 0, 0, 0, 0, 0, 0, 206, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -292, 0, 25, 26, 27, 0, 0, 0, 0, 33, 30, 0, 0, 0, 36, 0, 333, 334, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, -292, 0, 639, 0, 335, 0, 0, 0, 0, 0, 0, 0, 630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 639, 0, 335, 0, 0, 0, 0, 0, 0, 0, 109, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -292, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 33, 30, 450, 0, 0, 0, 0, 37, 38, 0, 0, -292, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 33, 0, 25, 26, 27, 0, 0, 37, 38, 0, 30, 450, 0, 639, 0, 335, 0, 0, 0, 0, 0, 0, 0, 630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 451, 37, 38, 0, 941, 0, 0, 0, 109, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 451, 0, 0, 0, 1227, 0, 0, 0, 109, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 33, 0, 25, 26, 27, 0, 0, 37, 38, 0, 30, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 33, 30, 0, 0, 639, 0, 335, 37, 38, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 0, 639, 0, 335, 0, 0, 0, 0, 0, 0, 0, 630, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 154, 25, 26, 27, 0, 0, 0, 0, 109, 30, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 33, 30, 0, 0, 0, 0, 0, 204, 38, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 33, 0, 25, 26, 27, 0, 0, 37, 38, 0, 30, 0, 0, 0, 0, 267, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 254, 37, 38, 0, 0, 0, 0, 0, 630, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 335, 0, 0, 0, 0, 0, 0, 0, 630, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 33, 0, 25, 26, 27, 0, 0, 37, 38, 0, 30, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 33, 30, 0, 0, 0, 0, 451, 204, 38, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 0, 0, 0, 267, 0, 0, 0, 0, 0, 0, 0, 625, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 595, 25, 26, 27, 0, 0, 0, 0, 630, 30, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 33, 30, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 0, 0, 0, 335, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 109, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 279, 0, 280, 1056, 0, 1057, 0, 0, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 0, 0, 1540, 1066, 0, 0, 0, 1067, 1068, 33, 32, 34, 281, 35, 0, 0, 37, 38, 645, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -410, 0, 0, 291, 0, 375, 0, 0, 168, 0, 0, 0, 293, 377, 295, 296, 297, 298, 0, 0, 0, 0, 1070, 0, 0, 279, -127, 280, 1056, 0, 1057, 0, 0, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 0, 0, 0, 1066, 0, 0, 0, 1067, 1068, 0, 32, 0, 281, 0, 0, 0, 0, 0, 645, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 0, 375, 0, 0, 168, 0, 0, 0, 293, 377, 295, 296, 297, 298, 0, 0, 0, 0, 1070, 0, 0, 279, -127, 280, 1056, 0, 1057, 1410, 1411, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 0, 0, 1540, 1066, 0, 0, 0, 1067, 1068, 0, 32, 0, 281, 0, 0, 0, 0, 0, 645, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 0, 375, 0, 0, 168, 0, 0, 0, 293, 377, 295, 296, 297, 298, 279, 0, 280, 1056, 1070, 1057, 1410, 1411, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 0, 0, 0, 1066, 0, 0, 0, 1067, 1068, 0, 32, 0, 281, 0, 0, 0, 0, 0, 645, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 0, 375, 0, 0, 168, 0, 0, 0, 293, 377, 295, 296, 297, 298, 279, 0, 280, 1056, 1070, 1057, 0, 0, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 0, 0, 0, 1066, 0, 0, 0, 1067, 1068, 0, 32, 0, 281, 0, 0, 0, 0, 0, 645, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 0, 375, 0, 0, 168, 0, 0, 0, 293, 377, 295, 296, 297, 298, 0, 0, 0, 0, 1070, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 279, 0, 280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 0, 280, 0, 0, 0, 33, 0, 34, 281, 35, 0, 0, 37, 38, 282, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 281, 288, 289, 0, 0, 0, 282, 1319, 0, 290, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 291, 0, 375, 0, 290, 0, 279, 775, 280, 293, 377, 295, 296, 297, 298, 0, 0, 0, 0, 291, 0, 375, 0, 0, 986, 279, 0, 280, 293, 377, 295, 296, 297, 298, 281, 0, 0, 0, 0, 0, 282, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 281, 288, 289, 0, 0, 0, 282, 0, 0, 290, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 291, 0, 375, 0, 290, 0, 279, 0, 280, 293, 377, 295, 296, 297, 298, 0, 0, 0, 0, 291, 0, 375, 0, 0, 0, 279, 0, 280, 293, 729, 295, 296, 297, 298, 281, 0, 0, 0, 0, 0, 645, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 281, 288, 289, 0, 0, 0, 282, 0, 0, 290, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 291, 0, 779, 0, 290, 0, 279, 0, 280, 293, 377, 295, 296, 297, 298, 0, 0, 0, 0, 291, 0, 375, 0, 0, 0, 279, 0, 280, 293, 821, 295, 296, 297, 298, 281, 0, 0, 0, 0, 0, 282, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 281, 288, 289, 0, 0, 0, 282, 0, 0, 290, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 291, 0, 0, 0, 290, 0, 279, 0, 280, 293, 377, 295, 296, 297, 298, 0, 0, 0, 0, 514, 0, 0, 0, 0, 0, 0, 0, 0, 293, 377, 295, 296, 297, 298, 281, 0, 0, 0, 0, 0, 282, 0, 0, 0, 283, 0, 0, 284, 285, 286, 287, 40, 41, 0, 288, 289, 0, 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 517, 0, 0, 0, 0, 0, 0, 0, 0, 293, 377, 295, 296, 297, 298, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 36, 0, 171, 172, 39, 0, 0, 0, 0, 0, 0, 40, 41, 202, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 204, 38, 471, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 204, 38 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1362)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 1, 236, 0, 0, 42, 113, 693, 516, 183, 165, 166, 42, 42, 1, 182, 182, 201, 539, 693, 182, 182, 216, 276, 182, 651, 453, 0, 1, 625, 459, 182, 182, 605, 31, 31, 1055, 183, 896, 496, 0, 693, 452, 500, 992, 42, 341, 44, 44, 607, 1410, 1329, 605, 345, 896, 414, 0, 54, 31, 345, 607, 360, 1036, 60, 60, 364, 63, 63, 42, 66, 66, 31, 0, 1, 999, 434, 103, 54, 31, 66, 575, 605, 70, 442, 774, 771, 605, 31, 1, 263, 63, 198, 718, 66, 1414, 262, 262, 771, 754, 61, 262, 262, 184, 31, 262, 1035, 1036, 104, 605, 80, 107, 262, 262, 42, 93, 525, 113, 263, 605, 771, 37, 605, 42, 1048, 1484, 152, 49, 104, 37, 27, 107, 44, 37, 70, 80, 70, 253, 108, 66, 0, 42, 43, 130, 694, 0, 182, 80, 144, 144, 128, 42, 43, 182, 182, 1432, 152, 608, 640, 641, 37, 157, 157, 614, 109, 70, 716, 107, 739, 130, 44, 31, 639, 640, 641, 657, 31, 258, 259, 76, 1067, 1068, 42, 117, 44, 107, 182, 183, 183, 486, 657, 103, 486, 1512, 130, 42, 43, 109, 1517, 107, 60, 109, 198, 63, 109, 109, 66, 492, 63, 182, 206, 206, 113, 406, 1055, 83, 739, 105, 1537, 215, 29, 112, 218, 218, 80, 1544, 262, 107, 80, 402, 107, 143, 109, 262, 262, 109, 70, 62, 108, 215, 152, 129, 114, 111, 468, 115, 218, 1134, 1466, 731, 249, 225, 248, 248, 182, 107, 739, 402, 130, 115, 1233, 0, 833, 182, 731, 112, 262, 263, 263, 143, 244, 80, 81, 269, 11, 109, 248, 1295, 70, 452, 276, 833, 107, 1501, 144, 1503, 392, 713, 845, 248, 202, 290, 31, 269, 206, 593, 248, 157, 414, 845, 276, 1248, 596, 107, 37, 248, 494, 452, 94, 1282, 833, 484, 338, 1002, 420, 833, 607, 109, 434, 813, 426, 248, 182, 183, 236, 237, 442, 37, 686, 325, 325, 625, 206, 37, 70, 121, 630, 833, 636, 484, 822, 367, 639, 640, 641, 80, 206, 833, 344, 345, 833, 114, 1281, 1282, 94, 822, 268, 110, 218, 271, 657, 1218, 236, 218, 107, 361, 110, 130, 344, 365, 114, 67, 107, 109, 107, 71, 109, 1218, 74, 291, 76, 121, 294, 108, 835, 361, 129, 83, 248, 365, 115, 88, 89, 248, 268, 692, 392, 107, 692, 109, 112, 953, 262, 107, 129, 109, 402, 402, 954, 1064, 80, 422, 423, 4, 5, 6, 7, 8, 9, 1014, 294, 609, 972, 114, 420, 613, 338, 124, 125, 341, 426, 240, 428, 1406, 731, 953, 1517, 1455, 108, 1517, 70, 32, 72, 73, 1462, 115, 634, 108, 360, 110, 638, 675, 364, 114, 1295, 367, 452, 953, 70, 1537, 72, 73, 3, 1544, 108, 325, 1544, 341, 129, 130, 767, 115, 471, 767, 1398, 1399, 67, 1406, 69, 3, 476, 70, 112, 72, 73, 345, 114, 498, 484, 484, 997, 346, 488, 488, 922, 107, 492, 1515, 652, 107, 112, 753, 528, 113, 114, 516, 962, 0, 1133, 248, 422, 423, 108, 209, 253, 0, 488, 516, 114, 129, 109, 0, 695, 932, 129, 822, 824, 693, 693, 488, 828, 940, 693, 693, 533, 114, 693, 536, 450, 538, 539, 453, 402, 693, 693, 488, 31, 459, 422, 423, 695, 130, 896, 659, 845, 107, 108, 109, 114, 471, 845, 488, 291, 1109, 107, 114, 70, 376, 72, 73, 686, 582, 1023, 1024, 130, 114, 985, 1127, 70, 107, 661, 130, 74, 114, 496, 809, 498, 586, 500, 81, 82, 130, 452, 108, 108, 819, 107, 593, 510, 130, 114, 107, 514, 107, 516, 517, 63, 70, 112, 605, 834, 607, 728, 114, 1455, 107, 528, 109, 81, 82, 918, 1462, 477, 80, 498, 117, 107, 114, 488, 130, 626, 114, 492, 488, 1184, 1185, 127, 110, 129, 114, 1295, 114, 516, 130, 107, 78, 642, 130, 457, 108, 626, 594, 348, 462, 350, 130, 114, 114, 1487, 658, 656, 660, 107, 659, 1493, 691, 642, 0, 1, 1095, 582, 114, 130, 958, 1515, 414, 109, 108, 111, 867, 656, 593, 115, 114, 596, 1514, 495, 130, 497, 882, 1519, 114, 78, 422, 423, 434, 108, 693, 31, 695, 157, 110, 107, 442, 109, 114, 108, 130, 582, 108, 903, 44, 117, 625, 1058, 278, 108, 1372, 630, 107, 1014, 109, 596, 109, 636, 111, 107, 726, 109, 115, 107, 964, 109, 66, 888, 108, 117, 107, 1035, 109, 766, 114, 438, 739, 740, 605, 108, 607, 107, 488, 109, 625, 114, 110, 108, 107, 630, 753, 117, 932, 114, 218, 70, 248, 72, 73, 74, 940, 253, 108, 103, 959, 627, 81, 82, 114, 510, 753, 108, 691, 514, 510, 107, 517, 114, 514, 108, 932, 517, 110, 108, 1311, 114, 114, 108, 940, 114, 113, 1096, 256, 114, 713, 107, 260, 1459, 107, 1461, 117, 1032, 1033, 108, 144, 122, 123, 110, 108, 114, 130, 114, 152, 153, 114, 4, 5, 6, 7, 8, 9, 107, 108, 109, 743, 62, 693, 70, 695, 1521, 833, 74, 648, 110, 108, 571, 1393, 1027, 81, 82, 114, 1521, 845, 183, 108, 108, 107, 766, 109, 1153, 114, 114, 1153, 1410, 1516, 107, 108, 719, 198, 1090, 1091, 201, 202, 1521, 107, 1125, 206, 1218, 44, 1129, 130, 733, 739, 740, 117, 83, 84, 85, 67, 829, 69, 107, 346, 70, 112, 72, 73, 227, 108, 1050, 896, 231, 708, 233, 114, 107, 108, 109, 714, 107, 130, 109, 242, 111, 112, 824, 108, 70, 248, 828, 108, 74, 114, 253, 130, 918, 114, 896, 81, 82, 119, 120, 414, 263, 86, 87, 1483, 1484, 107, 932, 109, 271, 1233, 109, 107, 108, 109, 940, 508, 70, 686, 130, 434, 107, 107, 109, 896, 90, 91, 44, 442, 56, 57, 58, 117, 958, 10, 11, 12, 13, 14, 1312, 896, 427, 826, 60, 833, 107, 63, 109, 963, 66, 70, 112, 72, 73, 74, 1281, 845, 1254, 1255, 1256, 728, 37, 963, 107, 112, 109, 994, 107, 107, 997, 109, 999, 486, 80, 488, 107, 338, 918, 1231, 341, 110, 922, 1117, 80, 698, 347, 700, 113, 114, 65, 118, 477, 126, 1366, 108, 109, 1369, 92, 360, 114, 115, 109, 364, 56, 57, 367, 127, 963, 206, 1262, 113, 114, 896, 560, 561, 562, 563, 1270, 1271, 1272, 1048, 962, 963, 964, 114, 115, 107, 144, 114, 115, 1058, 42, 43, 1061, 1062, 1063, 129, 556, 557, 237, 157, 1414, 107, 932, 110, 108, 1419, 558, 559, 110, 888, 940, 414, 108, 1055, 564, 565, 895, 1496, 108, 108, 964, 83, 84, 85, 1318, 183, 429, 108, 958, 268, 108, 434, 1014, 107, 110, 1449, 109, 114, 671, 442, 110, 129, 1055, 112, 107, 107, 110, 109, 206, 111, 112, 1117, 291, 108, 108, 294, 115, 110, 1055, 110, 218, 110, 110, 28, 114, 468, 108, 1546, 471, 115, 1014, 108, 599, 112, 110, 50, 694, 52, 113, 113, 55, 56, 57, 486, 59, 488, 115, 896, 108, 113, 107, 114, 1017, 496, 108, 108, 108, 500, 716, 74, 627, 108, 130, 108, 115, 632, 108, 986, 114, 108, 108, 86, 87, 1095, 1096, 108, 108, 1213, 108, 108, 108, 1535, 108, 108, 757, 528, 529, 1541, 108, 108, 1055, 686, 70, 28, 72, 73, 74, 692, 1552, 108, 1196, 108, 1556, 81, 82, 113, 129, 1213, 3, 1218, 110, 108, 108, 1195, 1196, 10, 11, 12, 13, 14, 108, 113, 10, 11, 12, 13, 14, 325, 108, 107, 114, 109, 575, 728, 110, 110, 1218, 115, 108, 117, 108, 1237, 37, 114, 108, 1254, 1255, 1256, 806, 37, 593, 594, 719, 596, 115, 1237, 114, 112, 114, 1196, 110, 108, 114, 114, 607, 1218, 733, 1086, 108, 108, 65, 450, 767, 1389, 453, 107, 110, 65, 107, 107, 459, 1218, 625, 107, 107, 110, 130, 630, 1531, 115, 108, 1213, 113, 636, 108, 108, 639, 640, 641, 110, 1237, 113, 1311, 1312, 402, 127, 1055, 112, 1290, 110, 130, 114, 114, 1295, 657, 1237, 110, 108, 108, 107, 45, 109, 108, 110, 108, 110, 884, 110, 110, 117, 1195, 510, 675, 1329, 110, 514, 110, 130, 517, 1522, 0, 130, 1295, 686, 113, 1521, 1521, 1329, 691, 692, 1521, 1521, 695, 1218, 1521, 130, 108, 1366, 1295, 826, 1369, 1521, 1521, 1546, 130, 130, 63, 1522, 113, 115, 108, 31, 1191, 110, 113, 110, 110, 110, 110, 110, 1496, 110, 1388, 1389, 110, 728, 108, 108, 731, 1398, 1399, 1546, 1329, 110, 110, 107, 107, 740, 107, 58, 743, 896, 1388, 108, 108, 1414, 66, 1329, 115, 70, 1419, 72, 73, 74, 972, 130, 112, 114, 110, 110, 81, 82, 108, 766, 767, 1290, 341, 342, 1437, 772, 1295, 110, 108, 107, 107, 52, 1432, 94, 353, 354, 1449, 94, 130, 113, 1002, 110, 107, 114, 109, 40, 1432, 115, 108, 108, 108, 130, 117, 108, 1197, 1198, 157, 1200, 130, 108, 108, 94, 809, 1206, 94, 1218, 1209, 108, 130, 1455, 108, 1521, 819, 115, 95, 822, 1462, 824, 1521, 1521, 827, 828, 829, 130, 1497, 130, 1496, 834, 108, 153, 1052, 1432, 108, 1506, 113, 110, 110, 844, 1455, 1512, 107, 130, 130, 113, 1517, 1462, 1432, 113, 108, 108, 108, 1521, 1522, 1522, 1455, 108, 1070, 218, 130, 566, 569, 1462, 1535, 70, 1537, 72, 73, 74, 1541, 1515, 713, 1544, 567, 570, 81, 82, 1546, 1546, 1464, 1552, 1466, 568, 1295, 1556, 54, 1218, 1017, 1484, 1125, 896, 1374, 1556, 1129, 1130, 468, 256, 1055, 1130, 1515, 260, 107, 1305, 109, 227, 1334, 1127, 280, 1462, 940, 190, 117, 918, 1086, 450, 1515, 1501, 462, 1503, 700, 293, 294, 450, 942, 986, 248, 586, 1455, 888, 653, 253, 743, 305, 213, 1462, 104, 960, 1237, 107, 488, 753, 574, -1, 223, 574, 574, 1531, -1, 954, 4, 5, 6, 7, 8, 9, -1, 962, 963, -1, -1, -1, -1, -1, 1184, 1185, -1, 1368, -1, 341, -1, -1, -1, -1, 979, -1, -1, -1, -1, -1, -1, 675, -1, -1, 152, 1531, -1, 346, 1515, 1521, 10, 11, 12, 13, 14, -1, 1153, -1, -1, 10, 11, 12, 13, 14, -1, 377, -1, -1, 1243, 1014, -1, -1, 291, 67, -1, 69, -1, 37, -1, -1, -1, -1, 1027, -1, -1, 347, 37, 1032, 1033, -1, 1035, 1036, -1, -1, 0, 10, 11, 12, 13, 14, -1, -1, -1, -1, 1455, 65, -1, 215, -1, -1, 1055, 1462, -1, -1, 65, -1, -1, -1, -1, 70, -1, 1218, 37, 74, -1, 31, 1195, -1, 427, -1, 81, 82, -1, -1, -1, -1, 1233, -1, -1, -1, -1, 922, -1, -1, -1, 1090, 1091, 107, -1, 109, 65, 1096, 414, -1, -1, 1330, 107, 117, -1, 1334, 66, 269, -1, 675, 1515, -1, 117, 429, 276, -1, -1, -1, 434, -1, -1, 809, -1, -1, 477, -1, 442, -1, -1, -1, -1, 819, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, 1295, -1, 834, -1, 117, 720, -1, 722, 468, 70, 1153, 72, 73, 74, 729, 730, -1, 0, 1, 734, 81, 82, 439, 1290, -1, -1, 486, -1, 488, -1, 70, 746, 72, 73, 74, 1393, 751, -1, 344, -1, -1, 81, 82, 553, 554, 555, 107, -1, 31, 153, -1, -1, 1410, 1196, 63, 361, 473, -1, -1, 365, -1, 776, -1, 1436, 73, -1, -1, 107, -1, 529, 1213, -1, -1, -1, -1, 1218, -1, 117, -1, -1, 63, -1, -1, 66, -1, -1, 596, -1, 1231, -1, 1233, -1, -1, 510, 1237, -1, -1, 514, -1, 809, 517, -1, 599, -1, -1, 114, 821, -1, -1, 819, -1, -1, -1, -1, -1, -1, 1095, -1, -1, 1262, -1, -1, 428, -1, 834, 1483, 1484, 1270, 1271, 1272, 627, -1, -1, -1, 594, 632, -1, -1, 1281, 1282, -1, -1, -1, -1, 248, -1, -1, -1, 157, 253, -1, -1, 1295, -1, -1, -1, -1, -1, -1, -1, 1455, -1, -1, 878, 879, 880, 881, 1462, 883, -1, 153, -1, -1, -1, -1, 1318, -1, -1, -1, 639, 640, 641, -1, -1, 899, -1, 1329, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, 657, 913, -1, 1032, 1033, 70, -1, 72, 73, 74, -1, -1, 218, -1, -1, -1, 81, 82, 675, 37, -1, -1, 729, 1515, -1, 719, -1, -1, -1, 686, -1, -1, -1, -1, -1, 692, -1, -1, 218, 733, 952, -1, 107, -1, -1, -1, 347, 65, -1, -1, 256, -1, 70, -1, 260, -1, 74, -1, -1, -1, 674, 1090, 1091, 81, 82, -1, 1406, 774, 248, 683, 276, 728, -1, 687, 731, -1, -1, -1, -1, 991, -1, 0, -1, -1, -1, -1, 998, -1, -1, 107, 593, 1003, 1432, -1, -1, -1, 1008, -1, 1010, 117, -1, -1, 1014, 1015, 1016, -1, -1, 1019, -1, -1, 767, -1, 31, 414, 821, 1455, 1028, -1, -1, -1, -1, -1, 1462, 626, -1, 1032, 1033, -1, 429, -1, -1, -1, 826, 434, 1046, 1047, -1, -1, -1, 642, 346, 442, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, 809, 656, -1, -1, -1, -1, -1, -1, -1, 1073, 819, -1, 1076, 822, -1, 468, -1, -1, 827, -1, 829, -1, -1, 1515, -1, 834, -1, -1, -1, -1, 1522, 1090, 1091, 486, 3, 488, 70, -1, 72, 73, 74, 10, 11, 12, 13, 14, -1, 81, 82, -1, 1114, -1, -1, -1, -1, -1, 1120, 1121, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1131, 37, 427, -1, -1, 1136, 107, -1, 1139, 529, 1141, -1, -1, 1144, 1262, 153, 117, -1, 0, 444, 896, -1, 1270, 1271, 1272, -1, 1157, -1, -1, 65, 429, 753, -1, -1, -1, -1, -1, -1, -1, 1170, -1, 1172, 1173, 1174, 1175, -1, -1, -1, -1, 31, -1, -1, 477, -1, -1, -1, -1, 1188, -1, 1190, -1, -1, -1, 1194, -1, -1, -1, -1, -1, 1464, 1318, 1466, -1, -1, 594, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, 920, 1014, 488, -1, 3, 1223, 1224, -1, -1, -1, -1, 10, 11, 12, 13, 14, 979, 1017, 1231, 1501, -1, 1503, -1, 248, 186, -1, -1, -1, 253, -1, -1, 193, 639, 640, 641, -1, -1, -1, 37, -1, -1, -1, 1055, 529, -1, -1, -1, -1, -1, 1262, 657, -1, -1, -1, -1, 1273, 1274, 1270, 1271, 1272, -1, -1, -1, -1, -1, 1283, 65, -1, 675, 1032, 1033, -1, 1035, 1036, -1, -1, -1, -1, -1, 686, -1, -1, -1, -1, 153, 692, -1, 599, -1, -1, -1, -1, 1055, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 265, -1, 1318, -1, -1, 594, 918, -1, -1, -1, -1, -1, 627, -1, 1335, -1, -1, 632, 728, 347, -1, 731, -1, -1, 1090, 1091, 1347, -1, 1349, 1350, 1351, -1, -1, 70, -1, 72, 73, 74, -1, -1, 1361, -1, -1, 1066, 81, 82, -1, -1, -1, 1370, 639, 640, 641, -1, 1170, 320, -1, 767, -1, -1, -1, -1, -1, 328, -1, 1386, 331, -1, 657, -1, 107, -1, 109, -1, -1, -1, 248, -1, -1, -1, 117, 253, -1, -1, -1, -1, 414, 1153, -1, -1, -1, -1, 1195, -1, -1, -1, -1, -1, -1, 809, -1, 429, -1, -1, 719, -1, 434, -1, -1, 819, -1, -1, 822, -1, 442, -1, -1, 827, 733, 829, -1, 1442, 1443, -1, 834, -1, -1, -1, -1, 394, 1196, -1, -1, 398, 1455, -1, -1, -1, 753, -1, 468, 1462, 731, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1218, -1, -1, -1, -1, -1, 486, -1, 488, -1, -1, -1, -1, 1231, -1, 1233, -1, -1, -1, -1, -1, -1, 1495, 347, -1, -1, 1499, -1, -1, -1, -1, -1, -1, -1, 896, 1290, -1, -1, -1, -1, -1, -1, -1, -1, 1262, -1, -1, -1, -1, 529, -1, -1, 1270, 1271, 1272, 1528, -1, 1530, -1, 826, -1, -1, -1, 1281, 1282, -1, 483, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 1295, -1, -1, -1, 822, -1, -1, -1, 1558, 1559, -1, 829, -1, 414, -1, -1, 1566, 1567, 37, -1, -1, -1, -1, 1318, -1, -1, -1, -1, 429, -1, -1, -1, -1, 434, -1, -1, -1, 594, -1, -1, 979, 442, -1, -1, -1, -1, 65, -1, -1, -1, -1, 70, 1304, 72, 73, 74, -1, -1, -1, -1, -1, -1, 81, 82, -1, -1, -1, 468, -1, -1, -1, -1, 1213, -1, -1, -1, -1, -1, 896, -1, 574, 575, 639, 640, 641, 486, -1, 488, 107, -1, 109, -1, -1, 1032, 1033, -1, 1035, 1036, 117, -1, 657, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1406, -1, -1, -1, -1, 1055, -1, 675, -1, -1, -1, -1, -1, -1, -1, -1, -1, 529, 686, -1, -1, -1, -1, -1, 692, 10, 11, 12, 13, 14, -1, -1, -1, -1, 963, -1, -1, -1, -1, -1, 1090, 1091, -1, 25, 26, 27, -1, -1, -1, 1455, 979, -1, 37, -1, -1, -1, 1462, 662, -1, -1, 728, 666, 1017, 731, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, -1, -1, -1, -1, -1, -1, 65, -1, 594, -1, -1, 70, -1, 72, 73, 74, -1, -1, -1, -1, 699, -1, 81, 82, 129, 767, 1463, -1, 1465, 1153, -1, -1, 1035, 1036, -1, 1515, -1, -1, -1, -1, 96, -1, 98, -1, -1, -1, -1, -1, 107, -1, 109, -1, 1055, 639, 640, 641, -1, -1, 117, -1, -1, -1, 1388, 1500, -1, 1502, 122, 809, -1, -1, -1, 657, 1196, -1, -1, -1, -1, 819, -1, -1, 822, -1, -1, -1, -1, 827, -1, 829, -1, 675, -1, -1, 834, -1, 1218, -1, -1, -1, -1, -1, 686, 10, 11, 12, 13, 14, 692, 1231, 1545, 1233, 1547, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, 178, 1560, 1561, -1, -1, -1, 37, -1, 186, -1, 188, 189, 813, -1, -1, 193, 1262, 195, 196, 37, 728, -1, -1, 731, 1270, 1271, 1272, -1, -1, 25, 26, 27, 896, -1, 65, 1281, 1282, -1, -1, 70, -1, 72, 73, 74, 1195, -1, -1, 65, -1, 1295, 81, 82, 70, -1, 72, 73, 74, -1, -1, 767, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, 1195, 1196, 1318, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 265, -1, 107, -1, -1, -1, 1218, -1, -1, -1, -1, -1, 117, 96, 809, 98, -1, -1, -1, -1, -1, 63, -1, -1, 819, 1237, -1, 822, 979, -1, -1, 73, 827, 75, 829, 77, -1, 44, 926, 834, -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1290, -1, -1, -1, 63, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, 1281, 1282, -1, 114, 1406, 116, 117, 118, -1, 1290, -1, -1, 1032, 1033, 1295, 1035, 1036, -1, -1, -1, -1, 37, -1, -1, -1, -1, 178, -1, -1, -1, -1, -1, 896, 109, -1, 1055, 188, 189, 114, -1, -1, 193, -1, 195, 196, -1, 157, 1004, 1329, 65, -1, -1, -1, 1455, 70, -1, 72, 73, 74, -1, 1462, -1, -1, 1020, -1, 81, 82, 143, -1, -1, 1090, 1091, -1, -1, -1, -1, -1, 153, -1, -1, -1, 157, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, 218, -1, 220, 221, 222, -1, 1515, -1, 979, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1406, -1, -1, -1, -1, 206, -1, -1, 1153, -1, -1, -1, -1, -1, -1, 1097, -1, 218, -1, -1, 256, -1, -1, -1, 260, -1, 1432, -1, -1, -1, -1, -1, -1, -1, -1, 236, 237, -1, -1, -1, 276, -1, -1, 1032, 1033, -1, 1035, 1036, -1, 1455, -1, 1196, -1, -1, -1, -1, 1462, -1, -1, 260, -1, -1, -1, -1, -1, -1, 1055, 268, -1, -1, -1, -1, -1, 1218, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1231, -1, 1233, 325, 291, -1, -1, 294, -1, -1, -1, -1, -1, -1, -1, 1090, 1091, -1, -1, -1, -1, -1, -1, 1515, 346, -1, -1, -1, -1, 351, 352, 1262, -1, 578, 579, -1, -1, 359, -1, 1270, 1271, 1272, -1, -1, -1, -1, -1, -1, -1, -1, 1281, 1282, -1, -1, 341, -1, -1, -1, -1, 346, -1, -1, -1, 608, 1295, -1, 611, 612, 36, 614, 38, 616, 617, -1, -1, -1, 621, 622, 1153, -1, 402, -1, -1, -1, -1, -1, -1, 1318, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, 420, -1, -1, -1, 70, 425, -1, 427, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, 1196, 444, -1, 92, 447, 448, -1, -1, -1, -1, -1, -1, -1, -1, 422, 423, -1, -1, 107, -1, 463, 429, 1218, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 699, 477, 1231, -1, 1233, 704, 705, -1, 484, 450, -1, 710, 453, -1, -1, -1, -1, -1, 459, -1, -1, 1406, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1262, -1, -1, -1, -1, -1, -1, -1, 1270, 1271, 1272, -1, 486, -1, -1, -1, -1, -1, -1, 1281, 1282, -1, -1, -1, 498, -1, -1, -1, 578, 579, -1, -1, 43, 1295, -1, -1, 510, 1455, -1, -1, 514, -1, 516, 517, 1462, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 529, 1318, -1, 608, -1, -1, 611, 612, -1, 614, -1, 616, 617, -1, -1, -1, 621, 622, -1, -1, -1, -1, -1, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 599, -1, -1, -1, -1, -1, -1, 1515, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 582, -1, -1, -1, -1, -1, -1, -1, -1, -1, 627, -1, 594, -1, 596, 632, -1, 599, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 154, 1406, 29, 30, 31, -1, -1, -1, 625, -1, 37, 704, 705, 630, 168, -1, -1, 710, -1, -1, -1, -1, 639, 640, 641, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, 65, -1, 657, -1, -1, 70, -1, 72, 73, 74, -1, -1, 1455, 205, -1, -1, 81, 82, -1, 1462, -1, -1, 214, -1, -1, -1, -1, -1, -1, 719, -1, -1, 224, -1, -1, -1, -1, 692, -1, -1, -1, -1, 107, 733, 109, -1, 36, -1, 38, -1, -1, -1, 117, -1, -1, -1, -1, 249, 713, -1, -1, -1, 254, 753, -1, -1, -1, -1, -1, -1, -1, -1, 1515, -1, 64, 267, 731, -1, 733, -1, 70, 273, -1, 275, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, 292, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, 767, -1, -1, -1, -1, 107, -1, 109, -1, -1, 112, 813, -1, -1, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, 826, -1, -1, -1, -1, -1, -1, 335, -1, -1, -1, -1, 340, -1, -1, -1, -1, -1, -1, 845, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 822, -1, -1, -1, 826, -1, -1, 829, -1, 368, -1, -1, 1092, 372, 373, -1, 375, -1, -1, -1, -1, -1, -1, 382, 383, -1, 385, 386, -1, 388, -1, 390, -1, -1, -1, -1, -1, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, 407, -1, -1, -1, -1, -1, -1, -1, 415, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, 932, -1, -1, -1, -1, -1, 440, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, 64, 65, -1, -1, 922, 958, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, 474, 84, 85, -1, -1, -1, 480, -1, -1, 92, -1, 485, -1, 985, -1, -1, -1, -1, -1, -1, 1215, -1, -1, -1, 107, -1, 109, 964, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, -1, -1, -1, 979, -1, -1, 1017, -1, 521, -1, -1, -1, -1, -1, -1, -1, -1, 1028, -1, -1, -1, -1, -1, -1, 537, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1014, -1, 1092, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, 1035, 1036, 574, -1, -1, -1, -1, -1, -1, -1, 143, 583, -1, 36, 37, 38, -1, -1, 590, -1, 153, -1, -1, 595, -1, -1, -1, -1, -1, -1, -1, -1, 165, 166, 606, -1, -1, -1, -1, 1109, -1, 64, 65, -1, -1, -1, -1, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, 1095, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, 647, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, 236, 1215, -1, -1, -1, -1, -1, 682, -1, 152, 153, -1, -1, -1, -1, 1153, -1, -1, -1, -1, -1, -1, 1195, -1, -1, 261, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 186, -1, 29, 30, 31, -1, -1, 193, -1, -1, 37, -1, -1, -1, 1195, -1, -1, -1, -1, 737, -1, -1, -1, -1, -1, -1, -1, -1, -1, 747, 748, -1, -1, -1, -1, -1, -1, -1, 65, -1, -1, -1, 760, 70, -1, 72, 73, 74, -1, -1, -1, -1, 1233, -1, 81, 82, -1, -1, -1, 777, -1, 779, -1, -1, -1, 783, -1, -1, -1, -1, -1, -1, -1, -1, 1290, -1, -1, -1, -1, 265, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, 376, -1, -1, 1281, 1282, -1, -1, -1, -1, -1, -1, -1, 1290, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, -1, -1, -1, 849, -1, -1, 320, -1, -1, -1, 856, -1, -1, -1, 328, 329, -1, 331, 332, -1, 64, -1, -1, 869, -1, 871, 70, 341, 72, 73, 74, 345, -1, 77, 78, 79, 80, 81, 82, 885, 84, 85, -1, -1, -1, -1, 892, -1, 92, -1, 364, -1, -1, 367, -1, -1, -1, -1, 904, -1, -1, 907, -1, 107, -1, 109, -1, 111, 112, -1, -1, 478, 116, 117, 118, 119, 120, 121, -1, 925, 394, -1, -1, -1, 398, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1406, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 516, -1, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, 529, -1, -1, -1, -1, -1, -1, 536, -1, -1, 539, -1, -1, -1, -1, -1, 452, -1, -1, -1, -1, 550, 551, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1464, -1, 1466, -1, -1, -1, -1, -1, -1, -1, 572, -1, 1013, -1, 483, -1, -1, 486, -1, -1, 582, -1, -1, -1, -1, -1, -1, 589, -1, -1, -1, -1, 594, -1, -1, -1, -1, 1501, -1, 1503, -1, -1, -1, -1, -1, -1, -1, 1546, -1, -1, -1, -1, -1, -1, -1, -1, 525, -1, -1, 528, 529, -1, -1, -1, -1, -1, -1, 1531, 1069, -1, -1, -1, -1, -1, -1, 1076, -1, -1, -1, -1, -1, -1, 644, -1, -1, -1, -1, -1, -1, -1, 652, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1105, 574, 575, -1, -1, 1110, -1, -1, -1, -1, -1, -1, -1, 1118, -1, -1, -1, -1, -1, -1, 593, 594, -1, 596, -1, -1, 692, -1, -1, -1, -1, -1, 605, -1, 607, 608, -1, -1, -1, -1, -1, 614, -1, 1148, -1, -1, -1, -1, -1, -1, -1, 624, 625, -1, -1, 1160, -1, 630, 1163, -1, 1165, -1, -1, -1, -1, -1, 639, 640, 641, -1, -1, -1, -1, -1, 1179, 1180, -1, -1, -1, -1, -1, -1, -1, -1, 657, -1, -1, -1, -1, 662, 663, -1, -1, 666, 667, -1, 1201, -1, -1, -1, 673, 767, -1, 769, -1, -1, -1, -1, -1, 775, -1, -1, -1, -1, -1, -1, 782, -1, 691, 692, 693, -1, 695, 1228, -1, -1, 699, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 38, -1, 731, 732, 826, 827, -1, 829, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 844, -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, 766, 767, -1, -1, -1, 771, 772, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, 1324, -1, 1326, 888, -1, -1, -1, -1, 109, -1, -1, -1, 113, -1, -1, 1339, 117, 1341, -1, -1, -1, 813, -1, -1, -1, -1, -1, -1, -1, -1, 822, -1, -1, -1, -1, 1359, 828, 829, -1, -1, -1, 833, -1, 835, -1, -1, -1, 279, 280, 281, -1, 1375, 1376, 845, -1, -1, 288, 289, -1, -1, -1, 293, 294, 1387, -1, -1, 1390, -1, -1, -1, -1, -1, -1, 305, -1, -1, -1, -1, -1, 964, -1, -1, -1, -1, -1, -1, -1, -1, 1412, -1, -1, -1, -1, -1, 979, 980, -1, 1421, -1, -1, 1424, 986, 1426, 1427, 1428, -1, -1, 992, -1, 341, 995, -1, 997, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 918, -1, -1, -1, -1, -1, 1017, -1, 926, -1, -1, -1, -1, -1, 932, -1, -1, 1028, 1468, 377, 1470, -1, 940, 1473, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 953, 954, -1, 1488, 1050, -1, 1052, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1067, 1068, -1, -1, -1, 979, -1, -1, -1, -1, -1, 985, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1088, -1, -1, -1, -1, -1, -1, -1, -1, 1004, 1005, 36, -1, 38, -1, -1, -1, -1, -1, 1014, -1, -1, -1, -1, -1, 1020, 1021, -1, 1023, 1024, 1025, -1, -1, -1, -1, -1, -1, -1, -1, 64, 1035, 1036, -1, -1, -1, 70, 1134, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, 1153, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1168, 1169, 107, -1, 109, -1, -1, -1, -1, -1, 115, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, 1096, 1097, 1098, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1109, -1, -1, -1, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1153, -1, 1248, 596, 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, -1, -1, 29, 30, 31, 32, -1, -1, 35, -1, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 1213, -1, -1, 1309, -1, 1311, 62, -1, -1, 65, 37, 67, -1, 69, 70, -1, 72, 73, 74, -1, 1233, -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, -1, 694, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, 716, -1, -1, -1, -1, 1281, 1282, -1, -1, -1, -1, -1, -1, 729, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1397, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 774, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 806, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, -1, -1, -1, -1, 821, -1, -1, -1, -1, 1479, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, 65, -1, 67, 1406, 69, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, -1, -1, 1531, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, -1, -1, -1, -1, 130, -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, 1496, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 1521, 1522, 29, 30, 31, -1, -1, -1, -1, -1, 37, 972, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1546, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, 67, 1002, 69, -1, -1, 72, 73, -1, -1, -1, -1, -1, -1, 1014, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, 112, 35, 36, 37, 38, 39, -1, 41, -1, 1055, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, 55, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, 112, -1, -1, 1127, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, 126, -1, -1, -1, 130, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 1170, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, -1, -1, -1, 1184, 1185, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 64, 65, -1, 67, -1, 69, 70, 37, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, 76, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, -1, 64, 65, 37, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, 65, -1, -1, -1, -1, 70, -1, 72, 73, 74, -1, 76, -1, 107, -1, 109, 81, 82, -1, -1, 114, -1, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1393, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, 1410, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, 64, 65, 37, 67, -1, 69, 70, -1, 72, 73, 74, 1483, 1484, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, 114, -1, 116, 117, 118, 119, 120, 121, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 117, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, 64, 65, 37, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, 114, -1, 116, 117, 118, 119, 120, 121, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 117, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 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, 64, 65, 37, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, 65, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 76, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, 33, 34, 64, 65, 37, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, 64, 65, 37, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, 65, -1, -1, -1, -1, 70, -1, 72, 73, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, 64, 65, 37, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, -1, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 62, -1, -1, 65, 37, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, 113, -1, -1, -1, 117, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, -1, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, 65, -1, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -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, 65, -1, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, 32, -1, -1, 35, -1, 37, -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, 65, -1, 67, -1, 69, -1, -1, 72, 73, -1, -1, 76, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, 109, 35, -1, 37, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, 67, -1, 69, -1, -1, 72, 73, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, 67, -1, 69, -1, -1, 72, 73, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -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, 65, -1, 67, -1, 69, -1, -1, 72, 73, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 108, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, 67, -1, 69, -1, -1, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 65, -1, 67, -1, 69, 37, -1, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 65, -1, -1, -1, -1, 70, -1, 72, 73, 74, -1, 109, -1, -1, -1, -1, 81, 82, -1, 117, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 109, 29, 30, 31, -1, -1, -1, -1, 117, 37, -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, 65, -1, 67, -1, 69, -1, -1, 72, 73, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, 67, -1, 69, -1, -1, 72, 73, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, 67, -1, 69, -1, -1, 72, 73, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, 67, -1, 69, -1, -1, 72, 73, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, 65, -1, -1, -1, -1, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, 112, -1, -1, -1, 116, 117, 118, 119, 120, 121, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, 64, 65, -1, 37, -1, -1, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, 65, -1, -1, -1, -1, 70, -1, 72, 73, 74, -1, 76, 107, -1, 109, 110, 81, 82, -1, -1, -1, 116, 117, 118, 119, 120, 121, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 109, -1, 29, 30, 31, -1, -1, -1, 117, 36, 37, 38, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, 64, 65, -1, 37, -1, -1, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, 76, 107, 108, 109, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 109, -1, 29, 30, 31, -1, -1, -1, 117, 36, 37, 38, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, 64, 65, -1, 37, -1, -1, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, 65, -1, -1, -1, -1, 70, -1, 72, 73, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 109, -1, 29, 30, 31, -1, -1, -1, 117, 36, 37, 38, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, 64, 65, -1, 37, 38, -1, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 109, -1, 29, 30, 31, -1, -1, -1, 117, 36, 37, 38, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, 64, 65, -1, 37, -1, -1, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 109, -1, 29, 30, 31, -1, -1, -1, 117, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, 64, 65, 37, -1, -1, -1, 70, -1, 72, 73, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, 65, -1, -1, -1, -1, 70, -1, 72, 73, 74, -1, -1, -1, 107, -1, 109, 81, 82, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, -1, -1, 65, 37, -1, -1, -1, 70, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, 81, 82, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, 76, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 65, 37, 38, -1, -1, -1, -1, 72, 73, -1, -1, 76, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 65, -1, 29, 30, 31, -1, -1, 72, 73, -1, 37, 38, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, 109, 72, 73, -1, 113, -1, -1, -1, 117, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, 109, -1, -1, -1, 113, -1, -1, -1, 117, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 65, -1, 29, 30, 31, -1, -1, 72, 73, -1, 37, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 65, 37, -1, -1, 107, -1, 109, 72, 73, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 109, 29, 30, 31, -1, -1, -1, -1, 117, 37, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 65, 37, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 65, -1, 29, 30, 31, -1, -1, 72, 73, -1, 37, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, 109, 72, 73, -1, -1, -1, -1, -1, 117, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 65, -1, 29, 30, 31, -1, -1, 72, 73, -1, 37, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 65, 37, -1, -1, -1, -1, 109, 72, 73, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 109, 29, 30, 31, -1, -1, -1, -1, 117, 37, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 65, 37, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, 36, -1, 38, 39, -1, 41, -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, 55, -1, -1, -1, 59, 60, 65, 62, 67, 64, 69, -1, -1, 72, 73, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, -1, 107, -1, 109, -1, -1, 112, -1, -1, -1, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, 126, -1, -1, 36, 130, 38, 39, -1, 41, -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, 55, -1, -1, -1, 59, 60, -1, 62, -1, 64, -1, -1, -1, -1, -1, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, 112, -1, -1, -1, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, 126, -1, -1, 36, 130, 38, 39, -1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, 55, -1, -1, -1, 59, 60, -1, 62, -1, 64, -1, -1, -1, -1, -1, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, 112, -1, -1, -1, 116, 117, 118, 119, 120, 121, 36, -1, 38, 39, 126, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, 55, -1, -1, -1, 59, 60, -1, 62, -1, 64, -1, -1, -1, -1, -1, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, 112, -1, -1, -1, 116, 117, 118, 119, 120, 121, 36, -1, 38, 39, 126, 41, -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, 55, -1, -1, -1, 59, 60, -1, 62, -1, 64, -1, -1, -1, -1, -1, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, 109, -1, -1, 112, -1, -1, -1, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, 126, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, 65, -1, 67, 64, 69, -1, -1, 72, 73, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, 64, 84, 85, -1, -1, -1, 70, 94, -1, 92, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, 107, -1, 109, -1, 92, -1, 36, 114, 38, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, 107, -1, 109, -1, -1, 112, 36, -1, 38, 116, 117, 118, 119, 120, 121, 64, -1, -1, -1, -1, -1, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, 64, 84, 85, -1, -1, -1, 70, -1, -1, 92, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, 107, -1, 109, -1, 92, -1, 36, -1, 38, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, 36, -1, 38, 116, 117, 118, 119, 120, 121, 64, -1, -1, -1, -1, -1, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, 64, 84, 85, -1, -1, -1, 70, -1, -1, 92, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, 107, -1, 109, -1, 92, -1, 36, -1, 38, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, 107, -1, 109, -1, -1, -1, 36, -1, 38, 116, 117, 118, 119, 120, 121, 64, -1, -1, -1, -1, -1, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, 64, 84, 85, -1, -1, -1, 70, -1, -1, 92, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, 107, -1, -1, -1, 92, -1, 36, -1, 38, 116, 117, 118, 119, 120, 121, -1, -1, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 64, -1, -1, -1, -1, -1, 70, -1, -1, -1, 74, -1, -1, 77, 78, 79, 80, 81, 82, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, -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, 65, -1, 67, -1, 69, 70, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, 81, 82, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -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, 65, -1, 67, -1, 69, -1, -1, 72, 73, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -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, 65, -1, 67, -1, 69, -1, -1, 72, 73, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -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, 65, -1, 67, -1, 69, -1, -1, 72, 73 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 35, 37, 38, 62, 65, 67, 69, 70, 72, 73, 74, 81, 82, 107, 109, 117, 135, 138, 195, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 228, 229, 230, 231, 232, 233, 234, 235, 237, 238, 239, 240, 241, 242, 243, 251, 252, 278, 279, 280, 288, 291, 297, 298, 300, 302, 303, 309, 314, 318, 319, 320, 321, 322, 323, 324, 325, 345, 362, 363, 364, 365, 70, 117, 137, 212, 214, 222, 224, 234, 238, 240, 279, 80, 107, 307, 308, 309, 307, 307, 70, 72, 73, 74, 136, 137, 268, 269, 289, 290, 72, 73, 269, 107, 300, 11, 196, 107, 117, 314, 319, 320, 321, 323, 324, 325, 110, 132, 109, 215, 222, 224, 318, 322, 361, 362, 365, 366, 133, 105, 129, 272, 112, 133, 170, 72, 73, 135, 267, 133, 133, 133, 114, 133, 72, 73, 107, 117, 304, 313, 314, 315, 316, 317, 318, 322, 326, 327, 328, 329, 330, 336, 3, 27, 76, 236, 3, 5, 72, 109, 117, 214, 225, 229, 232, 241, 280, 318, 322, 365, 212, 214, 224, 234, 238, 240, 279, 318, 322, 32, 230, 230, 225, 232, 133, 230, 225, 230, 225, 73, 107, 112, 269, 280, 112, 269, 230, 225, 114, 133, 133, 0, 132, 107, 170, 307, 307, 132, 109, 222, 224, 363, 267, 267, 224, 129, 107, 117, 304, 314, 318, 109, 117, 365, 301, 227, 309, 107, 285, 107, 107, 49, 107, 36, 38, 64, 70, 74, 77, 78, 79, 80, 84, 85, 92, 107, 109, 116, 117, 118, 119, 120, 121, 134, 138, 139, 140, 141, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 163, 222, 271, 287, 361, 366, 224, 108, 108, 108, 108, 108, 108, 108, 72, 73, 109, 222, 267, 345, 363, 109, 117, 161, 214, 215, 221, 224, 228, 229, 234, 237, 238, 240, 257, 258, 262, 263, 264, 265, 279, 345, 357, 358, 359, 360, 365, 366, 110, 107, 318, 322, 365, 107, 114, 130, 109, 112, 117, 161, 273, 273, 113, 132, 114, 130, 107, 114, 130, 114, 130, 114, 130, 307, 130, 314, 315, 316, 317, 327, 328, 329, 330, 224, 313, 326, 62, 306, 109, 307, 344, 345, 307, 307, 170, 132, 107, 307, 344, 307, 307, 224, 304, 107, 107, 223, 224, 222, 224, 110, 132, 222, 361, 366, 170, 132, 267, 272, 214, 229, 318, 322, 170, 132, 289, 224, 234, 130, 224, 224, 287, 38, 109, 222, 244, 245, 246, 247, 361, 365, 112, 253, 269, 112, 224, 289, 130, 130, 300, 132, 137, 266, 3, 133, 204, 205, 219, 221, 224, 132, 306, 107, 306, 161, 314, 224, 107, 132, 267, 112, 32, 33, 34, 222, 281, 282, 284, 132, 127, 129, 286, 132, 225, 231, 232, 267, 310, 311, 312, 107, 139, 107, 146, 146, 148, 107, 146, 107, 107, 146, 146, 137, 109, 161, 166, 170, 222, 270, 361, 110, 132, 148, 148, 80, 83, 84, 85, 107, 109, 111, 112, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 129, 165, 148, 117, 122, 123, 119, 120, 86, 87, 88, 89, 124, 125, 90, 91, 118, 126, 127, 92, 93, 128, 129, 368, 107, 117, 340, 341, 342, 343, 344, 108, 114, 107, 344, 345, 107, 344, 345, 132, 107, 222, 363, 110, 132, 109, 117, 133, 222, 224, 356, 357, 365, 366, 133, 107, 109, 117, 314, 331, 332, 333, 334, 335, 336, 337, 338, 339, 345, 346, 347, 348, 349, 350, 351, 117, 365, 224, 133, 133, 117, 222, 224, 358, 267, 222, 345, 358, 267, 107, 132, 132, 132, 110, 132, 70, 78, 109, 111, 269, 273, 274, 275, 276, 277, 132, 132, 132, 132, 132, 132, 304, 108, 108, 108, 108, 108, 108, 108, 313, 326, 107, 272, 110, 204, 132, 304, 166, 271, 166, 271, 304, 109, 204, 306, 170, 132, 204, 108, 246, 247, 110, 132, 107, 115, 117, 248, 250, 313, 314, 326, 344, 352, 353, 354, 355, 113, 245, 114, 130, 114, 130, 269, 244, 114, 367, 129, 254, 253, 224, 259, 260, 261, 264, 265, 108, 114, 170, 132, 117, 161, 132, 221, 224, 258, 357, 365, 298, 299, 107, 117, 331, 108, 114, 368, 269, 281, 107, 112, 269, 271, 281, 108, 114, 107, 139, 108, 115, 270, 270, 109, 137, 143, 161, 271, 270, 110, 132, 108, 114, 108, 107, 117, 352, 108, 114, 161, 109, 137, 109, 142, 143, 132, 109, 137, 142, 161, 161, 148, 148, 148, 149, 149, 150, 150, 151, 151, 151, 151, 152, 152, 153, 154, 155, 156, 157, 115, 166, 161, 132, 341, 342, 343, 224, 340, 307, 307, 161, 271, 132, 266, 117, 132, 222, 345, 358, 224, 228, 110, 132, 110, 365, 110, 107, 132, 314, 332, 333, 334, 337, 347, 348, 349, 110, 132, 224, 331, 335, 346, 107, 307, 350, 368, 307, 307, 368, 107, 307, 350, 307, 307, 307, 307, 345, 222, 356, 366, 267, 110, 114, 110, 114, 368, 222, 358, 368, 255, 256, 257, 258, 255, 255, 267, 161, 132, 109, 269, 115, 114, 367, 273, 78, 109, 115, 277, 28, 206, 207, 267, 255, 137, 304, 137, 306, 107, 344, 345, 107, 344, 345, 139, 345, 170, 259, 108, 108, 108, 108, 110, 170, 204, 170, 112, 130, 130, 109, 314, 353, 354, 355, 159, 160, 224, 352, 249, 250, 249, 307, 307, 269, 307, 113, 269, 113, 160, 367, 133, 133, 137, 219, 133, 133, 255, 107, 117, 365, 133, 113, 224, 282, 283, 133, 132, 132, 107, 133, 108, 311, 166, 167, 115, 130, 109, 139, 197, 198, 199, 108, 108, 132, 115, 108, 108, 108, 161, 224, 112, 148, 163, 161, 162, 164, 114, 133, 132, 132, 108, 114, 161, 132, 113, 159, 115, 259, 108, 108, 108, 340, 259, 108, 255, 222, 358, 109, 117, 161, 161, 224, 337, 259, 108, 108, 108, 108, 108, 108, 108, 7, 224, 331, 335, 346, 132, 132, 368, 132, 132, 108, 133, 133, 133, 133, 272, 133, 159, 160, 161, 305, 132, 273, 275, 113, 132, 208, 269, 38, 39, 41, 44, 45, 46, 47, 48, 49, 50, 51, 55, 59, 60, 109, 126, 137, 167, 168, 169, 170, 171, 172, 174, 175, 187, 189, 190, 195, 209, 303, 28, 133, 129, 272, 132, 132, 108, 133, 170, 244, 110, 108, 108, 108, 352, 248, 254, 113, 108, 114, 110, 110, 133, 224, 114, 368, 285, 108, 281, 212, 214, 222, 293, 294, 295, 296, 287, 108, 108, 115, 160, 107, 108, 115, 114, 161, 161, 274, 114, 133, 164, 110, 137, 144, 145, 161, 143, 133, 144, 159, 163, 133, 107, 344, 345, 133, 133, 132, 133, 133, 133, 161, 108, 133, 107, 344, 345, 107, 350, 107, 350, 345, 223, 7, 117, 133, 161, 259, 259, 258, 262, 262, 263, 114, 114, 108, 108, 110, 94, 121, 133, 133, 144, 273, 161, 114, 130, 209, 213, 224, 228, 107, 107, 168, 107, 107, 130, 137, 130, 137, 117, 137, 167, 107, 170, 162, 162, 110, 141, 115, 130, 133, 132, 133, 208, 108, 161, 259, 259, 307, 108, 113, 107, 344, 345, 132, 108, 132, 133, 304, 113, 132, 133, 133, 108, 112, 197, 110, 160, 130, 197, 199, 114, 133, 367, 162, 110, 133, 83, 111, 114, 133, 133, 110, 133, 108, 132, 108, 108, 110, 110, 110, 133, 108, 132, 132, 132, 161, 161, 133, 110, 133, 133, 133, 133, 132, 132, 160, 160, 110, 110, 133, 133, 269, 224, 166, 166, 45, 166, 132, 130, 130, 166, 130, 130, 166, 56, 57, 58, 191, 192, 193, 130, 61, 130, 112, 307, 172, 113, 130, 133, 133, 132, 94, 264, 265, 108, 294, 114, 130, 114, 130, 113, 292, 115, 139, 108, 108, 115, 164, 110, 113, 110, 109, 145, 109, 145, 145, 110, 110, 110, 259, 110, 259, 259, 259, 133, 133, 110, 110, 108, 108, 110, 114, 94, 258, 94, 133, 110, 110, 108, 108, 107, 108, 167, 188, 209, 130, 108, 107, 107, 170, 193, 56, 57, 161, 142, 168, 108, 108, 259, 112, 132, 132, 293, 139, 200, 107, 130, 200, 133, 115, 132, 132, 133, 133, 133, 133, 110, 110, 132, 133, 110, 168, 42, 43, 112, 178, 179, 180, 166, 168, 133, 108, 167, 112, 180, 94, 132, 94, 132, 107, 107, 130, 113, 133, 132, 267, 304, 113, 114, 115, 160, 108, 110, 161, 144, 144, 108, 108, 108, 108, 262, 40, 160, 176, 177, 305, 115, 132, 168, 178, 108, 130, 168, 130, 132, 108, 132, 108, 132, 94, 132, 94, 132, 130, 108, 293, 139, 137, 201, 108, 130, 115, 133, 133, 168, 94, 114, 115, 133, 202, 203, 209, 130, 167, 167, 202, 170, 194, 222, 361, 170, 194, 108, 132, 108, 132, 113, 108, 114, 161, 110, 110, 160, 176, 179, 181, 182, 132, 130, 179, 183, 184, 133, 107, 117, 304, 352, 137, 133, 170, 194, 170, 194, 107, 130, 137, 168, 173, 113, 179, 209, 167, 54, 173, 186, 113, 179, 108, 224, 108, 133, 133, 287, 168, 173, 130, 185, 186, 173, 186, 170, 170, 108, 108, 108, 185, 133, 133, 170, 170, 133, 133 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. However, YYFAIL appears to be in use. Nevertheless, it is formally deprecated in Bison 2.4.2's NEWS entry, where a plan to phase it out is discussed. */ #define YYFAIL goto yyerrlab #if defined YYFAIL /* This is here to suppress warnings from the GCC cpp's -Wunused-macros. Normally we don't worry about that warning, but some users do, and we want to make it easy for users to remove YYFAIL uses, which will produce warnings from Bison 2.5. */ #endif #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (1); \ goto yybackup; \ } \ else \ { \ yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (YYID (0)) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (YYID (N)) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (YYID (0)) #endif /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif /* YYLEX -- calling `yylex' with the right arguments. */ #ifdef YYLEX_PARAM # define YYLEX yylex (YYLEX_PARAM) #else # define YYLEX yylex () #endif /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (YYID (0)) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value); \ YYFPRINTF (stderr, "\n"); \ } \ } while (YYID (0)) /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_value_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # else YYUSE (yyoutput); # endif switch (yytype) { default: break; } } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (yytype < YYNTOKENS) YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); else YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) #else static void yy_stack_print (yybottom, yytop) yytype_int16 *yybottom; yytype_int16 *yytop; #endif { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (YYID (0)) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_reduce_print (YYSTYPE *yyvsp, int yyrule) #else static void yy_reduce_print (yyvsp, yyrule) YYSTYPE *yyvsp; int yyrule; #endif { int yynrhs = yyr2[yyrule]; int yyi; unsigned long int yylno = yyrline[yyrule]; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) ); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyvsp, Rule); \ } while (YYID (0)) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static YYSIZE_T yystrlen (const char *yystr) #else static YYSIZE_T yystrlen (yystr) const char *yystr; #endif { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static char * yystpcpy (char *yydest, const char *yysrc) #else static char * yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; #endif { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); YYSIZE_T yysize = yysize0; YYSIZE_T yysize1; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = 0; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - Assume YYFAIL is not used. It's too flawed to consider. See for details. YYERROR is fine as it does not invoke this function. - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; yysize1 = yysize + yytnamerr (0, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) #else static void yydestruct (yymsg, yytype, yyvaluep) const char *yymsg; int yytype; YYSTYPE *yyvaluep; #endif { YYUSE (yyvaluep); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); switch (yytype) { default: break; } } /* Prevent warnings from -Wmissing-prototypes. */ #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); #else int yyparse (); #endif #else /* ! YYPARSE_PARAM */ #if defined __STDC__ || defined __cplusplus int yyparse (void); #else int yyparse (); #endif #endif /* ! YYPARSE_PARAM */ /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; /*----------. | yyparse. | `----------*/ #ifdef YYPARSE_PARAM #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void *YYPARSE_PARAM) #else int yyparse (YYPARSE_PARAM) void *YYPARSE_PARAM; #endif #else /* ! YYPARSE_PARAM */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void) #else int yyparse () #endif #endif { int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: `yyss': related to states. `yyvs': related to semantic values. Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yytoken = 0; yyss = yyssa; yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: /* Line 1806 of yacc.c */ #line 290 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 296 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 305 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Integer, (yyvsp[(1) - (1)].tok) ); } break; case 5: /* Line 1806 of yacc.c */ #line 306 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Float, (yyvsp[(1) - (1)].tok) ); } break; case 6: /* Line 1806 of yacc.c */ #line 307 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Character, (yyvsp[(1) - (1)].tok) ); } break; case 15: /* Line 1806 of yacc.c */ #line 332 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::String, (yyvsp[(1) - (1)].tok) ); } break; case 16: /* Line 1806 of yacc.c */ #line 333 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (2)].constant)->appendstr( (yyvsp[(2) - (2)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 340 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 18: /* Line 1806 of yacc.c */ #line 342 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 19: /* Line 1806 of yacc.c */ #line 344 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 20: /* Line 1806 of yacc.c */ #line 346 "parser.yy" { (yyval.en) = new ValofExprNode( (yyvsp[(2) - (3)].sn) ); } break; case 22: /* Line 1806 of yacc.c */ #line 356 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Index ), (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ); } break; case 23: /* Line 1806 of yacc.c */ #line 358 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ); } break; case 24: /* Line 1806 of yacc.c */ #line 360 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 26: /* Line 1806 of yacc.c */ #line 363 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 28: /* Line 1806 of yacc.c */ #line 366 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::IncrPost ), (yyvsp[(1) - (2)].en) ); } break; case 29: /* Line 1806 of yacc.c */ #line 368 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::DecrPost ), (yyvsp[(1) - (2)].en) ); } break; case 30: /* Line 1806 of yacc.c */ #line 370 "parser.yy" { (yyval.en) = 0; } break; case 31: /* Line 1806 of yacc.c */ #line 372 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined (yyval.en) = new CompositeExprNode( new VarRefNode( fn ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_link( (yyvsp[(3) - (4)].en) ) ); } break; case 33: /* Line 1806 of yacc.c */ #line 381 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 34: /* Line 1806 of yacc.c */ #line 386 "parser.yy" { (yyval.en) = 0; } break; case 36: /* Line 1806 of yacc.c */ #line 389 "parser.yy" { (yyval.en) = (yyvsp[(3) - (3)].en)->set_argName( (yyvsp[(1) - (3)].tok) ); } break; case 37: /* Line 1806 of yacc.c */ #line 394 "parser.yy" { (yyval.en) = (yyvsp[(7) - (7)].en)->set_argName( (yyvsp[(3) - (7)].en) ); } break; case 38: /* Line 1806 of yacc.c */ #line 396 "parser.yy" { (yyval.en) = (yyvsp[(9) - (9)].en)->set_argName( new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (9)].en)->set_link( flattenCommas( (yyvsp[(5) - (9)].en) )))); } break; case 40: /* Line 1806 of yacc.c */ #line 401 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 41: /* Line 1806 of yacc.c */ #line 406 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 42: /* Line 1806 of yacc.c */ #line 408 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); } break; case 43: /* Line 1806 of yacc.c */ #line 410 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); } break; case 44: /* Line 1806 of yacc.c */ #line 412 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); } break; case 45: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); } break; case 47: /* Line 1806 of yacc.c */ #line 422 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 48: /* Line 1806 of yacc.c */ #line 424 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 49: /* Line 1806 of yacc.c */ #line 426 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Incr ), (yyvsp[(2) - (2)].en) ); } break; case 50: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Decr ), (yyvsp[(2) - (2)].en) ); } break; case 51: /* Line 1806 of yacc.c */ #line 430 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 52: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 53: /* Line 1806 of yacc.c */ #line 434 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neg ), (yyvsp[(2) - (2)].en) ); } break; case 54: /* Line 1806 of yacc.c */ #line 436 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PointTo ), (yyvsp[(2) - (2)].en) ); } break; case 55: /* Line 1806 of yacc.c */ #line 442 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), (yyvsp[(2) - (2)].en) ); } break; case 56: /* Line 1806 of yacc.c */ #line 444 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); } break; case 57: /* Line 1806 of yacc.c */ #line 446 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (1)].tok) )); } break; case 58: /* Line 1806 of yacc.c */ #line 448 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); } break; case 59: /* Line 1806 of yacc.c */ #line 450 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ); } break; case 60: /* Line 1806 of yacc.c */ #line 452 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), (yyvsp[(2) - (2)].en) ); } break; case 61: /* Line 1806 of yacc.c */ #line 454 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) ) ); } break; case 62: /* Line 1806 of yacc.c */ #line 456 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LabelAddress ), new VarRefNode( (yyvsp[(2) - (2)].tok), true ) ); } break; case 63: /* Line 1806 of yacc.c */ #line 460 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AddressOf ); } break; case 64: /* Line 1806 of yacc.c */ #line 461 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnPlus ); } break; case 65: /* Line 1806 of yacc.c */ #line 462 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnMinus ); } break; case 66: /* Line 1806 of yacc.c */ #line 463 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::BitNeg ); } break; case 68: /* Line 1806 of yacc.c */ #line 469 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); } break; case 69: /* Line 1806 of yacc.c */ #line 471 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); } break; case 71: /* Line 1806 of yacc.c */ #line 477 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mul ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 72: /* Line 1806 of yacc.c */ #line 479 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Div ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 73: /* Line 1806 of yacc.c */ #line 481 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mod ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 75: /* Line 1806 of yacc.c */ #line 487 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Plus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 76: /* Line 1806 of yacc.c */ #line 489 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Minus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 78: /* Line 1806 of yacc.c */ #line 495 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 79: /* Line 1806 of yacc.c */ #line 497 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::RShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 81: /* Line 1806 of yacc.c */ #line 503 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 82: /* Line 1806 of yacc.c */ #line 505 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 83: /* Line 1806 of yacc.c */ #line 507 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 84: /* Line 1806 of yacc.c */ #line 509 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 86: /* Line 1806 of yacc.c */ #line 515 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Eq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 87: /* Line 1806 of yacc.c */ #line 517 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 89: /* Line 1806 of yacc.c */ #line 523 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::BitAnd ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 91: /* Line 1806 of yacc.c */ #line 529 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Xor ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 93: /* Line 1806 of yacc.c */ #line 535 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::BitOr ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 95: /* Line 1806 of yacc.c */ #line 541 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::And ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 97: /* Line 1806 of yacc.c */ #line 547 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Or ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 99: /* Line 1806 of yacc.c */ #line 553 "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 100: /* Line 1806 of yacc.c */ #line 555 "parser.yy" { (yyval.en)=new CompositeExprNode( new OperatorNode( OperatorNode::NCond ), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 101: /* Line 1806 of yacc.c */ #line 557 "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 104: /* Line 1806 of yacc.c */ #line 568 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 105: /* Line 1806 of yacc.c */ #line 570 "parser.yy" { (yyval.en) =new CompositeExprNode( (yyvsp[(2) - (3)].en), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 106: /* Line 1806 of yacc.c */ #line 572 "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 107: /* Line 1806 of yacc.c */ #line 577 "parser.yy" { (yyval.en) = new NullExprNode; } break; case 109: /* Line 1806 of yacc.c */ #line 585 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ) ); } break; case 110: /* Line 1806 of yacc.c */ #line 587 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (yyvsp[(3) - (5)].en) ); } break; case 111: /* Line 1806 of yacc.c */ #line 589 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(new NullExprNode)->set_link( (yyvsp[(4) - (6)].en) ) ); } break; case 112: /* Line 1806 of yacc.c */ #line 591 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_link( flattenCommas( (yyvsp[(5) - (7)].en) ) ) ); } break; case 114: /* Line 1806 of yacc.c */ #line 597 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 115: /* Line 1806 of yacc.c */ #line 601 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MulAssn ); } break; case 116: /* Line 1806 of yacc.c */ #line 602 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::DivAssn ); } break; case 117: /* Line 1806 of yacc.c */ #line 603 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ModAssn ); } break; case 118: /* Line 1806 of yacc.c */ #line 604 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::PlusAssn ); } break; case 119: /* Line 1806 of yacc.c */ #line 605 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MinusAssn ); } break; case 120: /* Line 1806 of yacc.c */ #line 606 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::LSAssn ); } break; case 121: /* Line 1806 of yacc.c */ #line 607 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::RSAssn ); } break; case 122: /* Line 1806 of yacc.c */ #line 608 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AndAssn ); } break; case 123: /* Line 1806 of yacc.c */ #line 609 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ERAssn ); } break; case 124: /* Line 1806 of yacc.c */ #line 610 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::OrAssn ); } break; case 126: /* Line 1806 of yacc.c */ #line 616 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Comma ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 127: /* Line 1806 of yacc.c */ #line 621 "parser.yy" { (yyval.en) = 0; } break; case 131: /* Line 1806 of yacc.c */ #line 630 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 137: /* Line 1806 of yacc.c */ #line 637 "parser.yy" { Token fn; fn.str = new std::string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( StatementNode::Exp, new CompositeExprNode( new VarRefNode( fn ), (ExpressionNode *)(new CompositeExprNode( new OperatorNode( OperatorNode::AddressOf ), (yyvsp[(2) - (6)].en) ))->set_link( (yyvsp[(4) - (6)].en) ) ), 0 ); } break; case 138: /* Line 1806 of yacc.c */ #line 646 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 139: /* Line 1806 of yacc.c */ #line 653 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); } break; case 140: /* Line 1806 of yacc.c */ #line 660 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); } break; case 142: /* Line 1806 of yacc.c */ #line 666 "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 143: /* Line 1806 of yacc.c */ #line 671 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 144: /* Line 1806 of yacc.c */ #line 673 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 145: /* Line 1806 of yacc.c */ #line 675 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 148: /* Line 1806 of yacc.c */ #line 682 "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 149: /* Line 1806 of yacc.c */ #line 687 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Exp, (yyvsp[(1) - (2)].en), 0 ); } break; case 150: /* Line 1806 of yacc.c */ #line 693 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 151: /* Line 1806 of yacc.c */ #line 695 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (7)].en), (StatementNode *)mkList((*(yyvsp[(5) - (7)].sn), *(yyvsp[(7) - (7)].sn) )) ); } break; case 152: /* Line 1806 of yacc.c */ #line 697 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 153: /* Line 1806 of yacc.c */ #line 699 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); /* xxx */ } break; case 154: /* Line 1806 of yacc.c */ #line 704 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 155: /* Line 1806 of yacc.c */ #line 706 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); } break; case 156: /* Line 1806 of yacc.c */ #line 713 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 157: /* Line 1806 of yacc.c */ #line 715 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 160: /* Line 1806 of yacc.c */ #line 722 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(tupleContents( (yyvsp[(1) - (3)].en) ))->set_link( (yyvsp[(3) - (3)].en) ) ); } break; case 161: /* Line 1806 of yacc.c */ #line 726 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Case, (yyvsp[(2) - (3)].en), 0 ); } break; case 162: /* Line 1806 of yacc.c */ #line 727 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Default ); } break; case 164: /* Line 1806 of yacc.c */ #line 733 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) )); } break; case 165: /* Line 1806 of yacc.c */ #line 737 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 166: /* Line 1806 of yacc.c */ #line 742 "parser.yy" { (yyval.sn) = 0; } break; case 168: /* Line 1806 of yacc.c */ #line 748 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 169: /* Line 1806 of yacc.c */ #line 750 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 170: /* Line 1806 of yacc.c */ #line 755 "parser.yy" { (yyval.sn) = 0; } break; case 172: /* Line 1806 of yacc.c */ #line 761 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 173: /* Line 1806 of yacc.c */ #line 763 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].sn) ))); } break; case 174: /* Line 1806 of yacc.c */ #line 765 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 175: /* Line 1806 of yacc.c */ #line 767 "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 176: /* Line 1806 of yacc.c */ #line 772 "parser.yy" { (yyval.sn) = 0; } break; case 178: /* Line 1806 of yacc.c */ #line 777 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 179: /* Line 1806 of yacc.c */ #line 778 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 180: /* Line 1806 of yacc.c */ #line 783 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::While, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 181: /* Line 1806 of yacc.c */ #line 785 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Do, (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ); } break; case 182: /* Line 1806 of yacc.c */ #line 787 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::For, (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].sn) ); } break; case 183: /* Line 1806 of yacc.c */ #line 792 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 184: /* Line 1806 of yacc.c */ #line 794 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 185: /* Line 1806 of yacc.c */ #line 799 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(2) - (3)].tok) ); } break; case 186: /* Line 1806 of yacc.c */ #line 803 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(3) - (4)].en) ); } break; case 187: /* Line 1806 of yacc.c */ #line 806 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue ); } break; case 188: /* Line 1806 of yacc.c */ #line 810 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue, (yyvsp[(2) - (3)].tok) ); } break; case 189: /* Line 1806 of yacc.c */ #line 813 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 190: /* Line 1806 of yacc.c */ #line 817 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break, (yyvsp[(2) - (3)].tok) ); } break; case 191: /* Line 1806 of yacc.c */ #line 819 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Return, (yyvsp[(2) - (3)].en), 0 ); } break; case 192: /* Line 1806 of yacc.c */ #line 821 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 193: /* Line 1806 of yacc.c */ #line 825 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 194: /* Line 1806 of yacc.c */ #line 827 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (5)].en), 0 ); } break; case 195: /* Line 1806 of yacc.c */ #line 834 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 196: /* Line 1806 of yacc.c */ #line 836 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 197: /* Line 1806 of yacc.c */ #line 838 "parser.yy" { (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 199: /* Line 1806 of yacc.c */ #line 849 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 200: /* Line 1806 of yacc.c */ #line 851 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 201: /* Line 1806 of yacc.c */ #line 853 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 202: /* Line 1806 of yacc.c */ #line 855 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 203: /* Line 1806 of yacc.c */ #line 860 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 204: /* Line 1806 of yacc.c */ #line 862 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 205: /* Line 1806 of yacc.c */ #line 864 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 206: /* Line 1806 of yacc.c */ #line 866 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 207: /* Line 1806 of yacc.c */ #line 871 "parser.yy" { (yyval.pn) = new StatementNode( StatementNode::Finally, 0, (yyvsp[(2) - (2)].sn) ); std::cout << "Just created a finally node" << std::endl; } break; case 209: /* Line 1806 of yacc.c */ #line 885 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 210: /* Line 1806 of yacc.c */ #line 890 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 211: /* Line 1806 of yacc.c */ #line 892 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 213: /* Line 1806 of yacc.c */ #line 901 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ); } break; case 214: /* Line 1806 of yacc.c */ #line 903 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ); } break; case 215: /* Line 1806 of yacc.c */ #line 905 "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 216: /* Line 1806 of yacc.c */ #line 907 "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 217: /* Line 1806 of yacc.c */ #line 909 "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 218: /* Line 1806 of yacc.c */ #line 914 "parser.yy" { (yyval.flag) = false; } break; case 219: /* Line 1806 of yacc.c */ #line 916 "parser.yy" { (yyval.flag) = true; } break; case 220: /* Line 1806 of yacc.c */ #line 921 "parser.yy" { (yyval.en) = 0; } break; case 223: /* Line 1806 of yacc.c */ #line 928 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 224: /* Line 1806 of yacc.c */ #line 933 "parser.yy" { (yyval.en) = new AsmExprNode( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ); } break; case 225: /* Line 1806 of yacc.c */ #line 935 "parser.yy" { (yyval.en) = new AsmExprNode( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ); } break; case 226: /* Line 1806 of yacc.c */ #line 940 "parser.yy" { (yyval.constant) = 0; } break; case 227: /* Line 1806 of yacc.c */ #line 942 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (1)].constant); } break; case 228: /* Line 1806 of yacc.c */ #line 944 "parser.yy" { (yyval.constant) = (ConstantNode *)(yyvsp[(1) - (3)].constant)->set_link( (yyvsp[(3) - (3)].constant) ); } break; case 229: /* Line 1806 of yacc.c */ #line 949 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->append_label( (yyvsp[(1) - (1)].tok) ); } break; case 230: /* Line 1806 of yacc.c */ #line 951 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->append_label( (yyvsp[(3) - (3)].tok) ); } break; case 231: /* Line 1806 of yacc.c */ #line 958 "parser.yy" { (yyval.decl) = 0; } break; case 234: /* Line 1806 of yacc.c */ #line 965 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } 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 243: /* Line 1806 of yacc.c */ #line 991 "parser.yy" {} break; case 244: /* Line 1806 of yacc.c */ #line 992 "parser.yy" {} break; case 252: /* Line 1806 of yacc.c */ #line 1021 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl); } break; case 253: /* Line 1806 of yacc.c */ #line 1028 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 254: /* Line 1806 of yacc.c */ #line 1033 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (6)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneType( (yyvsp[(5) - (6)].tok) ) ); } break; case 255: /* Line 1806 of yacc.c */ #line 1043 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 256: /* Line 1806 of yacc.c */ #line 1048 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 257: /* Line 1806 of yacc.c */ #line 1053 "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 258: /* Line 1806 of yacc.c */ #line 1061 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 259: /* Line 1806 of yacc.c */ #line 1066 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 260: /* Line 1806 of yacc.c */ #line 1071 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 261: /* Line 1806 of yacc.c */ #line 1076 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 262: /* Line 1806 of yacc.c */ #line 1081 "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 263: /* Line 1806 of yacc.c */ #line 1089 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 264: /* Line 1806 of yacc.c */ #line 1112 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 265: /* Line 1806 of yacc.c */ #line 1116 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 266: /* Line 1806 of yacc.c */ #line 1123 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 267: /* Line 1806 of yacc.c */ #line 1127 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 268: /* Line 1806 of yacc.c */ #line 1132 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 269: /* Line 1806 of yacc.c */ #line 1137 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 270: /* Line 1806 of yacc.c */ #line 1142 "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 271: /* Line 1806 of yacc.c */ #line 1153 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 272: /* Line 1806 of yacc.c */ #line 1158 "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 273: /* Line 1806 of yacc.c */ #line 1163 "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 274: /* Line 1806 of yacc.c */ #line 1168 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 275: /* Line 1806 of yacc.c */ #line 1173 "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 276: /* Line 1806 of yacc.c */ #line 1182 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 277: /* Line 1806 of yacc.c */ #line 1187 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 282: /* Line 1806 of yacc.c */ #line 1204 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 283: /* Line 1806 of yacc.c */ #line 1209 "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 292: /* Line 1806 of yacc.c */ #line 1231 "parser.yy" { (yyval.decl) = 0; } break; case 295: /* Line 1806 of yacc.c */ #line 1243 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 298: /* Line 1806 of yacc.c */ #line 1254 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 299: /* Line 1806 of yacc.c */ #line 1256 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 300: /* Line 1806 of yacc.c */ #line 1258 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 301: /* Line 1806 of yacc.c */ #line 1260 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 302: /* Line 1806 of yacc.c */ #line 1262 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 303: /* Line 1806 of yacc.c */ #line 1264 "parser.yy" { typedefTable.enterScope(); } break; case 304: /* Line 1806 of yacc.c */ #line 1268 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 306: /* Line 1806 of yacc.c */ #line 1277 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 307: /* Line 1806 of yacc.c */ #line 1279 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 309: /* Line 1806 of yacc.c */ #line 1290 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 311: /* Line 1806 of yacc.c */ #line 1299 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 312: /* Line 1806 of yacc.c */ #line 1301 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 313: /* Line 1806 of yacc.c */ #line 1303 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 314: /* Line 1806 of yacc.c */ #line 1305 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 315: /* Line 1806 of yacc.c */ #line 1307 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 316: /* Line 1806 of yacc.c */ #line 1309 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 317: /* Line 1806 of yacc.c */ #line 1311 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 318: /* Line 1806 of yacc.c */ #line 1313 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 319: /* Line 1806 of yacc.c */ #line 1318 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 320: /* Line 1806 of yacc.c */ #line 1320 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 321: /* Line 1806 of yacc.c */ #line 1322 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 322: /* Line 1806 of yacc.c */ #line 1324 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 323: /* Line 1806 of yacc.c */ #line 1326 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 324: /* Line 1806 of yacc.c */ #line 1328 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 325: /* Line 1806 of yacc.c */ #line 1330 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 326: /* Line 1806 of yacc.c */ #line 1332 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 327: /* Line 1806 of yacc.c */ #line 1334 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 328: /* Line 1806 of yacc.c */ #line 1336 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 329: /* Line 1806 of yacc.c */ #line 1338 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 330: /* Line 1806 of yacc.c */ #line 1340 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 332: /* Line 1806 of yacc.c */ #line 1347 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 333: /* Line 1806 of yacc.c */ #line 1349 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 334: /* Line 1806 of yacc.c */ #line 1351 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 335: /* Line 1806 of yacc.c */ #line 1353 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 337: /* Line 1806 of yacc.c */ #line 1359 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 339: /* Line 1806 of yacc.c */ #line 1366 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 340: /* Line 1806 of yacc.c */ #line 1368 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1370 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1375 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 343: /* Line 1806 of yacc.c */ #line 1377 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1379 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1381 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 347: /* Line 1806 of yacc.c */ #line 1387 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1389 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 349: /* Line 1806 of yacc.c */ #line 1391 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 351: /* Line 1806 of yacc.c */ #line 1397 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1399 "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[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1407 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 356: /* Line 1806 of yacc.c */ #line 1409 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1414 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1416 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1418 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1428 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl) ); } break; case 363: /* Line 1806 of yacc.c */ #line 1430 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0 ); } break; case 364: /* Line 1806 of yacc.c */ #line 1432 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (5)].aggKey), (yyvsp[(2) - (5)].tok), 0, (yyvsp[(4) - (5)].decl) ); } break; case 365: /* Line 1806 of yacc.c */ #line 1434 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl) ); } break; case 366: /* Line 1806 of yacc.c */ #line 1436 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 367: /* Line 1806 of yacc.c */ #line 1441 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 368: /* Line 1806 of yacc.c */ #line 1443 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 369: /* Line 1806 of yacc.c */ #line 1448 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 370: /* Line 1806 of yacc.c */ #line 1450 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 372: /* Line 1806 of yacc.c */ #line 1456 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 374: /* Line 1806 of yacc.c */ #line 1459 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 376: /* Line 1806 of yacc.c */ #line 1465 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 377: /* Line 1806 of yacc.c */ #line 1467 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 378: /* Line 1806 of yacc.c */ #line 1469 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 379: /* Line 1806 of yacc.c */ #line 1474 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 380: /* Line 1806 of yacc.c */ #line 1476 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 381: /* Line 1806 of yacc.c */ #line 1481 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 382: /* Line 1806 of yacc.c */ #line 1483 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 383: /* Line 1806 of yacc.c */ #line 1486 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1489 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 386: /* Line 1806 of yacc.c */ #line 1495 "parser.yy" { (yyval.en) = 0; } break; case 387: /* Line 1806 of yacc.c */ #line 1497 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 388: /* Line 1806 of yacc.c */ #line 1502 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 390: /* Line 1806 of yacc.c */ #line 1511 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 391: /* Line 1806 of yacc.c */ #line 1513 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 392: /* Line 1806 of yacc.c */ #line 1515 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 393: /* Line 1806 of yacc.c */ #line 1520 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 394: /* Line 1806 of yacc.c */ #line 1522 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1527 "parser.yy" { (yyval.en) = 0; } break; case 396: /* Line 1806 of yacc.c */ #line 1529 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 397: /* Line 1806 of yacc.c */ #line 1536 "parser.yy" { (yyval.decl) = 0; } break; case 401: /* Line 1806 of yacc.c */ #line 1544 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 402: /* Line 1806 of yacc.c */ #line 1546 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 403: /* Line 1806 of yacc.c */ #line 1548 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 405: /* Line 1806 of yacc.c */ #line 1556 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 406: /* Line 1806 of yacc.c */ #line 1558 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 407: /* Line 1806 of yacc.c */ #line 1560 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 409: /* Line 1806 of yacc.c */ #line 1566 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 410: /* Line 1806 of yacc.c */ #line 1571 "parser.yy" { (yyval.decl) = 0; } break; case 413: /* Line 1806 of yacc.c */ #line 1578 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 416: /* Line 1806 of yacc.c */ #line 1585 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 417: /* Line 1806 of yacc.c */ #line 1587 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 419: /* Line 1806 of yacc.c */ #line 1596 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 420: /* Line 1806 of yacc.c */ #line 1599 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 421: /* Line 1806 of yacc.c */ #line 1601 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 426: /* Line 1806 of yacc.c */ #line 1611 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 428: /* Line 1806 of yacc.c */ #line 1617 "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 429: /* Line 1806 of yacc.c */ #line 1622 "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 431: /* Line 1806 of yacc.c */ #line 1631 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 432: /* Line 1806 of yacc.c */ #line 1640 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 433: /* Line 1806 of yacc.c */ #line 1642 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 445: /* Line 1806 of yacc.c */ #line 1667 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 449: /* Line 1806 of yacc.c */ #line 1675 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 450: /* Line 1806 of yacc.c */ #line 1680 "parser.yy" { (yyval.in) = 0; } break; case 451: /* Line 1806 of yacc.c */ #line 1682 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 452: /* Line 1806 of yacc.c */ #line 1684 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 453: /* Line 1806 of yacc.c */ #line 1688 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 454: /* Line 1806 of yacc.c */ #line 1689 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 455: /* Line 1806 of yacc.c */ #line 1694 "parser.yy" { (yyval.in) = 0; } break; case 457: /* Line 1806 of yacc.c */ #line 1696 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 458: /* Line 1806 of yacc.c */ #line 1697 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link( (yyvsp[(3) - (3)].in) ) ); } break; case 459: /* Line 1806 of yacc.c */ #line 1699 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 461: /* Line 1806 of yacc.c */ #line 1715 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (2)].tok) ); } break; case 463: /* Line 1806 of yacc.c */ #line 1721 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) )); } break; case 464: /* Line 1806 of yacc.c */ #line 1729 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(1) - (1)].tok) ) ); } break; case 465: /* Line 1806 of yacc.c */ #line 1731 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(2) - (2)].tok) ) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1734 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 467: /* Line 1806 of yacc.c */ #line 1736 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 468: /* Line 1806 of yacc.c */ #line 1738 "parser.yy" { (yyval.en) = new DesignatorNode( new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ), true ); } break; case 469: /* Line 1806 of yacc.c */ #line 1740 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(4) - (6)].en) ); } break; case 471: /* Line 1806 of yacc.c */ #line 1764 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 472: /* Line 1806 of yacc.c */ #line 1766 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 473: /* Line 1806 of yacc.c */ #line 1768 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 475: /* Line 1806 of yacc.c */ #line 1774 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 476: /* Line 1806 of yacc.c */ #line 1776 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 477: /* Line 1806 of yacc.c */ #line 1781 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 479: /* Line 1806 of yacc.c */ #line 1787 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1792 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 481: /* Line 1806 of yacc.c */ #line 1794 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 483: /* Line 1806 of yacc.c */ #line 1800 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 484: /* Line 1806 of yacc.c */ #line 1802 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 485: /* Line 1806 of yacc.c */ #line 1804 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 486: /* Line 1806 of yacc.c */ #line 1809 "parser.yy" { (yyval.decl) = 0; } break; case 487: /* Line 1806 of yacc.c */ #line 1811 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) == 0 ? (yyvsp[(2) - (2)].decl) : (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 488: /* Line 1806 of yacc.c */ #line 1816 "parser.yy" { typedefTable.openContext( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newContextUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 489: /* Line 1806 of yacc.c */ #line 1821 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 490: /* Line 1806 of yacc.c */ #line 1823 "parser.yy" { (yyval.decl) = 0; } break; case 491: /* Line 1806 of yacc.c */ #line 1828 "parser.yy" { (yyval.en) = new TypeValueNode( (yyvsp[(1) - (1)].decl) ); } break; case 493: /* Line 1806 of yacc.c */ #line 1831 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( new TypeValueNode( (yyvsp[(3) - (3)].decl) ))); } break; case 494: /* Line 1806 of yacc.c */ #line 1833 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 495: /* Line 1806 of yacc.c */ #line 1838 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 496: /* Line 1806 of yacc.c */ #line 1840 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 497: /* Line 1806 of yacc.c */ #line 1842 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 498: /* Line 1806 of yacc.c */ #line 1847 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 499: /* Line 1806 of yacc.c */ #line 1849 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 500: /* Line 1806 of yacc.c */ #line 1854 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 501: /* Line 1806 of yacc.c */ #line 1859 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 502: /* Line 1806 of yacc.c */ #line 1867 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 503: /* Line 1806 of yacc.c */ #line 1872 "parser.yy" { typedefTable.enterContext( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 504: /* Line 1806 of yacc.c */ #line 1877 "parser.yy" { typedefTable.leaveContext(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 506: /* Line 1806 of yacc.c */ #line 1887 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 509: /* Line 1806 of yacc.c */ #line 1897 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 510: /* Line 1806 of yacc.c */ #line 1902 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 511: /* Line 1806 of yacc.c */ #line 1907 "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 512: /* Line 1806 of yacc.c */ #line 1915 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 513: /* Line 1806 of yacc.c */ #line 1920 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 514: /* Line 1806 of yacc.c */ #line 1930 "parser.yy" {} break; case 515: /* Line 1806 of yacc.c */ #line 1932 "parser.yy" { if ( theTree ) { theTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { theTree = (yyvsp[(1) - (1)].decl); } } break; case 517: /* Line 1806 of yacc.c */ #line 1944 "parser.yy" { (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 518: /* Line 1806 of yacc.c */ #line 1949 "parser.yy" { (yyval.decl) = 0; } break; case 522: /* Line 1806 of yacc.c */ #line 1957 "parser.yy" {} break; case 523: /* Line 1806 of yacc.c */ #line 1959 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 524: /* Line 1806 of yacc.c */ #line 1964 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 525: /* Line 1806 of yacc.c */ #line 1970 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 527: /* Line 1806 of yacc.c */ #line 1980 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 528: /* Line 1806 of yacc.c */ #line 1986 "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 529: /* Line 1806 of yacc.c */ #line 1995 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 530: /* Line 1806 of yacc.c */ #line 2001 "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 531: /* Line 1806 of yacc.c */ #line 2007 "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 532: /* Line 1806 of yacc.c */ #line 2013 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 533: /* Line 1806 of yacc.c */ #line 2019 "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 534: /* Line 1806 of yacc.c */ #line 2027 "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 535: /* Line 1806 of yacc.c */ #line 2033 "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 536: /* Line 1806 of yacc.c */ #line 2041 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 537: /* Line 1806 of yacc.c */ #line 2047 "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 541: /* Line 1806 of yacc.c */ #line 2062 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 544: /* Line 1806 of yacc.c */ #line 2072 "parser.yy" { (yyval.decl) = 0; } break; case 547: /* Line 1806 of yacc.c */ #line 2079 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 548: /* Line 1806 of yacc.c */ #line 2085 "parser.yy" { (yyval.decl) = 0; } break; case 554: /* Line 1806 of yacc.c */ #line 2100 "parser.yy" {} break; case 555: /* Line 1806 of yacc.c */ #line 2101 "parser.yy" {} break; case 556: /* Line 1806 of yacc.c */ #line 2102 "parser.yy" {} break; case 557: /* Line 1806 of yacc.c */ #line 2103 "parser.yy" {} break; case 558: /* Line 1806 of yacc.c */ #line 2138 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 560: /* Line 1806 of yacc.c */ #line 2141 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 561: /* Line 1806 of yacc.c */ #line 2143 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 562: /* Line 1806 of yacc.c */ #line 2148 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 563: /* Line 1806 of yacc.c */ #line 2153 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 564: /* Line 1806 of yacc.c */ #line 2158 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 565: /* Line 1806 of yacc.c */ #line 2160 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 566: /* Line 1806 of yacc.c */ #line 2162 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 567: /* Line 1806 of yacc.c */ #line 2167 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 568: /* Line 1806 of yacc.c */ #line 2169 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 569: /* Line 1806 of yacc.c */ #line 2171 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2173 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 571: /* Line 1806 of yacc.c */ #line 2178 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 572: /* Line 1806 of yacc.c */ #line 2180 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 573: /* Line 1806 of yacc.c */ #line 2190 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2193 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2198 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2200 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 578: /* Line 1806 of yacc.c */ #line 2202 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 579: /* Line 1806 of yacc.c */ #line 2207 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 580: /* Line 1806 of yacc.c */ #line 2209 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2211 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 582: /* Line 1806 of yacc.c */ #line 2216 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 583: /* Line 1806 of yacc.c */ #line 2218 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 584: /* Line 1806 of yacc.c */ #line 2220 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 588: /* Line 1806 of yacc.c */ #line 2235 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 589: /* Line 1806 of yacc.c */ #line 2237 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2239 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 591: /* Line 1806 of yacc.c */ #line 2244 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 592: /* Line 1806 of yacc.c */ #line 2246 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 593: /* Line 1806 of yacc.c */ #line 2248 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 594: /* Line 1806 of yacc.c */ #line 2253 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 595: /* Line 1806 of yacc.c */ #line 2255 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 596: /* Line 1806 of yacc.c */ #line 2257 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 597: /* Line 1806 of yacc.c */ #line 2272 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 599: /* Line 1806 of yacc.c */ #line 2275 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2277 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 602: /* Line 1806 of yacc.c */ #line 2283 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 603: /* Line 1806 of yacc.c */ #line 2288 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 604: /* Line 1806 of yacc.c */ #line 2290 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2292 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 606: /* Line 1806 of yacc.c */ #line 2297 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 607: /* Line 1806 of yacc.c */ #line 2299 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 608: /* Line 1806 of yacc.c */ #line 2301 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2303 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 610: /* Line 1806 of yacc.c */ #line 2308 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 611: /* Line 1806 of yacc.c */ #line 2310 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2312 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 613: /* Line 1806 of yacc.c */ #line 2322 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 615: /* Line 1806 of yacc.c */ #line 2325 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2327 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2332 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2334 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].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 2341 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2343 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2345 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2347 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 624: /* Line 1806 of yacc.c */ #line 2352 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 625: /* Line 1806 of yacc.c */ #line 2354 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2356 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 627: /* Line 1806 of yacc.c */ #line 2387 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 629: /* Line 1806 of yacc.c */ #line 2390 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2392 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2397 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2402 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2410 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2412 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2414 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 636: /* Line 1806 of yacc.c */ #line 2419 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2421 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2426 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2428 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 641: /* Line 1806 of yacc.c */ #line 2443 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2445 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2450 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 644: /* Line 1806 of yacc.c */ #line 2452 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 645: /* Line 1806 of yacc.c */ #line 2454 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2456 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2458 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 649: /* Line 1806 of yacc.c */ #line 2464 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 650: /* Line 1806 of yacc.c */ #line 2466 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2468 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 652: /* Line 1806 of yacc.c */ #line 2473 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 653: /* Line 1806 of yacc.c */ #line 2475 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 654: /* Line 1806 of yacc.c */ #line 2477 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 655: /* Line 1806 of yacc.c */ #line 2483 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 656: /* Line 1806 of yacc.c */ #line 2485 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 658: /* Line 1806 of yacc.c */ #line 2491 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 659: /* Line 1806 of yacc.c */ #line 2493 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 660: /* Line 1806 of yacc.c */ #line 2495 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 661: /* Line 1806 of yacc.c */ #line 2497 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 663: /* Line 1806 of yacc.c */ #line 2512 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 664: /* Line 1806 of yacc.c */ #line 2514 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 665: /* Line 1806 of yacc.c */ #line 2519 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 666: /* Line 1806 of yacc.c */ #line 2521 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 667: /* Line 1806 of yacc.c */ #line 2523 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2525 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 669: /* Line 1806 of yacc.c */ #line 2527 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 671: /* Line 1806 of yacc.c */ #line 2533 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 672: /* Line 1806 of yacc.c */ #line 2535 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2537 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 674: /* Line 1806 of yacc.c */ #line 2542 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 675: /* Line 1806 of yacc.c */ #line 2544 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 676: /* Line 1806 of yacc.c */ #line 2546 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 678: /* Line 1806 of yacc.c */ #line 2553 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 680: /* Line 1806 of yacc.c */ #line 2564 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 681: /* Line 1806 of yacc.c */ #line 2567 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 682: /* Line 1806 of yacc.c */ #line 2569 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 683: /* Line 1806 of yacc.c */ #line 2572 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 684: /* Line 1806 of yacc.c */ #line 2574 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 685: /* Line 1806 of yacc.c */ #line 2576 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 687: /* Line 1806 of yacc.c */ #line 2590 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 688: /* Line 1806 of yacc.c */ #line 2592 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 689: /* Line 1806 of yacc.c */ #line 2597 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 690: /* Line 1806 of yacc.c */ #line 2599 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 691: /* Line 1806 of yacc.c */ #line 2601 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 692: /* Line 1806 of yacc.c */ #line 2603 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2605 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 695: /* Line 1806 of yacc.c */ #line 2611 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 696: /* Line 1806 of yacc.c */ #line 2613 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2615 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 698: /* Line 1806 of yacc.c */ #line 2620 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 699: /* Line 1806 of yacc.c */ #line 2622 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 702: /* Line 1806 of yacc.c */ #line 2632 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 705: /* Line 1806 of yacc.c */ #line 2642 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 706: /* Line 1806 of yacc.c */ #line 2644 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 707: /* Line 1806 of yacc.c */ #line 2646 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 708: /* Line 1806 of yacc.c */ #line 2648 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 709: /* Line 1806 of yacc.c */ #line 2650 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 710: /* Line 1806 of yacc.c */ #line 2652 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 711: /* Line 1806 of yacc.c */ #line 2659 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2661 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2663 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2665 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2667 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2669 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2671 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2673 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2675 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2677 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2682 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2684 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 723: /* Line 1806 of yacc.c */ #line 2689 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 724: /* Line 1806 of yacc.c */ #line 2691 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 726: /* Line 1806 of yacc.c */ #line 2718 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 730: /* Line 1806 of yacc.c */ #line 2729 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 731: /* Line 1806 of yacc.c */ #line 2731 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 732: /* Line 1806 of yacc.c */ #line 2733 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 733: /* Line 1806 of yacc.c */ #line 2735 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 734: /* Line 1806 of yacc.c */ #line 2737 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 735: /* Line 1806 of yacc.c */ #line 2739 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2746 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2748 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2750 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2752 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2754 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2756 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2761 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2766 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 744: /* Line 1806 of yacc.c */ #line 2768 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 745: /* Line 1806 of yacc.c */ #line 2770 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 748: /* Line 1806 of yacc.c */ #line 2794 "parser.yy" { (yyval.en) = 0; } break; case 749: /* Line 1806 of yacc.c */ #line 2796 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9087 "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 2799 "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: //