/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 42 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile extern char *yytext; #undef __GNUC_MINOR__ #include #include #include "lex.h" #include "parser.h" #include "ParseNode.h" #include "TypedefTable.h" #include "TypeData.h" #include "LinkageSpec.h" DeclarationNode *theTree = 0; // the resulting parse tree LinkageSpec::Type linkage = LinkageSpec::Cforall; std::stack< LinkageSpec::Type > linkageStack; TypedefTable typedefTable; void appendStr( std::string &to, std::string *from ) { // "abc" "def" "ghi" => "abcdefghi", remove new text from quotes and insert before last quote in old string. to.insert( to.length() - 1, from->substr( 1, from->length() - 2 ) ); } // appendStr /* Line 268 of yacc.c */ #line 99 "Parser/parser.cc" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { TYPEDEF = 258, AUTO = 259, EXTERN = 260, REGISTER = 261, STATIC = 262, INLINE = 263, FORTRAN = 264, CONST = 265, VOLATILE = 266, RESTRICT = 267, FORALL = 268, LVALUE = 269, VOID = 270, CHAR = 271, SHORT = 272, INT = 273, LONG = 274, FLOAT = 275, DOUBLE = 276, SIGNED = 277, UNSIGNED = 278, VALIST = 279, BOOL = 280, COMPLEX = 281, IMAGINARY = 282, TYPEOF = 283, LABEL = 284, ENUM = 285, STRUCT = 286, UNION = 287, OTYPE = 288, FTYPE = 289, DTYPE = 290, TRAIT = 291, SIZEOF = 292, OFFSETOF = 293, ATTRIBUTE = 294, EXTENSION = 295, IF = 296, ELSE = 297, SWITCH = 298, CASE = 299, DEFAULT = 300, DO = 301, WHILE = 302, FOR = 303, BREAK = 304, CONTINUE = 305, GOTO = 306, RETURN = 307, CHOOSE = 308, DISABLE = 309, ENABLE = 310, FALLTHRU = 311, TRY = 312, CATCH = 313, CATCHRESUME = 314, FINALLY = 315, THROW = 316, THROWRESUME = 317, AT = 318, ASM = 319, ALIGNAS = 320, ALIGNOF = 321, ATOMIC = 322, GENERIC = 323, NORETURN = 324, STATICASSERT = 325, THREADLOCAL = 326, IDENTIFIER = 327, QUOTED_IDENTIFIER = 328, TYPEDEFname = 329, TYPEGENname = 330, ATTR_IDENTIFIER = 331, ATTR_TYPEDEFname = 332, ATTR_TYPEGENname = 333, INTEGERconstant = 334, FLOATINGconstant = 335, CHARACTERconstant = 336, STRINGliteral = 337, ZERO = 338, ONE = 339, ARROW = 340, ICR = 341, DECR = 342, LS = 343, RS = 344, LE = 345, GE = 346, EQ = 347, NE = 348, ANDAND = 349, OROR = 350, ELLIPSIS = 351, MULTassign = 352, DIVassign = 353, MODassign = 354, PLUSassign = 355, MINUSassign = 356, LSassign = 357, RSassign = 358, ANDassign = 359, ERassign = 360, ORassign = 361, ATassign = 362, THEN = 363 }; #endif /* Tokens. */ #define TYPEDEF 258 #define AUTO 259 #define EXTERN 260 #define REGISTER 261 #define STATIC 262 #define INLINE 263 #define FORTRAN 264 #define CONST 265 #define VOLATILE 266 #define RESTRICT 267 #define FORALL 268 #define LVALUE 269 #define VOID 270 #define CHAR 271 #define SHORT 272 #define INT 273 #define LONG 274 #define FLOAT 275 #define DOUBLE 276 #define SIGNED 277 #define UNSIGNED 278 #define VALIST 279 #define BOOL 280 #define COMPLEX 281 #define IMAGINARY 282 #define TYPEOF 283 #define LABEL 284 #define ENUM 285 #define STRUCT 286 #define UNION 287 #define OTYPE 288 #define FTYPE 289 #define DTYPE 290 #define TRAIT 291 #define SIZEOF 292 #define OFFSETOF 293 #define ATTRIBUTE 294 #define EXTENSION 295 #define IF 296 #define ELSE 297 #define SWITCH 298 #define CASE 299 #define DEFAULT 300 #define DO 301 #define WHILE 302 #define FOR 303 #define BREAK 304 #define CONTINUE 305 #define GOTO 306 #define RETURN 307 #define CHOOSE 308 #define DISABLE 309 #define ENABLE 310 #define FALLTHRU 311 #define TRY 312 #define CATCH 313 #define CATCHRESUME 314 #define FINALLY 315 #define THROW 316 #define THROWRESUME 317 #define AT 318 #define ASM 319 #define ALIGNAS 320 #define ALIGNOF 321 #define ATOMIC 322 #define GENERIC 323 #define NORETURN 324 #define STATICASSERT 325 #define THREADLOCAL 326 #define IDENTIFIER 327 #define QUOTED_IDENTIFIER 328 #define TYPEDEFname 329 #define TYPEGENname 330 #define ATTR_IDENTIFIER 331 #define ATTR_TYPEDEFname 332 #define ATTR_TYPEGENname 333 #define INTEGERconstant 334 #define FLOATINGconstant 335 #define CHARACTERconstant 336 #define STRINGliteral 337 #define ZERO 338 #define ONE 339 #define ARROW 340 #define ICR 341 #define DECR 342 #define LS 343 #define RS 344 #define LE 345 #define GE 346 #define EQ 347 #define NE 348 #define ANDAND 349 #define OROR 350 #define ELLIPSIS 351 #define MULTassign 352 #define DIVassign 353 #define MODassign 354 #define PLUSassign 355 #define MINUSassign 356 #define LSassign 357 #define RSassign 358 #define ANDassign 359 #define ERassign 360 #define ORassign 361 #define ATassign 362 #define THEN 363 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 115 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantExpr *constant; ForCtl *fctl; LabelNode *label; InitializerNode *in; OperKinds op; bool flag; /* Line 293 of yacc.c */ #line 369 "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 381 "Parser/parser.cc" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(e) ((void) (e)) #else # define YYUSE(e) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(n) (n) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int yyi) #else static int YYID (yyi) int yyi; #endif { return yyi; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (YYID (0)) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 251 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 10816 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 133 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 241 /* YYNRULES -- Number of rules. */ #define YYNRULES 750 /* YYNRULES -- Number of states. */ #define YYNSTATES 1554 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 363 #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, 121, 2, 2, 2, 124, 118, 2, 109, 110, 117, 119, 116, 120, 113, 123, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 130, 132, 125, 131, 126, 129, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 111, 2, 112, 127, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 114, 128, 115, 122, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 4, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 34, 36, 38, 42, 46, 48, 55, 60, 64, 72, 76, 84, 87, 90, 98, 103, 105, 109, 110, 112, 114, 118, 120, 124, 132, 136, 144, 146, 148, 150, 153, 156, 159, 162, 165, 168, 173, 176, 181, 188, 190, 195, 200, 202, 204, 206, 208, 210, 212, 214, 219, 224, 226, 230, 234, 238, 240, 244, 248, 250, 254, 258, 260, 264, 268, 272, 276, 278, 282, 286, 288, 292, 294, 298, 300, 304, 306, 310, 312, 316, 318, 324, 329, 335, 337, 339, 343, 346, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 374, 380, 387, 395, 397, 401, 403, 407, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 433, 438, 441, 449, 451, 455, 457, 460, 462, 465, 467, 470, 473, 479, 487, 493, 503, 509, 519, 521, 525, 527, 529, 533, 537, 540, 542, 545, 548, 549, 551, 554, 558, 559, 561, 564, 568, 572, 577, 578, 580, 582, 585, 591, 599, 606, 613, 618, 622, 627, 630, 634, 637, 641, 645, 649, 653, 659, 663, 667, 672, 674, 680, 687, 693, 700, 710, 721, 731, 742, 745, 747, 750, 753, 756, 758, 765, 774, 785, 798, 813, 814, 816, 817, 819, 821, 825, 830, 838, 839, 841, 845, 847, 851, 853, 855, 857, 861, 863, 865, 867, 871, 872, 874, 878, 883, 885, 889, 891, 893, 897, 901, 905, 909, 913, 916, 920, 927, 931, 935, 940, 942, 945, 948, 952, 958, 967, 975, 983, 989, 999, 1002, 1005, 1011, 1015, 1021, 1026, 1030, 1035, 1040, 1048, 1052, 1056, 1060, 1064, 1069, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1093, 1095, 1097, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1115, 1121, 1123, 1126, 1130, 1132, 1135, 1137, 1139, 1141, 1143, 1145, 1147, 1149, 1151, 1153, 1155, 1157, 1159, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1181, 1184, 1187, 1191, 1195, 1197, 1201, 1203, 1206, 1209, 1212, 1217, 1222, 1227, 1232, 1234, 1237, 1240, 1244, 1246, 1249, 1252, 1254, 1257, 1260, 1264, 1266, 1269, 1272, 1274, 1276, 1281, 1284, 1285, 1292, 1300, 1303, 1306, 1309, 1310, 1313, 1316, 1320, 1323, 1327, 1329, 1332, 1336, 1339, 1342, 1347, 1348, 1350, 1353, 1356, 1358, 1359, 1361, 1364, 1367, 1373, 1376, 1377, 1385, 1388, 1393, 1394, 1397, 1398, 1400, 1402, 1404, 1410, 1416, 1422, 1424, 1430, 1436, 1446, 1448, 1454, 1455, 1457, 1459, 1465, 1467, 1469, 1475, 1481, 1483, 1487, 1491, 1496, 1498, 1500, 1502, 1504, 1507, 1509, 1513, 1517, 1519, 1522, 1524, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1553, 1555, 1557, 1559, 1562, 1563, 1566, 1569, 1571, 1576, 1577, 1579, 1582, 1586, 1591, 1594, 1597, 1599, 1602, 1605, 1611, 1617, 1625, 1632, 1634, 1637, 1640, 1644, 1646, 1649, 1652, 1657, 1660, 1665, 1666, 1671, 1674, 1676, 1678, 1680, 1681, 1684, 1690, 1696, 1710, 1712, 1714, 1718, 1722, 1725, 1729, 1733, 1736, 1741, 1743, 1750, 1760, 1761, 1773, 1775, 1779, 1783, 1787, 1789, 1791, 1797, 1800, 1806, 1807, 1809, 1811, 1815, 1816, 1818, 1820, 1822, 1824, 1825, 1832, 1835, 1837, 1840, 1845, 1848, 1852, 1856, 1860, 1865, 1871, 1877, 1883, 1890, 1892, 1894, 1896, 1900, 1901, 1907, 1908, 1910, 1912, 1915, 1922, 1924, 1928, 1929, 1931, 1936, 1938, 1940, 1942, 1944, 1947, 1949, 1952, 1955, 1957, 1961, 1964, 1968, 1972, 1975, 1980, 1985, 1989, 1998, 2002, 2005, 2007, 2010, 2017, 2026, 2030, 2033, 2037, 2041, 2046, 2051, 2055, 2057, 2059, 2061, 2066, 2073, 2077, 2080, 2084, 2088, 2093, 2098, 2102, 2105, 2107, 2110, 2113, 2115, 2119, 2122, 2126, 2130, 2133, 2138, 2143, 2147, 2154, 2163, 2167, 2170, 2172, 2175, 2178, 2181, 2185, 2189, 2192, 2197, 2202, 2206, 2213, 2222, 2226, 2229, 2231, 2234, 2237, 2239, 2241, 2244, 2248, 2252, 2255, 2260, 2267, 2276, 2278, 2281, 2284, 2286, 2289, 2292, 2296, 2300, 2302, 2307, 2312, 2316, 2322, 2331, 2335, 2338, 2342, 2344, 2350, 2356, 2363, 2370, 2372, 2375, 2378, 2380, 2383, 2386, 2390, 2394, 2396, 2401, 2406, 2410, 2416, 2425, 2429, 2431, 2434, 2436, 2439, 2446, 2452, 2459, 2467, 2475, 2477, 2480, 2483, 2485, 2488, 2491, 2495, 2499, 2501, 2506, 2511, 2515, 2524, 2528, 2530, 2532, 2535, 2537, 2539, 2542, 2546, 2549, 2553, 2556, 2560, 2564, 2567, 2572, 2576, 2579, 2583, 2586, 2591, 2595, 2598, 2605, 2612, 2619, 2627, 2629, 2632, 2634, 2636, 2638, 2641, 2645, 2648, 2652, 2655, 2659, 2663, 2668, 2671, 2675, 2680, 2683, 2689, 2695, 2702, 2709, 2710, 2712, 2713 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 302, 0, -1, -1, -1, 79, -1, 80, -1, 81, -1, 72, -1, 76, -1, 140, -1, 72, -1, 76, -1, 72, -1, 140, -1, 83, -1, 84, -1, 82, -1, 141, 82, -1, 72, -1, 140, -1, 109, 169, 110, -1, 109, 173, 110, -1, 142, -1, 143, 111, 134, 164, 135, 112, -1, 143, 109, 144, 110, -1, 143, 113, 139, -1, 143, 113, 111, 134, 146, 135, 112, -1, 143, 85, 139, -1, 143, 85, 111, 134, 146, 135, 112, -1, 143, 86, -1, 143, 87, -1, 109, 275, 110, 114, 279, 372, 115, -1, 143, 114, 144, 115, -1, 145, -1, 144, 116, 145, -1, -1, 164, -1, 147, -1, 146, 116, 147, -1, 139, -1, 139, 113, 147, -1, 139, 113, 111, 134, 146, 135, 112, -1, 139, 85, 147, -1, 139, 85, 111, 134, 146, 135, 112, -1, 143, -1, 136, -1, 141, -1, 40, 151, -1, 149, 151, -1, 150, 151, -1, 86, 148, -1, 87, 148, -1, 37, 148, -1, 37, 109, 275, 110, -1, 66, 148, -1, 66, 109, 275, 110, -1, 38, 109, 275, 116, 139, 110, -1, 76, -1, 76, 109, 145, 110, -1, 76, 109, 276, 110, -1, 117, -1, 118, -1, 119, -1, 120, -1, 121, -1, 122, -1, 148, -1, 109, 275, 110, 151, -1, 109, 275, 110, 167, -1, 151, -1, 152, 117, 151, -1, 152, 123, 151, -1, 152, 124, 151, -1, 152, -1, 153, 119, 152, -1, 153, 120, 152, -1, 153, -1, 154, 88, 153, -1, 154, 89, 153, -1, 154, -1, 155, 125, 154, -1, 155, 126, 154, -1, 155, 90, 154, -1, 155, 91, 154, -1, 155, -1, 156, 92, 155, -1, 156, 93, 155, -1, 156, -1, 157, 118, 156, -1, 157, -1, 158, 127, 157, -1, 158, -1, 159, 128, 158, -1, 159, -1, 160, 94, 159, -1, 160, -1, 161, 95, 160, -1, 161, -1, 161, 129, 169, 130, 162, -1, 161, 129, 130, 162, -1, 161, 129, 169, 130, 167, -1, 162, -1, 162, -1, 148, 166, 164, -1, 167, 373, -1, -1, 164, -1, 131, -1, 97, -1, 98, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 106, -1, 111, 112, -1, 111, 134, 164, 135, 112, -1, 111, 134, 116, 168, 135, 112, -1, 111, 134, 164, 116, 168, 135, 112, -1, 165, -1, 168, 116, 165, -1, 164, -1, 169, 116, 164, -1, -1, 169, -1, 172, -1, 173, -1, 177, -1, 178, -1, 190, -1, 192, -1, 193, -1, 198, -1, 127, 143, 114, 144, 115, 132, -1, 72, 130, 312, 171, -1, 114, 115, -1, 114, 134, 134, 209, 174, 135, 115, -1, 175, -1, 174, 134, 175, -1, 212, -1, 40, 212, -1, 308, -1, 171, 135, -1, 171, -1, 176, 171, -1, 170, 132, -1, 41, 109, 169, 110, 171, -1, 41, 109, 169, 110, 171, 42, 171, -1, 43, 109, 169, 110, 183, -1, 43, 109, 169, 110, 114, 134, 205, 184, 115, -1, 53, 109, 169, 110, 183, -1, 53, 109, 169, 110, 114, 134, 205, 186, 115, -1, 163, -1, 163, 96, 163, -1, 310, -1, 179, -1, 180, 116, 179, -1, 44, 180, 130, -1, 45, 130, -1, 181, -1, 182, 181, -1, 182, 171, -1, -1, 185, -1, 182, 176, -1, 185, 182, 176, -1, -1, 187, -1, 182, 189, -1, 182, 176, 188, -1, 187, 182, 189, -1, 187, 182, 176, 188, -1, -1, 189, -1, 56, -1, 56, 132, -1, 47, 109, 169, 110, 171, -1, 46, 171, 47, 109, 169, 110, 132, -1, 48, 109, 134, 191, 110, 171, -1, 170, 135, 132, 170, 132, 170, -1, 212, 170, 132, 170, -1, 51, 72, 132, -1, 51, 117, 169, 132, -1, 50, 132, -1, 50, 72, 132, -1, 49, 132, -1, 49, 72, 132, -1, 52, 170, 132, -1, 61, 165, 132, -1, 62, 165, 132, -1, 62, 165, 63, 164, 132, -1, 57, 173, 194, -1, 57, 173, 196, -1, 57, 173, 194, 196, -1, 195, -1, 58, 109, 96, 110, 173, -1, 195, 58, 109, 96, 110, 173, -1, 59, 109, 96, 110, 173, -1, 195, 59, 109, 96, 110, 173, -1, 58, 109, 134, 134, 197, 135, 110, 173, 135, -1, 195, 58, 109, 134, 134, 197, 135, 110, 173, 135, -1, 59, 109, 134, 134, 197, 135, 110, 173, 135, -1, 195, 59, 109, 134, 134, 197, 135, 110, 173, 135, -1, 60, 173, -1, 225, -1, 225, 309, -1, 225, 357, -1, 366, 139, -1, 366, -1, 64, 199, 109, 141, 110, 132, -1, 64, 199, 109, 141, 130, 200, 110, 132, -1, 64, 199, 109, 141, 130, 200, 130, 200, 110, 132, -1, 64, 199, 109, 141, 130, 200, 130, 200, 130, 203, 110, 132, -1, 64, 199, 51, 109, 141, 130, 130, 200, 130, 203, 130, 204, 110, 132, -1, -1, 11, -1, -1, 201, -1, 202, -1, 201, 116, 202, -1, 141, 109, 163, 110, -1, 111, 163, 112, 141, 109, 163, 110, -1, -1, 141, -1, 203, 116, 141, -1, 139, -1, 204, 116, 139, -1, 135, -1, 206, -1, 212, -1, 206, 134, 212, -1, 135, -1, 208, -1, 222, -1, 208, 134, 222, -1, -1, 210, -1, 29, 211, 132, -1, 210, 29, 211, 132, -1, 274, -1, 211, 116, 274, -1, 213, -1, 222, -1, 214, 135, 132, -1, 219, 135, 132, -1, 216, 135, 132, -1, 293, 135, 132, -1, 296, 135, 132, -1, 215, 277, -1, 231, 215, 277, -1, 214, 135, 116, 134, 272, 277, -1, 367, 272, 311, -1, 370, 272, 311, -1, 227, 370, 272, 311, -1, 217, -1, 227, 217, -1, 231, 217, -1, 231, 227, 217, -1, 216, 135, 116, 134, 272, -1, 111, 112, 272, 109, 134, 260, 135, 110, -1, 370, 272, 109, 134, 260, 135, 110, -1, 218, 272, 109, 134, 260, 135, 110, -1, 111, 134, 262, 135, 112, -1, 111, 134, 262, 135, 116, 134, 263, 135, 112, -1, 3, 215, -1, 3, 217, -1, 219, 135, 116, 134, 139, -1, 3, 225, 309, -1, 220, 135, 116, 134, 309, -1, 227, 3, 225, 309, -1, 225, 3, 309, -1, 225, 3, 227, 309, -1, 3, 139, 131, 164, -1, 221, 135, 116, 134, 139, 131, 164, -1, 223, 135, 132, -1, 220, 135, 132, -1, 221, 135, 132, -1, 240, 135, 132, -1, 224, 309, 311, 277, -1, 223, 116, 312, 309, 311, 277, -1, 236, -1, 240, -1, 242, -1, 283, -1, 237, -1, 241, -1, 243, -1, 284, -1, -1, 227, -1, 228, -1, 227, 228, -1, 229, -1, 314, -1, 10, -1, 12, -1, 11, -1, 14, -1, 67, -1, -1, 13, 109, 230, 286, 110, -1, 232, -1, 227, 232, -1, 231, 227, 232, -1, 233, -1, 232, 233, -1, 234, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 69, -1, 71, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 25, -1, 26, -1, 27, -1, 24, -1, 237, -1, 231, 237, -1, 236, 233, -1, 236, 233, 227, -1, 236, 233, 237, -1, 238, -1, 226, 239, 226, -1, 235, -1, 227, 235, -1, 238, 228, -1, 238, 235, -1, 28, 109, 276, 110, -1, 28, 109, 169, 110, -1, 78, 109, 276, 110, -1, 78, 109, 169, 110, -1, 241, -1, 231, 241, -1, 240, 233, -1, 240, 233, 227, -1, 244, -1, 227, 244, -1, 241, 228, -1, 243, -1, 231, 243, -1, 242, 233, -1, 242, 233, 227, -1, 74, -1, 227, 74, -1, 243, 228, -1, 245, -1, 256, -1, 247, 114, 248, 115, -1, 247, 274, -1, -1, 247, 274, 246, 114, 248, 115, -1, 247, 109, 292, 110, 114, 248, 115, -1, 247, 285, -1, 31, 312, -1, 32, 312, -1, -1, 248, 249, -1, 250, 132, -1, 40, 250, 132, -1, 251, 132, -1, 40, 251, 132, -1, 366, -1, 366, 274, -1, 250, 116, 274, -1, 250, 116, -1, 225, 252, -1, 251, 116, 312, 252, -1, -1, 254, -1, 318, 253, -1, 331, 253, -1, 357, -1, -1, 254, -1, 130, 163, -1, 30, 312, -1, 255, 114, 258, 372, 115, -1, 255, 274, -1, -1, 255, 274, 257, 114, 258, 372, 115, -1, 274, 259, -1, 258, 116, 274, 259, -1, -1, 131, 163, -1, -1, 261, -1, 263, -1, 262, -1, 262, 135, 116, 134, 263, -1, 263, 135, 116, 134, 96, -1, 262, 135, 116, 134, 96, -1, 267, -1, 263, 135, 116, 134, 267, -1, 262, 135, 116, 134, 267, -1, 262, 135, 116, 134, 263, 135, 116, 134, 267, -1, 268, -1, 263, 135, 116, 134, 268, -1, -1, 265, -1, 266, -1, 266, 135, 116, 134, 96, -1, 270, -1, 269, -1, 266, 135, 116, 134, 270, -1, 266, 135, 116, 134, 269, -1, 269, -1, 362, 272, 373, -1, 370, 272, 373, -1, 227, 370, 272, 373, -1, 217, -1, 270, -1, 362, -1, 370, -1, 227, 370, -1, 371, -1, 224, 336, 373, -1, 224, 340, 373, -1, 224, -1, 224, 351, -1, 139, -1, 271, 116, 139, -1, 137, -1, 74, -1, 75, -1, 138, -1, 74, -1, 75, -1, 139, -1, 74, -1, 75, -1, 366, -1, 225, -1, 225, 357, -1, 366, -1, 371, -1, 225, -1, 225, 345, -1, -1, 131, 278, -1, 107, 278, -1, 164, -1, 114, 279, 372, 115, -1, -1, 278, -1, 280, 278, -1, 279, 116, 278, -1, 279, 116, 280, 278, -1, 281, 130, -1, 274, 130, -1, 282, -1, 281, 282, -1, 113, 274, -1, 111, 134, 164, 135, 112, -1, 111, 134, 310, 135, 112, -1, 111, 134, 163, 96, 163, 135, 112, -1, 113, 111, 134, 146, 135, 112, -1, 284, -1, 231, 284, -1, 283, 233, -1, 283, 233, 227, -1, 285, -1, 227, 285, -1, 284, 228, -1, 75, 109, 292, 110, -1, 287, 373, -1, 286, 116, 287, 373, -1, -1, 289, 274, 288, 290, -1, 225, 336, -1, 33, -1, 35, -1, 34, -1, -1, 290, 291, -1, 128, 274, 109, 292, 110, -1, 128, 114, 134, 298, 115, -1, 128, 109, 134, 286, 135, 110, 114, 134, 298, 115, 109, 292, 110, -1, 276, -1, 164, -1, 292, 116, 276, -1, 292, 116, 164, -1, 33, 294, -1, 232, 33, 294, -1, 293, 116, 294, -1, 295, 290, -1, 295, 290, 131, 276, -1, 274, -1, 273, 109, 134, 286, 135, 110, -1, 36, 274, 109, 134, 286, 135, 110, 114, 115, -1, -1, 36, 274, 109, 134, 286, 135, 110, 114, 297, 298, 115, -1, 299, -1, 298, 134, 299, -1, 300, 135, 132, -1, 301, 135, 132, -1, 215, -1, 217, -1, 300, 135, 116, 134, 272, -1, 225, 309, -1, 301, 135, 116, 134, 309, -1, -1, 303, -1, 305, -1, 303, 134, 305, -1, -1, 303, -1, 212, -1, 307, -1, 198, -1, -1, 5, 82, 306, 114, 304, 115, -1, 40, 305, -1, 308, -1, 323, 173, -1, 327, 134, 207, 173, -1, 216, 173, -1, 224, 323, 173, -1, 227, 323, 173, -1, 231, 323, 173, -1, 231, 227, 323, 173, -1, 224, 327, 134, 207, 173, -1, 227, 327, 134, 207, 173, -1, 231, 327, 134, 207, 173, -1, 231, 227, 327, 134, 207, 173, -1, 318, -1, 331, -1, 323, -1, 163, 122, 163, -1, -1, 64, 109, 141, 110, 312, -1, -1, 313, -1, 314, -1, 313, 314, -1, 39, 109, 109, 315, 110, 110, -1, 316, -1, 315, 116, 316, -1, -1, 317, -1, 317, 109, 170, 110, -1, 272, -1, 234, -1, 235, -1, 228, -1, 319, 312, -1, 320, -1, 321, 312, -1, 322, 312, -1, 137, -1, 109, 319, 110, -1, 149, 318, -1, 149, 227, 318, -1, 109, 320, 110, -1, 319, 349, -1, 109, 320, 110, 349, -1, 109, 321, 110, 350, -1, 109, 321, 110, -1, 109, 320, 110, 109, 134, 264, 135, 110, -1, 109, 322, 110, -1, 324, 312, -1, 325, -1, 326, 312, -1, 319, 109, 134, 264, 135, 110, -1, 109, 325, 110, 109, 134, 264, 135, 110, -1, 109, 324, 110, -1, 149, 323, -1, 149, 227, 323, -1, 109, 325, 110, -1, 109, 325, 110, 349, -1, 109, 326, 110, 350, -1, 109, 326, 110, -1, 328, -1, 329, -1, 330, -1, 319, 109, 271, 110, -1, 109, 329, 110, 109, 271, 110, -1, 109, 328, 110, -1, 149, 327, -1, 149, 227, 327, -1, 109, 329, 110, -1, 109, 329, 110, 349, -1, 109, 330, 110, 350, -1, 109, 330, 110, -1, 332, 312, -1, 333, -1, 334, 312, -1, 335, 312, -1, 341, -1, 109, 332, 110, -1, 149, 331, -1, 149, 227, 331, -1, 109, 333, 110, -1, 332, 349, -1, 109, 333, 110, 349, -1, 109, 334, 110, 350, -1, 109, 334, 110, -1, 332, 109, 134, 264, 135, 110, -1, 109, 333, 110, 109, 134, 264, 135, 110, -1, 109, 335, 110, -1, 319, 312, -1, 337, -1, 338, 312, -1, 339, 312, -1, 149, 336, -1, 149, 227, 336, -1, 109, 337, 110, -1, 319, 355, -1, 109, 337, 110, 349, -1, 109, 338, 110, 350, -1, 109, 338, 110, -1, 319, 109, 134, 264, 135, 110, -1, 109, 337, 110, 109, 134, 264, 135, 110, -1, 109, 339, 110, -1, 341, 312, -1, 342, -1, 343, 312, -1, 344, 312, -1, 74, -1, 75, -1, 149, 340, -1, 149, 227, 340, -1, 109, 342, 110, -1, 341, 355, -1, 109, 342, 110, 355, -1, 341, 109, 134, 264, 135, 110, -1, 109, 342, 110, 109, 134, 264, 135, 110, -1, 346, -1, 347, 312, -1, 348, 312, -1, 149, -1, 149, 227, -1, 149, 345, -1, 149, 227, 345, -1, 109, 346, 110, -1, 349, -1, 109, 346, 110, 349, -1, 109, 347, 110, 350, -1, 109, 347, 110, -1, 109, 134, 264, 135, 110, -1, 109, 346, 110, 109, 134, 264, 135, 110, -1, 109, 348, 110, -1, 111, 112, -1, 111, 112, 350, -1, 350, -1, 111, 134, 164, 135, 112, -1, 111, 134, 117, 135, 112, -1, 350, 111, 134, 164, 135, 112, -1, 350, 111, 134, 117, 135, 112, -1, 352, -1, 353, 312, -1, 354, 312, -1, 149, -1, 149, 227, -1, 149, 351, -1, 149, 227, 351, -1, 109, 352, 110, -1, 355, -1, 109, 352, 110, 355, -1, 109, 353, 110, 350, -1, 109, 353, 110, -1, 109, 134, 264, 135, 110, -1, 109, 352, 110, 109, 134, 264, 135, 110, -1, 109, 354, 110, -1, 356, -1, 356, 350, -1, 350, -1, 111, 112, -1, 111, 134, 227, 117, 135, 112, -1, 111, 134, 227, 135, 112, -1, 111, 134, 227, 164, 135, 112, -1, 111, 134, 7, 226, 164, 135, 112, -1, 111, 134, 227, 7, 164, 135, 112, -1, 358, -1, 359, 312, -1, 360, 312, -1, 149, -1, 149, 227, -1, 149, 357, -1, 149, 227, 357, -1, 109, 358, 110, -1, 349, -1, 109, 358, 110, 349, -1, 109, 359, 110, 350, -1, 109, 359, 110, -1, 109, 358, 110, 109, 134, 264, 135, 110, -1, 109, 360, 110, -1, 362, -1, 370, -1, 227, 370, -1, 363, -1, 364, -1, 149, 225, -1, 227, 149, 225, -1, 149, 371, -1, 227, 149, 371, -1, 149, 361, -1, 227, 149, 361, -1, 111, 112, 225, -1, 365, 225, -1, 111, 112, 350, 225, -1, 365, 350, 225, -1, 350, 225, -1, 111, 112, 363, -1, 365, 363, -1, 111, 112, 350, 363, -1, 365, 350, 363, -1, 350, 363, -1, 111, 134, 227, 117, 135, 112, -1, 111, 134, 227, 164, 135, 112, -1, 111, 134, 231, 164, 135, 112, -1, 111, 134, 231, 227, 164, 135, 112, -1, 370, -1, 227, 370, -1, 367, -1, 368, -1, 369, -1, 149, 225, -1, 227, 149, 225, -1, 149, 371, -1, 227, 149, 371, -1, 149, 366, -1, 227, 149, 366, -1, 111, 112, 225, -1, 111, 112, 350, 225, -1, 350, 225, -1, 111, 112, 368, -1, 111, 112, 350, 368, -1, 350, 368, -1, 111, 134, 263, 135, 112, -1, 111, 112, 109, 260, 110, -1, 370, 109, 134, 260, 135, 110, -1, 218, 109, 134, 260, 135, 110, -1, -1, 116, -1, -1, 131, 164, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 299, 299, 305, 314, 315, 316, 320, 321, 322, 326, 327, 331, 332, 336, 337, 341, 342, 353, 355, 357, 359, 364, 365, 371, 375, 377, 378, 380, 381, 383, 385, 387, 396, 397, 403, 404, 408, 409, 413, 417, 419, 421, 423, 428, 431, 433, 435, 440, 453, 455, 457, 459, 461, 463, 465, 467, 469, 471, 473, 480, 481, 487, 488, 489, 490, 494, 495, 497, 502, 503, 505, 507, 512, 513, 515, 520, 521, 523, 528, 529, 531, 533, 535, 540, 541, 543, 548, 549, 554, 555, 560, 561, 566, 567, 572, 573, 578, 579, 582, 584, 589, 594, 595, 597, 603, 604, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 624, 626, 628, 630, 635, 636, 641, 642, 648, 649, 655, 656, 657, 658, 659, 660, 661, 662, 663, 673, 680, 682, 692, 693, 698, 700, 706, 708, 712, 713, 718, 723, 727, 730, 733, 743, 746, 758, 759, 761, 765, 767, 771, 772, 777, 778, 782, 787, 788, 792, 794, 800, 801, 805, 807, 809, 811, 817, 818, 822, 824, 829, 831, 833, 838, 840, 845, 847, 851, 854, 858, 861, 865, 867, 871, 873, 880, 882, 884, 893, 895, 897, 899, 901, 906, 908, 910, 912, 917, 930, 931, 936, 938, 943, 947, 949, 951, 953, 955, 961, 962, 968, 969, 973, 974, 979, 981, 987, 988, 990, 995, 997, 1004, 1006, 1010, 1011, 1016, 1018, 1022, 1023, 1027, 1029, 1033, 1034, 1038, 1039, 1043, 1044, 1059, 1060, 1061, 1062, 1063, 1067, 1072, 1079, 1089, 1094, 1099, 1107, 1112, 1117, 1122, 1127, 1135, 1157, 1162, 1169, 1171, 1178, 1183, 1188, 1199, 1204, 1209, 1214, 1219, 1228, 1233, 1241, 1242, 1243, 1244, 1250, 1255, 1263, 1264, 1265, 1266, 1270, 1271, 1272, 1273, 1278, 1279, 1288, 1289, 1294, 1295, 1300, 1302, 1304, 1306, 1308, 1311, 1310, 1322, 1323, 1325, 1335, 1336, 1341, 1345, 1347, 1349, 1351, 1353, 1355, 1357, 1359, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1394, 1395, 1397, 1399, 1401, 1406, 1407, 1413, 1414, 1416, 1418, 1423, 1425, 1427, 1429, 1434, 1435, 1437, 1439, 1444, 1445, 1447, 1452, 1453, 1455, 1457, 1462, 1464, 1466, 1471, 1472, 1476, 1478, 1484, 1483, 1487, 1489, 1494, 1496, 1502, 1503, 1508, 1509, 1511, 1512, 1521, 1522, 1524, 1526, 1531, 1533, 1539, 1540, 1542, 1545, 1548, 1553, 1554, 1559, 1564, 1568, 1570, 1576, 1575, 1582, 1584, 1590, 1591, 1599, 1600, 1604, 1605, 1606, 1608, 1610, 1617, 1618, 1620, 1622, 1627, 1628, 1634, 1635, 1639, 1640, 1645, 1646, 1647, 1649, 1657, 1658, 1660, 1663, 1665, 1669, 1670, 1671, 1673, 1675, 1679, 1684, 1692, 1693, 1702, 1704, 1709, 1710, 1711, 1715, 1716, 1717, 1721, 1722, 1723, 1727, 1728, 1729, 1734, 1735, 1736, 1737, 1743, 1744, 1746, 1751, 1752, 1757, 1758, 1759, 1760, 1761, 1776, 1777, 1782, 1783, 1789, 1791, 1794, 1796, 1798, 1821, 1822, 1824, 1826, 1831, 1832, 1834, 1839, 1844, 1845, 1851, 1850, 1854, 1858, 1860, 1862, 1868, 1869, 1874, 1879, 1881, 1886, 1888, 1889, 1891, 1896, 1898, 1900, 1905, 1907, 1912, 1917, 1925, 1931, 1930, 1944, 1945, 1950, 1951, 1955, 1960, 1965, 1973, 1978, 1989, 1990, 2001, 2002, 2008, 2009, 2013, 2014, 2015, 2018, 2017, 2028, 2037, 2043, 2049, 2058, 2064, 2070, 2076, 2082, 2090, 2096, 2104, 2110, 2119, 2120, 2121, 2125, 2129, 2131, 2136, 2137, 2141, 2142, 2147, 2153, 2154, 2157, 2159, 2160, 2164, 2165, 2166, 2167, 2201, 2203, 2204, 2206, 2211, 2216, 2221, 2223, 2225, 2230, 2232, 2234, 2236, 2241, 2243, 2252, 2254, 2255, 2260, 2262, 2264, 2269, 2271, 2273, 2278, 2280, 2282, 2291, 2292, 2293, 2297, 2299, 2301, 2306, 2308, 2310, 2315, 2317, 2319, 2334, 2336, 2337, 2339, 2344, 2345, 2350, 2352, 2354, 2359, 2361, 2363, 2365, 2370, 2372, 2374, 2384, 2386, 2387, 2389, 2394, 2396, 2398, 2403, 2405, 2407, 2409, 2414, 2416, 2418, 2449, 2451, 2452, 2454, 2459, 2464, 2472, 2474, 2476, 2481, 2483, 2488, 2490, 2504, 2505, 2507, 2512, 2514, 2516, 2518, 2520, 2525, 2526, 2528, 2530, 2535, 2537, 2539, 2545, 2547, 2549, 2553, 2555, 2557, 2559, 2573, 2574, 2576, 2581, 2583, 2585, 2587, 2589, 2594, 2595, 2597, 2599, 2604, 2606, 2608, 2614, 2615, 2617, 2626, 2629, 2631, 2634, 2636, 2638, 2651, 2652, 2654, 2659, 2661, 2663, 2665, 2667, 2672, 2673, 2675, 2677, 2682, 2684, 2692, 2693, 2694, 2699, 2700, 2704, 2706, 2708, 2710, 2712, 2714, 2721, 2723, 2725, 2727, 2729, 2731, 2733, 2735, 2737, 2739, 2744, 2746, 2748, 2753, 2779, 2780, 2782, 2786, 2787, 2791, 2793, 2795, 2797, 2799, 2801, 2808, 2810, 2812, 2814, 2816, 2818, 2823, 2828, 2830, 2832, 2850, 2852, 2857, 2858 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "TYPEDEF", "AUTO", "EXTERN", "REGISTER", "STATIC", "INLINE", "FORTRAN", "CONST", "VOLATILE", "RESTRICT", "FORALL", "LVALUE", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE", "SIGNED", "UNSIGNED", "VALIST", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "OTYPE", "FTYPE", "DTYPE", "TRAIT", "SIZEOF", "OFFSETOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "DISABLE", "ENABLE", "FALLTHRU", "TRY", "CATCH", "CATCHRESUME", "FINALLY", "THROW", "THROWRESUME", "AT", "ASM", "ALIGNAS", "ALIGNOF", "ATOMIC", "GENERIC", "NORETURN", "STATICASSERT", "THREADLOCAL", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname", "TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname", "INTEGERconstant", "FLOATINGconstant", "CHARACTERconstant", "STRINGliteral", "ZERO", "ONE", "ARROW", "ICR", "DECR", "LS", "RS", "LE", "GE", "EQ", "NE", "ANDAND", "OROR", "ELLIPSIS", "MULTassign", "DIVassign", "MODassign", "PLUSassign", "MINUSassign", "LSassign", "RSassign", "ANDassign", "ERassign", "ORassign", "ATassign", "THEN", "'('", "')'", "'['", "']'", "'.'", "'{'", "'}'", "','", "'*'", "'&'", "'+'", "'-'", "'!'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'", "':'", "'='", "';'", "$accept", "push", "pop", "constant", "identifier", "no_01_identifier", "no_attr_identifier", "zero_one", "string_literal_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "unary_expression", "ptrref_operator", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression", "equality_expression", "AND_expression", "exclusive_OR_expression", "inclusive_OR_expression", "logical_AND_expression", "logical_OR_expression", "conditional_expression", "constant_expression", "assignment_expression", "assignment_expression_opt", "assignment_operator", "tuple", "tuple_expression_list", "comma_expression", "comma_expression_opt", "statement", "labeled_statement", "compound_statement", "block_item_list", "block_item", "statement_list", "expression_statement", "selection_statement", "case_value", "case_value_list", "case_label", "case_label_list", "case_clause", "switch_clause_list_opt", "switch_clause_list", "choose_clause_list_opt", "choose_clause_list", "fall_through_opt", "fall_through", "iteration_statement", "for_control_expression", "jump_statement", "exception_statement", "handler_list", "handler_clause", "finally_clause", "exception_declaration", "asm_statement", "asm_volatile_opt", "asm_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list_opt", "label_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "local_label_declaration_opt", "local_label_declaration_list", "local_label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "storage_class_name", "basic_type_name", "basic_declaration_specifier", "basic_type_specifier", "direct_type_name", "indirect_type_name", "sue_declaration_specifier", "sue_type_specifier", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type_name", "aggregate_name", "$@2", "aggregate_key", "field_declaration_list", "field_declaration", "new_field_declaring_list", "field_declaring_list", "field_declarator", "bit_subrange_size_opt", "bit_subrange_size", "enum_key", "enum_name", "$@3", "enumerator_list", "enumerator_value_opt", "new_parameter_type_list_opt", "new_parameter_type_list", "new_parameter_list", "new_abstract_parameter_list", "parameter_type_list_opt", "parameter_type_list", "parameter_list", "new_parameter_declaration", "new_abstract_parameter_declaration", "parameter_declaration", "abstract_parameter_declaration", "identifier_list", "identifier_or_type_name", "no_01_identifier_or_type_name", "no_attr_identifier_or_type_name", "type_name_no_function", "type_name", "initializer_opt", "initializer", "initializer_list", "designation", "designator_list", "designator", "typegen_declaration_specifier", "typegen_type_specifier", "typegen_name", "type_parameter_list", "type_parameter", "$@4", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "trait_specifier", "$@5", "trait_declaration_list", "trait_declaration", "new_trait_declaring_list", "trait_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@6", "external_function_definition", "function_definition", "declarator", "subrange", "asm_name_opt", "attribute_list_opt", "attribute_list", "attribute", "attribute_parameter_list", "attrib", "any_word", "variable_declarator", "paren_identifier", "variable_ptr", "variable_array", "variable_function", "function_declarator", "function_no_ptr", "function_ptr", "function_array", "old_function_declarator", "old_function_no_ptr", "old_function_ptr", "old_function_array", "variable_type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 40, 41, 91, 93, 46, 123, 125, 44, 42, 38, 43, 45, 33, 126, 47, 37, 60, 62, 94, 124, 63, 58, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 133, 134, 135, 136, 136, 136, 137, 137, 137, 138, 138, 139, 139, 140, 140, 141, 141, 142, 142, 142, 142, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 144, 144, 145, 145, 146, 146, 147, 147, 147, 147, 147, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 149, 149, 150, 150, 150, 150, 151, 151, 151, 152, 152, 152, 152, 153, 153, 153, 154, 154, 154, 155, 155, 155, 155, 155, 156, 156, 156, 157, 157, 158, 158, 159, 159, 160, 160, 161, 161, 162, 162, 162, 162, 163, 164, 164, 164, 165, 165, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 167, 167, 167, 167, 168, 168, 169, 169, 170, 170, 171, 171, 171, 171, 171, 171, 171, 171, 171, 172, 173, 173, 174, 174, 175, 175, 175, 175, 176, 176, 177, 178, 178, 178, 178, 178, 178, 179, 179, 179, 180, 180, 181, 181, 182, 182, 183, 184, 184, 185, 185, 186, 186, 187, 187, 187, 187, 188, 188, 189, 189, 190, 190, 190, 191, 191, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 193, 193, 193, 194, 194, 194, 194, 194, 195, 195, 195, 195, 196, 197, 197, 197, 197, 197, 198, 198, 198, 198, 198, 199, 199, 200, 200, 201, 201, 202, 202, 203, 203, 203, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 212, 212, 213, 213, 213, 213, 213, 214, 214, 214, 215, 215, 215, 216, 216, 216, 216, 216, 217, 217, 217, 218, 218, 219, 219, 219, 220, 220, 220, 220, 220, 221, 221, 222, 222, 222, 222, 223, 223, 224, 224, 224, 224, 225, 225, 225, 225, 226, 226, 227, 227, 228, 228, 229, 229, 229, 229, 229, 230, 229, 231, 231, 231, 232, 232, 233, 234, 234, 234, 234, 234, 234, 234, 234, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 236, 236, 236, 236, 236, 237, 237, 238, 238, 238, 238, 239, 239, 239, 239, 240, 240, 240, 240, 241, 241, 241, 242, 242, 242, 242, 243, 243, 243, 244, 244, 245, 245, 246, 245, 245, 245, 247, 247, 248, 248, 249, 249, 249, 249, 250, 250, 250, 250, 251, 251, 252, 252, 252, 252, 252, 253, 253, 254, 255, 256, 256, 257, 256, 258, 258, 259, 259, 260, 260, 261, 261, 261, 261, 261, 262, 262, 262, 262, 263, 263, 264, 264, 265, 265, 266, 266, 266, 266, 267, 267, 267, 267, 267, 268, 268, 268, 268, 268, 269, 269, 270, 270, 271, 271, 272, 272, 272, 273, 273, 273, 274, 274, 274, 275, 275, 275, 276, 276, 276, 276, 277, 277, 277, 278, 278, 279, 279, 279, 279, 279, 280, 280, 281, 281, 282, 282, 282, 282, 282, 283, 283, 283, 283, 284, 284, 284, 285, 286, 286, 288, 287, 287, 289, 289, 289, 290, 290, 291, 291, 291, 292, 292, 292, 292, 293, 293, 293, 294, 294, 295, 295, 296, 297, 296, 298, 298, 299, 299, 300, 300, 300, 301, 301, 302, 302, 303, 303, 304, 304, 305, 305, 305, 306, 305, 305, 307, 307, 307, 308, 308, 308, 308, 308, 308, 308, 308, 308, 309, 309, 309, 310, 311, 311, 312, 312, 313, 313, 314, 315, 315, 316, 316, 316, 317, 317, 317, 317, 318, 318, 318, 318, 319, 319, 320, 320, 320, 321, 321, 321, 321, 322, 322, 323, 323, 323, 324, 324, 324, 325, 325, 325, 326, 326, 326, 327, 327, 327, 328, 328, 328, 329, 329, 329, 330, 330, 330, 331, 331, 331, 331, 332, 332, 333, 333, 333, 334, 334, 334, 334, 335, 335, 335, 336, 336, 336, 336, 337, 337, 337, 338, 338, 338, 338, 339, 339, 339, 340, 340, 340, 340, 341, 341, 342, 342, 342, 343, 343, 344, 344, 345, 345, 345, 346, 346, 346, 346, 346, 347, 347, 347, 347, 348, 348, 348, 349, 349, 349, 350, 350, 350, 350, 351, 351, 351, 352, 352, 352, 352, 352, 353, 353, 353, 353, 354, 354, 354, 355, 355, 355, 356, 356, 356, 356, 356, 356, 357, 357, 357, 358, 358, 358, 358, 358, 359, 359, 359, 359, 360, 360, 361, 361, 361, 362, 362, 363, 363, 363, 363, 363, 363, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 365, 365, 365, 365, 366, 366, 366, 367, 367, 368, 368, 368, 368, 368, 368, 369, 369, 369, 369, 369, 369, 370, 371, 371, 371, 372, 372, 373, 373 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 6, 4, 3, 7, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 1, 3, 1, 3, 7, 3, 7, 1, 1, 1, 2, 2, 2, 2, 2, 2, 4, 2, 4, 6, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 3, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 5, 4, 5, 1, 1, 3, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 5, 6, 7, 1, 3, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 4, 2, 7, 1, 3, 1, 2, 1, 2, 1, 2, 2, 5, 7, 5, 9, 5, 9, 1, 3, 1, 1, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 0, 1, 2, 3, 3, 4, 0, 1, 1, 2, 5, 7, 6, 6, 4, 3, 4, 2, 3, 2, 3, 3, 3, 3, 5, 3, 3, 4, 1, 5, 6, 5, 6, 9, 10, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 14, 0, 1, 0, 1, 1, 3, 4, 7, 0, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 8, 7, 7, 5, 9, 2, 2, 5, 3, 5, 4, 3, 4, 4, 7, 3, 3, 3, 3, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 1, 3, 1, 2, 2, 2, 4, 4, 4, 4, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 3, 1, 2, 2, 1, 1, 4, 2, 0, 6, 7, 2, 2, 2, 0, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 2, 0, 7, 2, 4, 0, 2, 0, 1, 1, 1, 5, 5, 5, 1, 5, 5, 9, 1, 5, 0, 1, 1, 5, 1, 1, 5, 5, 1, 3, 3, 4, 1, 1, 1, 1, 2, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 2, 2, 1, 4, 0, 1, 2, 3, 4, 2, 2, 1, 2, 2, 5, 5, 7, 6, 1, 2, 2, 3, 1, 2, 2, 4, 2, 4, 0, 4, 2, 1, 1, 1, 0, 2, 5, 5, 13, 1, 1, 3, 3, 2, 3, 3, 2, 4, 1, 6, 9, 0, 11, 1, 3, 3, 3, 1, 1, 5, 2, 5, 0, 1, 1, 3, 0, 1, 1, 1, 1, 0, 6, 2, 1, 2, 4, 2, 3, 3, 3, 4, 5, 5, 5, 6, 1, 1, 1, 3, 0, 5, 0, 1, 1, 2, 6, 1, 3, 0, 1, 4, 1, 1, 1, 1, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 8, 3, 2, 1, 2, 6, 8, 3, 2, 3, 3, 4, 4, 3, 1, 1, 1, 4, 6, 3, 2, 3, 3, 4, 4, 3, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 1, 1, 2, 3, 3, 2, 4, 6, 8, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 2, 3, 1, 5, 5, 6, 6, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 1, 2, 1, 2, 6, 5, 6, 7, 7, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 8, 3, 1, 1, 2, 1, 1, 2, 3, 2, 3, 2, 3, 3, 2, 4, 3, 2, 3, 2, 4, 3, 2, 6, 6, 6, 7, 1, 2, 1, 1, 1, 2, 3, 2, 3, 2, 3, 3, 4, 2, 3, 4, 2, 5, 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[] = { 291, 291, 312, 310, 313, 311, 314, 315, 297, 299, 298, 0, 300, 326, 318, 323, 321, 322, 320, 319, 324, 325, 330, 327, 328, 329, 545, 545, 545, 0, 0, 0, 291, 217, 301, 316, 317, 7, 357, 0, 8, 14, 15, 0, 2, 60, 61, 563, 9, 291, 523, 521, 244, 3, 452, 3, 257, 0, 3, 3, 3, 245, 3, 0, 0, 0, 292, 293, 295, 291, 304, 307, 309, 338, 283, 331, 336, 284, 346, 285, 353, 350, 360, 0, 0, 361, 286, 471, 475, 3, 3, 0, 2, 517, 522, 527, 296, 0, 0, 545, 575, 545, 2, 586, 587, 588, 291, 0, 729, 730, 0, 12, 0, 13, 291, 267, 268, 0, 292, 287, 288, 289, 290, 524, 302, 390, 546, 547, 368, 369, 12, 443, 444, 11, 439, 442, 0, 501, 496, 487, 443, 444, 0, 0, 526, 218, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 291, 291, 2, 0, 731, 292, 580, 592, 735, 728, 726, 733, 0, 0, 0, 251, 2, 0, 530, 437, 438, 436, 0, 0, 0, 0, 545, 0, 632, 633, 0, 0, 543, 539, 545, 560, 545, 545, 541, 2, 540, 545, 599, 545, 545, 602, 0, 0, 0, 291, 291, 310, 358, 2, 291, 258, 294, 305, 339, 351, 476, 0, 2, 0, 452, 259, 292, 332, 347, 354, 472, 0, 2, 0, 308, 333, 340, 341, 0, 348, 352, 355, 359, 444, 291, 370, 363, 367, 0, 392, 473, 477, 0, 0, 0, 1, 291, 2, 528, 574, 576, 291, 2, 739, 292, 742, 543, 543, 0, 292, 0, 0, 270, 545, 541, 2, 291, 0, 0, 291, 548, 2, 499, 2, 552, 0, 0, 0, 0, 0, 0, 18, 57, 4, 5, 6, 16, 0, 0, 291, 2, 62, 63, 64, 65, 45, 19, 46, 22, 44, 66, 291, 0, 69, 73, 76, 79, 84, 87, 89, 91, 93, 95, 97, 102, 493, 749, 450, 492, 0, 448, 449, 0, 564, 579, 582, 585, 591, 594, 597, 357, 0, 2, 737, 0, 291, 740, 2, 60, 291, 3, 424, 0, 432, 292, 291, 304, 331, 284, 346, 353, 3, 3, 406, 410, 420, 425, 471, 291, 426, 704, 705, 291, 427, 429, 291, 2, 581, 593, 727, 2, 2, 246, 2, 457, 0, 455, 454, 453, 138, 2, 2, 248, 2, 2, 247, 2, 278, 2, 279, 0, 277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 565, 604, 0, 452, 2, 559, 568, 658, 561, 562, 531, 291, 2, 598, 607, 600, 601, 0, 273, 291, 291, 337, 292, 0, 292, 0, 291, 732, 736, 734, 532, 291, 543, 252, 260, 306, 0, 2, 533, 291, 497, 334, 335, 280, 349, 356, 0, 291, 0, 747, 397, 0, 474, 498, 249, 250, 518, 291, 434, 0, 291, 234, 0, 2, 236, 0, 292, 0, 254, 2, 255, 275, 0, 0, 2, 291, 543, 291, 484, 486, 485, 0, 0, 749, 0, 291, 0, 291, 488, 291, 558, 556, 557, 555, 0, 550, 553, 0, 0, 291, 52, 291, 66, 47, 291, 54, 291, 291, 50, 51, 2, 124, 0, 0, 446, 0, 445, 726, 118, 291, 17, 0, 29, 30, 35, 2, 0, 35, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 107, 0, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104, 2, 644, 451, 641, 545, 545, 649, 478, 291, 2, 583, 584, 0, 595, 596, 0, 2, 738, 741, 118, 291, 0, 2, 706, 292, 710, 701, 702, 708, 0, 2, 2, 666, 545, 749, 615, 545, 545, 749, 545, 629, 545, 545, 680, 433, 663, 545, 545, 671, 678, 291, 428, 292, 0, 0, 291, 716, 292, 721, 749, 713, 291, 718, 749, 291, 291, 291, 0, 118, 0, 18, 2, 0, 19, 0, 458, 747, 0, 0, 464, 238, 0, 291, 0, 0, 0, 543, 567, 571, 573, 603, 606, 610, 613, 566, 605, 0, 281, 656, 0, 291, 274, 0, 0, 0, 0, 272, 2, 0, 256, 534, 291, 0, 0, 291, 2, 362, 382, 371, 0, 0, 376, 370, 748, 0, 0, 395, 0, 292, 3, 413, 3, 417, 416, 589, 0, 529, 291, 60, 3, 291, 432, 292, 3, 426, 427, 2, 0, 0, 0, 483, 303, 291, 479, 481, 3, 2, 2, 0, 500, 3, 0, 552, 126, 0, 0, 219, 0, 0, 0, 0, 36, 0, 0, 118, 291, 20, 0, 21, 0, 690, 695, 447, 687, 545, 545, 0, 105, 3, 2, 27, 0, 33, 0, 2, 25, 0, 103, 70, 71, 72, 74, 75, 77, 78, 82, 83, 80, 81, 85, 86, 88, 90, 92, 94, 96, 0, 0, 750, 291, 0, 0, 0, 645, 646, 642, 643, 495, 494, 291, 0, 291, 712, 291, 717, 292, 291, 660, 291, 291, 703, 659, 2, 291, 0, 0, 0, 0, 0, 0, 0, 0, 681, 0, 667, 618, 634, 668, 2, 614, 621, 430, 616, 617, 431, 2, 628, 637, 630, 631, 664, 665, 679, 707, 711, 709, 749, 265, 2, 743, 2, 421, 715, 720, 422, 0, 400, 3, 3, 3, 3, 452, 3, 0, 2, 466, 463, 748, 0, 459, 2, 462, 465, 0, 291, 239, 261, 3, 269, 271, 0, 452, 2, 569, 570, 2, 608, 609, 0, 657, 535, 3, 343, 342, 345, 344, 291, 536, 0, 537, 370, 0, 0, 291, 291, 0, 0, 690, 380, 383, 387, 545, 387, 386, 379, 372, 545, 374, 377, 291, 397, 391, 101, 398, 747, 0, 0, 435, 237, 0, 0, 3, 2, 666, 428, 0, 525, 0, 749, 487, 0, 291, 291, 291, 0, 549, 551, 127, 0, 0, 212, 0, 0, 0, 220, 221, 53, 0, 55, 58, 59, 0, 2, 125, 0, 0, 0, 691, 692, 688, 689, 457, 67, 68, 106, 122, 3, 105, 0, 0, 24, 35, 3, 0, 32, 99, 0, 3, 648, 652, 655, 647, 3, 590, 3, 714, 719, 2, 60, 291, 3, 3, 292, 0, 3, 620, 624, 627, 636, 670, 674, 677, 291, 3, 619, 635, 669, 291, 291, 423, 291, 291, 744, 0, 0, 0, 0, 253, 0, 101, 0, 3, 3, 0, 460, 0, 456, 0, 0, 242, 291, 0, 0, 126, 0, 0, 0, 0, 0, 126, 0, 0, 105, 105, 18, 2, 0, 0, 3, 128, 129, 2, 140, 130, 131, 132, 133, 134, 135, 142, 144, 0, 0, 0, 282, 291, 291, 545, 0, 538, 291, 373, 375, 0, 389, 691, 384, 388, 385, 378, 382, 365, 396, 0, 577, 2, 662, 661, 0, 667, 2, 480, 482, 502, 3, 510, 511, 0, 2, 506, 3, 3, 0, 0, 554, 219, 0, 0, 0, 219, 0, 0, 118, 694, 698, 700, 693, 747, 105, 0, 3, 659, 39, 3, 37, 34, 0, 3, 98, 100, 0, 2, 650, 651, 0, 0, 291, 0, 0, 0, 3, 636, 0, 2, 622, 623, 2, 638, 2, 672, 673, 0, 0, 60, 0, 3, 3, 3, 3, 408, 407, 411, 2, 2, 746, 745, 119, 0, 0, 0, 0, 3, 461, 3, 0, 240, 143, 3, 292, 291, 0, 0, 0, 0, 2, 0, 188, 0, 186, 0, 0, 0, 0, 0, 0, 0, 545, 118, 0, 148, 145, 291, 0, 0, 264, 276, 3, 3, 544, 611, 366, 381, 394, 291, 263, 291, 0, 513, 490, 291, 0, 0, 489, 504, 0, 0, 0, 213, 0, 222, 56, 2, 696, 697, 0, 123, 120, 0, 0, 0, 0, 0, 23, 0, 653, 291, 578, 262, 722, 723, 724, 0, 675, 291, 291, 291, 3, 3, 0, 683, 0, 0, 0, 0, 291, 291, 3, 542, 119, 468, 0, 0, 243, 292, 0, 0, 0, 0, 291, 189, 187, 184, 0, 190, 0, 0, 0, 0, 194, 197, 195, 191, 0, 192, 126, 35, 141, 139, 241, 0, 0, 415, 419, 418, 0, 507, 2, 508, 2, 509, 503, 291, 225, 0, 223, 0, 225, 291, 31, 121, 2, 42, 2, 40, 38, 28, 26, 3, 725, 3, 3, 3, 0, 0, 682, 684, 625, 639, 266, 2, 405, 3, 404, 0, 470, 467, 126, 0, 0, 126, 3, 0, 126, 185, 0, 2, 2, 206, 196, 0, 0, 0, 137, 0, 572, 612, 2, 0, 0, 2, 226, 0, 0, 214, 0, 3, 0, 0, 0, 0, 0, 0, 685, 686, 291, 0, 469, 149, 0, 0, 2, 162, 126, 151, 0, 179, 0, 126, 0, 2, 153, 0, 2, 0, 2, 2, 2, 193, 32, 291, 512, 514, 505, 0, 0, 0, 0, 0, 3, 3, 654, 626, 640, 676, 409, 126, 155, 158, 0, 157, 161, 3, 164, 163, 0, 126, 181, 126, 3, 0, 291, 0, 291, 0, 2, 0, 2, 136, 2, 227, 228, 0, 224, 215, 699, 0, 0, 150, 0, 0, 160, 230, 165, 2, 232, 180, 0, 183, 169, 198, 3, 207, 211, 200, 3, 0, 291, 0, 291, 0, 0, 0, 43, 41, 156, 159, 126, 0, 166, 291, 126, 126, 0, 170, 0, 0, 690, 208, 209, 210, 0, 199, 3, 201, 3, 291, 216, 229, 146, 167, 152, 126, 233, 182, 177, 175, 171, 154, 126, 0, 691, 0, 0, 0, 0, 147, 168, 178, 172, 176, 175, 173, 3, 3, 0, 0, 491, 174, 202, 204, 3, 3, 203, 205 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 813, 468, 301, 47, 134, 135, 302, 303, 304, 305, 761, 762, 1133, 1134, 306, 381, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 1030, 518, 975, 546, 322, 976, 947, 1057, 1518, 1059, 1060, 1061, 1062, 1519, 1063, 1064, 1437, 1438, 1401, 1402, 1403, 1497, 1498, 1502, 1503, 1538, 1539, 1065, 1361, 1066, 1067, 1298, 1299, 1300, 1480, 1068, 146, 953, 954, 955, 1381, 1461, 1472, 1473, 469, 470, 874, 875, 1038, 51, 52, 53, 54, 55, 347, 159, 58, 59, 60, 61, 62, 349, 64, 65, 265, 67, 68, 275, 351, 352, 71, 72, 73, 74, 119, 76, 205, 354, 120, 79, 121, 81, 82, 455, 83, 454, 688, 689, 690, 908, 1086, 909, 84, 85, 458, 456, 696, 855, 856, 857, 858, 699, 700, 701, 359, 360, 361, 362, 466, 340, 136, 137, 522, 324, 171, 645, 646, 647, 648, 649, 86, 122, 88, 489, 490, 939, 491, 278, 495, 325, 89, 138, 139, 90, 1321, 1108, 1109, 1110, 1111, 91, 92, 717, 93, 274, 94, 95, 188, 1032, 679, 412, 126, 96, 501, 502, 503, 189, 269, 191, 192, 193, 270, 99, 100, 101, 102, 103, 104, 105, 196, 197, 198, 199, 200, 825, 605, 606, 607, 608, 201, 610, 611, 612, 572, 573, 574, 575, 751, 106, 614, 615, 616, 617, 618, 619, 968, 753, 754, 755, 595, 365, 366, 367, 368, 326, 165, 108, 109, 110, 370, 694, 569 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1310 static const yytype_int16 yypact[] = { 7316, 8697, -1310, 16, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 22, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 101, 101, 101, 1152, 941, 64, 7548, 141, -1310, -1310, -1310, -1310, -1310, 87, -1310, -1310, -1310, 868, 134, -1310, -1310, -1310, -1310, 9158, -1310, -1310, -1310, -1310, 149, 144, -1310, 1337, -1310, -1310, -1310, -1310, 139, 935, 260, 102, 2892, -1310, -1310, 9196, 790, -1310, -1310, -1310, 904, 293, 5512, 547, 778, 904, 1166, -1310, -1310, 554, 624, -1310, 904, 1343, -1310, 187, -1310, 308, 336, -1310, -1310, -1310, -1310, 251, 144, 101, -1310, 101, -1310, -1310, -1310, -1310, 8923, 1337, -1310, -1310, 1337, -1310, 337, -1310, 9043, -1310, -1310, 1053, 9381, -1310, 1729, 1729, 1729, -1310, -1310, -1310, 101, -1310, -1310, -1310, 410, 413, 418, -1310, -1310, -1310, 433, -1310, -1310, -1310, -1310, -1310, 468, 477, -1310, -1310, 37, 8666, 2607, 742, 369, 496, 509, 523, 530, 535, 8584, 6836, 536, 546, -1310, 9234, -1310, -1310, -1310, -1310, 561, -1310, 245, 4633, 4633, -1310, 562, 361, -1310, -1310, -1310, -1310, 574, 383, 408, 429, 101, 577, -1310, -1310, 935, 3015, 664, -1310, 86, -1310, 101, 101, 144, -1310, -1310, 89, -1310, 101, 101, -1310, 3541, 634, 653, 1729, 6748, -1310, -1310, 623, 9158, -1310, -1310, 904, -1310, -1310, -1310, 144, -1310, 1337, 149, -1310, 7737, -1310, 1729, 1729, 1729, 144, -1310, 1152, -1310, 5996, -1310, -1310, 642, 1729, -1310, 1729, -1310, 87, 8666, -1310, 672, -1310, 941, 697, 1729, -1310, 1152, 699, 702, -1310, 7548, 567, -1310, -1310, -1310, 9125, -1310, -1310, 4167, -1310, 664, 10, 5116, 9381, 1053, 3541, -1310, 94, -1310, -1310, 9043, 1337, 715, 10741, -1310, -1310, 11, -1310, 10483, 740, 772, 10231, 759, 10288, 10307, -1310, 763, -1310, -1310, -1310, -1310, 10364, 10364, 8440, 765, -1310, -1310, -1310, -1310, -1310, -1310, 799, -1310, 616, 2256, 8779, 10288, -1310, 475, 860, 810, 276, 913, 766, 767, 793, 832, 41, -1310, -1310, 807, 704, -1310, 331, -1310, -1310, 2607, -1310, -1310, 242, 835, -1310, 421, 835, 841, 87, -1310, -1310, 846, 8923, -1310, 847, 857, 8892, -1310, -1310, 1352, 2069, 8155, 6748, 904, -1310, 904, 1729, 1729, -1310, -1310, -1310, -1310, -1310, -1310, 1729, 8923, 1337, -1310, -1310, 9419, 1457, -1310, 7886, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 875, 10098, 10288, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 1053, -1310, 928, 862, 891, 893, 1023, 916, 937, 951, 3015, -1310, -1310, 942, 149, 958, -1310, -1310, 970, -1310, -1310, -1310, 9125, -1310, -1310, -1310, -1310, -1310, 3541, -1310, 8666, 8666, -1310, 1729, 1053, 6867, 1337, 8228, -1310, -1310, -1310, -1310, 9125, 10, -1310, -1310, 904, 144, -1310, -1310, 9125, -1310, 6513, -1310, -1310, 1729, 1729, 382, 5342, 969, 972, 960, 1031, 1729, -1310, -1310, -1310, -1310, 9605, -1310, 450, 6629, -1310, 144, 1033, -1310, 1053, 10565, 10155, -1310, -1310, -1310, -1310, 1039, 3541, -1310, 8301, 664, 7432, -1310, -1310, -1310, 984, 626, 807, 941, 10741, 606, 9043, -1310, 10741, -1310, -1310, -1310, -1310, 690, -1310, 1044, 772, 255, 8440, -1310, 9457, -1310, -1310, 8440, -1310, 8553, 8440, -1310, -1310, 1042, -1310, 722, 1047, 818, 1048, -1310, -1310, 9310, 6479, -1310, 321, -1310, -1310, 5116, -1310, 602, 5116, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 5116, -1310, -1310, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 10288, 2426, 5116, -1310, 704, 830, -1310, -1310, 101, 101, -1310, -1310, 8666, -1310, -1310, 970, 567, -1310, 970, 10212, -1310, -1310, -1310, 4524, 6479, 1049, 1054, -1310, 9381, -1310, -1310, 561, -1310, 1056, 774, 1073, 2515, 95, 807, -1310, 101, 101, 807, 98, -1310, 101, 101, 970, -1310, -1310, 101, 101, -1310, 835, 9490, 1337, 10710, 283, 326, 9490, -1310, 4167, -1310, 807, -1310, 8923, -1310, 80, 7852, 7852, 7852, 1337, -1310, 4787, 1065, 875, 744, 1066, 1067, -1310, 1070, 4633, 333, -1310, 1134, 1337, 7852, 567, 1053, 567, 664, 494, 835, -1310, -1310, 584, 835, -1310, -1310, -1310, 772, -1310, 835, 144, 9605, -1310, 737, 1083, 750, 1090, -1310, 1089, 144, -1310, -1310, 9125, 144, 1088, 9457, 1092, -1310, 1677, -1310, 441, 448, 941, -1310, 941, 1091, 10288, -1310, 941, 10710, -1310, -1310, 1098, -1310, -1310, -1310, 567, -1310, 10638, 857, -1310, 7852, 853, 8155, -1310, -1310, 561, 1095, 1097, 984, 3316, -1310, -1310, 10741, -1310, -1310, 1099, -1310, -1310, 1105, -1310, 1099, 1111, 10483, 5116, 62, 1102, 167, 1113, 1121, 1129, 1130, -1310, 1131, 1132, 9348, 6598, -1310, 5116, -1310, 818, 978, -1310, -1310, -1310, 101, 101, 5540, 5116, 1135, -1310, -1310, 757, -1310, 5116, -1310, -1310, 914, -1310, -1310, -1310, -1310, 475, 475, 860, 860, 810, 810, 810, 810, 276, 276, 913, 766, 767, 793, 832, 10288, 282, -1310, 9605, 1136, 1137, 1140, 830, -1310, -1310, -1310, -1310, -1310, 9605, 779, 7852, -1310, 8923, -1310, 6955, 9005, -1310, 7886, 6836, -1310, -1310, 774, 9605, 1063, 1142, 1143, 1145, 1146, 1147, 1148, 1154, -1310, 3759, 2515, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 970, -1310, -1310, -1310, 807, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 1156, -1310, 1159, 1160, -1310, -1310, 149, 1135, 4787, -1310, -1310, -1310, 10098, 1157, -1310, -1310, -1310, -1310, 941, 6225, 1247, -1310, -1310, -1310, -1310, 1150, 149, -1310, -1310, 970, -1310, -1310, 970, 137, 970, -1310, -1310, -1310, -1310, -1310, -1310, 9272, -1310, 144, -1310, -1310, 451, 452, 9419, 7074, 2178, 10288, 3429, -1310, -1310, 1149, 39, 1149, -1310, 941, -1310, 101, -1310, -1310, 8073, 960, -1310, -1310, -1310, 972, 1168, 1169, -1310, -1310, 1170, 1172, -1310, 853, 1305, -1310, 359, -1310, 3316, 807, -1310, 1177, 10741, 9528, 8666, 1180, -1310, -1310, 1175, 1182, 1164, -1310, 10288, 56, 233, 1179, -1310, 1183, 567, 1183, -1310, -1310, 1183, 1184, -1310, 1189, 1190, 1192, 978, -1310, -1310, -1310, 10098, -1310, -1310, -1310, -1310, 1188, 5116, 1193, 567, -1310, 5116, -1310, 567, -1310, -1310, 5116, -1310, 595, 835, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 875, 857, 8892, -1310, -1310, 7193, 1196, -1310, 622, 835, -1310, 644, 649, 835, -1310, 1729, 4053, -1310, -1310, -1310, 9605, 9605, -1310, 8228, 8228, -1310, 1194, 1195, 1198, 1199, -1310, 1200, 531, 27, 1135, -1310, 567, -1310, 4633, -1310, 5116, 453, -1310, 6359, 1213, 1217, 10041, 1222, 1223, 43, 49, 106, 5116, 1228, 144, 5116, 5116, 1208, 1237, 142, 1218, -1310, -1310, -1310, 1236, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 941, 1249, 5116, -1310, 9605, 9605, 101, 1252, -1310, 8810, -1310, -1310, 987, -1310, 3429, -1310, -1310, -1310, -1310, 1677, -1310, -1310, 1253, -1310, -1310, -1310, -1310, 1254, 1305, -1310, -1310, 1239, -1310, 1099, -1310, -1310, 1053, 1258, -1310, -1310, -1310, 806, 1262, -1310, 167, 1267, 10288, 1248, 167, 167, 1273, 9310, 693, 835, -1310, -1310, 1070, 5116, 1274, 1188, 208, 157, 1269, -1310, -1310, 1278, 1269, -1310, -1310, 1282, -1310, -1310, 970, 1286, 1288, 6717, 1287, 1289, 1291, -1310, -1310, 1290, -1310, -1310, 970, -1310, -1310, -1310, -1310, 970, 5116, 5116, 857, 1292, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 10288, 10288, 1294, 1295, 1269, -1310, -1310, 941, -1310, -1310, -1310, 5073, 9528, 5116, 5116, 1370, 5116, -1310, 1298, -1310, 1299, -1310, 1302, 5116, 1306, 5116, 1123, 1307, 30, 101, 5821, 1435, -1310, -1310, 6225, 1303, 456, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 9861, -1310, 8301, 1330, -1310, -1310, 9528, 463, 481, -1310, 1328, 1314, 772, 1341, -1310, 306, -1310, -1310, -1310, -1310, 970, 1332, -1310, -1310, 1342, 753, 834, 567, 1345, -1310, 1350, -1310, 9605, -1310, -1310, -1310, -1310, -1310, 1351, -1310, 9605, 9605, 9605, -1310, -1310, 1359, -1310, 1362, 1365, 1366, 557, 7925, 8040, -1310, -1310, 420, -1310, 1368, 1371, -1310, 8374, 815, 844, 1346, 866, 6094, -1310, -1310, -1310, 485, -1310, 888, 1369, 1375, 144, 1417, 1051, -1310, -1310, 5116, -1310, 10041, 5116, -1310, -1310, -1310, 1377, 1379, -1310, -1310, -1310, 1376, -1310, -1310, -1310, -1310, -1310, -1310, 9528, 772, 195, -1310, 1353, 772, 9605, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 1384, 1388, -1310, -1310, -1310, -1310, -1310, -1310, -1310, 1394, -1310, 1397, -1310, -1310, 10041, 217, 5116, 10041, -1310, 1400, 5116, -1310, 289, 1421, 1423, -1310, -1310, 1403, 1415, 1393, -1310, 1001, -1310, -1310, -1310, 1337, 1053, 1412, 799, 323, 10288, -1310, 953, -1310, 567, 567, 1418, 1425, 1426, 1428, -1310, -1310, 8228, 1427, -1310, 1497, 10288, 1420, -1310, -1310, 9953, -1310, 955, -1310, 1419, 10041, 1424, -1310, -1310, 1442, -1310, 1445, -1310, 1461, 1462, -1310, 1430, 9528, -1310, -1310, -1310, 772, 567, 1453, 1436, 1459, 1269, 1269, -1310, -1310, -1310, -1310, -1310, 10041, 204, -1310, 370, -1310, -1310, 3684, -1310, -1310, 1439, 5116, -1310, 5116, 3684, 144, 9457, 144, 9457, 1463, -1310, 1465, -1310, -1310, 1464, 799, -1310, 968, -1310, -1310, -1310, 1460, 1466, -1310, 10288, 10288, -1310, -1310, 1075, 122, -1310, -1310, 1444, -1310, 1075, -1310, -1310, 2191, 567, -1310, -1310, 144, 9457, 144, 9457, 1472, 1450, 567, -1310, -1310, -1310, -1310, 9953, 1469, 1075, 7664, 5116, 9865, 1470, 1075, 1479, 2191, 3509, -1310, -1310, -1310, 1482, -1310, -1310, -1310, -1310, 8666, -1310, -1310, -1310, 9732, -1310, 9953, -1310, -1310, 1468, 9644, -1310, -1310, 9865, 144, 3509, 144, 1484, 1486, 976, -1310, 9732, -1310, -1310, -1310, 9644, -1310, -1310, -1310, 144, 144, -1310, -1310, -1310, -1310, -1310, -1310, -1310, -1310 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1310, 4585, 3220, -1310, 1680, -1310, 79, 965, -162, -1310, 542, -525, -472, -928, -58, 5006, 0, -1310, 115, 571, 588, 220, 578, 1041, 1045, 1037, 1040, 1043, -1310, 682, -568, 4467, -949, -1310, -743, 627, -136, -680, 399, -1310, 364, -1310, 400, -1052, -1310, -1310, 143, -1310, -1280, -1058, 249, -1310, -1310, -1310, -1310, 74, -1199, -1310, -1310, -1310, -1310, -1310, -1310, 317, -1213, 36, -1310, -398, -1310, 501, 296, -1310, 175, -1310, -322, -1310, -1310, -1310, 558, -827, -1310, -1310, 14, -963, 60, 1949, -1310, -1310, -1310, -66, -1310, 19, 1219, -202, 1852, 4238, -1310, -1310, 54, 75, 689, -242, 1416, -1310, 1975, -1310, -1310, 158, 2131, -1310, 2701, 1038, -1310, -1310, -1310, -621, -1310, 944, 946, 541, 713, -254, -1310, -1310, -1310, 938, 714, -169, -1310, -117, -134, 1167, -1310, -1310, -857, -878, 837, 910, 1055, 25, -1310, 900, 597, -39, -190, -145, 668, 773, -1310, 993, -1310, 2728, 1561, -434, 920, -1310, -1310, 708, -1310, -238, -1310, 241, -1310, -1310, -1310, -1226, 414, -1310, -1310, -1310, 1165, -1310, 35, -1310, -1310, -830, -111, -1309, -151, 3288, -1310, 3069, -1310, 921, -1310, -170, 169, -182, -181, -166, 7, -35, -33, -32, 813, 2, 29, 44, -122, -165, -164, -158, -153, -314, -519, -491, -490, -538, -301, -501, -1310, -1310, -512, 1078, 1084, 1085, 2540, 5063, -571, -588, -558, -543, -557, -1310, -503, -733, -723, -722, -570, -311, -274, -1310, -1310, 240, 176, -77, -1310, 3991, 136, -632, -222 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which number is the opposite. If YYTABLE_NINF, syntax error. */ #define YYTABLE_NINF -521 static const yytype_int16 yytable[] = { 49, 114, 453, 428, 399, 400, 268, 98, 150, 766, 151, 152, 819, 973, 868, 115, 964, 407, 752, 63, 401, 402, 403, 358, 383, 384, 965, 966, 404, 261, 440, 827, 49, 405, 596, 604, 50, 410, 498, 98, 357, 740, 820, 148, 1070, 153, 830, 1069, 609, 49, 844, 63, 837, 948, 69, 1137, 162, 821, 725, 794, 56, 116, 730, 187, 826, 408, 210, 144, 50, 49, 194, 919, 154, 217, 409, 70, 227, 1187, 31, 342, 112, 815, 178, 220, 399, 400, 69, 155, 281, 1439, 628, 425, 56, 1302, 632, 1379, 669, 407, 123, 818, 401, 402, 403, 1204, 1205, 1181, 114, 70, 404, 816, 817, 475, 477, 405, 114, 1195, 678, 267, 272, 476, 505, 1197, 1443, 1177, 682, 31, 211, 923, 31, 221, 203, 124, 262, 31, 31, 263, 566, 31, 527, 493, 31, 213, 494, 1171, 527, 408, 282, 307, 148, 1178, 411, 150, 145, 151, 152, 162, 114, 345, 77, 519, 1439, 210, 1303, 1169, 1170, 1117, -231, -231, 373, 97, 567, 714, 964, 143, 720, 1196, 107, 107, 1199, 1245, 204, 1198, 965, 966, 913, 167, 187, 187, 153, 476, 77, 471, 949, 1458, 162, 253, 147, 411, 419, 815, 411, 97, 267, 481, 828, 411, 601, 835, 107, 601, 49, 568, 149, 1186, 287, 154, 1443, 162, 97, 527, 667, 1443, 210, 1200, 819, 41, 42, 816, 817, 443, 155, 150, 190, 151, 152, 97, 664, -231, 97, 1484, 307, 1443, 1248, 1139, 439, 107, 156, 1077, 1443, 292, 167, 514, 49, 1016, 820, 182, 169, 830, 172, 98, 272, 1398, 1399, 202, 588, 272, 267, 267, 723, 821, 1249, 63, 114, 1512, 162, 1514, 472, 527, 951, 1080, 170, 991, 441, 327, 665, 656, 1015, 463, 50, 164, 672, 674, 1093, 815, 342, 307, -287, 442, 483, 358, 1468, 609, 1526, 248, 1382, 500, 69, 307, 251, 596, 664, 1003, 56, 671, 596, 804, 357, 97, -119, 676, -119, 816, 817, 571, -119, 1187, 1178, 70, 148, 1541, 97, 1400, 465, 1398, 1399, 373, -516, 527, 1084, -119, -119, 114, 734, 1118, 819, 345, 436, 1171, 713, 602, 620, 579, 471, 411, 164, 398, 190, 853, 665, 898, 253, 377, 827, 1119, 625, 735, 556, 557, 625, 1201, 519, 114, 471, 178, 820, 519, 327, 378, 519, 97, 471, 1070, 831, 1116, 1069, 736, 834, 673, 675, 821, 629, 97, 358, 111, 633, 847, 267, 1171, 747, 848, 510, 558, 559, 1409, 41, 42, 187, 851, 436, 357, 77, 854, 986, 373, 1496, 77, 1325, 1169, 1170, 174, 1501, 97, 547, 548, 267, 213, 307, 307, 107, 844, 267, 787, 759, 625, 714, 479, 1326, 472, 849, 1423, 1521, 577, 850, 167, 870, 1528, 642, 578, 342, 1525, 435, 1157, 1159, 1424, 114, 729, 358, 472, 1428, 1429, 547, 1362, 254, 871, 1126, 472, 859, 860, 264, 1536, 447, 849, 267, 357, 742, 1100, 1540, 387, 1187, 330, 267, 598, 625, 877, 49, 1187, 1469, 373, 719, 460, 498, 98, 683, 388, 114, 1244, 547, 97, 578, 390, 1470, 711, 869, 63, 888, 881, 307, 1104, 114, 1135, 1014, 307, 435, 307, 307, 391, 1171, 910, 603, -10, 50, 750, -440, 609, 392, 114, 345, -441, 1016, 996, 582, -467, 411, -467, 804, 523, 1187, 1434, 69, 798, 393, 931, 277, 879, 56, 394, 112, 164, 213, 1236, -467, 2, 207, 4, 5, 6, 7, 914, 417, 70, 704, 395, 327, 327, 916, 912, 705, 914, 916, 1184, 571, 571, 1184, 915, 952, 190, 77, 279, 307, 1316, 917, 437, 1126, 1081, 1082, 1185, 280, 913, 1308, 625, 345, 445, 549, 714, 620, 1317, 77, 1318, 550, 551, 602, 747, 602, 882, 77, 411, 331, 760, 1360, 1276, 1277, 713, 765, 1319, 1474, 471, 35, 1363, 36, 332, 625, 1474, 804, 1014, 1019, 625, 111, 620, 140, 239, 327, 625, 994, 333, 625, 625, 625, 41, 42, 111, 334, 928, 77, -102, 806, 335, 846, -102, 371, 327, 41, 42, 625, 97, 267, 372, 1087, 603, 1087, 520, 107, 465, 861, 240, 768, 769, 770, 342, 241, 1348, 376, 1027, 1522, 1349, 111, 358, 876, 385, 111, -3, 140, 141, 1408, 389, 114, 41, 42, 907, 596, 41, 42, 1074, 357, 885, 691, 411, 111, 442, 140, 141, 472, 528, 529, 530, 1141, 1112, 411, 41, 42, 397, 625, 933, 620, 764, 327, 726, 1101, 1234, 719, 719, 727, 1238, 1034, 399, 400, 531, 472, 532, 409, 533, 534, 1153, 878, 411, 880, 432, 721, 407, 244, 401, 402, 403, 722, 426, 114, 345, 523, 404, 523, 750, 750, 523, 405, 1156, 523, 601, 845, 500, 1158, 230, 601, 598, 427, 231, 711, 1476, 235, 1477, 237, 814, 713, 603, 964, 213, 450, 246, 775, 776, 777, 778, 1373, -288, 965, 966, 927, 408, -364, 213, 8, 9, 10, 11, 12, 571, 2, 207, 4, 5, 6, 7, 731, 625, 1241, 625, 411, 999, 732, 680, 625, 345, 1161, -393, 602, 570, 1425, 411, 111, 31, 140, 141, 1523, 45, 46, 229, 602, 111, 342, 41, 42, 484, 1436, 461, 746, 706, 462, 714, 41, 42, 747, 77, 8, 9, 10, 11, 12, 34, 37, 892, 804, 504, 40, 253, 329, 747, 292, 864, 911, 41, 42, 35, 894, 36, 163, 806, 1330, 77, 747, 980, 508, 31, 520, 972, 513, 981, 307, 520, 195, 525, 520, 218, 213, 527, 228, 812, 562, 601, 1168, 814, 603, 993, 1182, 45, 46, 63, 563, 705, 625, 34, 554, 555, 1494, 1436, 230, 114, 345, 907, 111, 907, 2, 207, 4, 5, 6, 7, 714, 664, 1232, 41, 42, 114, 910, 564, 578, 711, 691, 1356, 565, 749, 69, 411, 142, 747, 933, 933, 56, 45, 46, 719, 568, 570, 37, 411, 114, 307, 40, 1332, 338, 45, 46, 70, -437, 41, 42, 952, 1357, 586, 1105, 952, 952, 589, 747, 163, 932, 665, 601, 48, 113, 750, 912, -3, 45, 46, 657, 35, 374, 36, 1359, 43, 1508, 552, 553, 814, 747, 242, 245, 45, 46, 638, 8, 9, 10, 11, 12, 603, 113, 113, 1227, 48, 1364, 345, 163, 658, 1106, 659, 747, 560, 561, 37, 48, 184, 185, 40, 713, 111, 48, 140, 141, 31, 41, 42, 625, 625, 48, 163, 41, 42, 661, 1126, 48, 984, 981, 48, 77, 890, 48, 444, 1121, 253, 329, 411, 307, 230, 897, 235, 186, 34, 899, 662, 113, 113, 107, 666, 45, 46, 1284, 1285, 37, 1287, 1132, 472, 40, 663, 1132, 1426, 1292, 1444, 1294, 41, 42, 1423, 668, 747, 48, 1323, 1083, 48, 911, 442, 1490, 327, 114, 258, 48, 692, 1491, 907, 1546, 749, 693, 411, 907, 695, 578, 718, 1189, 45, 46, 329, 411, 933, 56, 45, 46, 737, 215, 738, 603, 267, 739, 1369, 1370, 743, 1132, 48, 547, 70, 1418, 981, 107, 1398, 1399, 48, 625, 771, 772, 37, 48, 184, 185, 40, 342, 230, 419, 660, 411, 845, 41, 42, 779, 780, 1351, 374, 773, 774, 457, 697, 345, -235, 481, 329, 411, 48, 48, 733, 744, 510, 215, 748, 756, 691, 1380, 807, 266, 873, 1380, 711, 808, 48, 811, -289, 45, 46, 828, 329, 601, 48, 8, 9, 10, 11, 12, 1295, 1296, 1297, 48, 822, 867, 48, 272, 114, 1331, 1333, 1334, 893, 113, -12, -13, 866, 77, 215, 895, 896, 900, 220, 903, 31, 921, 114, -414, 113, -520, 307, 936, 113, 943, 722, 107, 48, 113, 374, 117, 945, 1404, 956, 130, 625, 131, 132, 133, 114, 63, 48, 48, 34, 950, 41, 42, 957, 48, 958, 959, 960, 961, 1105, 711, 48, 988, 989, 211, 221, 990, 977, 1005, 1006, 911, 1007, 1008, 1009, 1010, 911, 215, 1459, 1079, 213, 1011, 69, 1022, 1421, 160, -402, -401, 56, 1036, 1058, 625, 625, 1071, 1534, 1094, 906, 644, 1073, 1096, 272, 1097, 1095, 70, 1103, 307, 1106, 1113, 747, 1114, 48, 1115, 1120, 1122, 971, 215, 1123, 1124, 702, 1125, 215, 1128, 1131, 1151, 472, 1174, 1175, 1172, 1173, 1176, 48, 48, 8, 9, 10, 11, 12, 691, 114, 1190, 399, 400, 259, 1191, 1132, 1132, 1132, 48, 1193, 1194, 160, 48, 1105, 407, 1202, 1206, 401, 402, 403, 1189, 441, 31, 643, -290, 404, 56, 1207, 1209, -3, 405, 8, 9, 10, 11, 12, 442, 1214, 664, 48, 1219, 70, 1224, 107, 323, 493, 1222, 77, 1507, 48, 34, 1228, 703, 339, 1233, 922, 267, 1235, 1237, 1106, 31, 1240, 408, 1250, 1246, 107, 215, 48, 1252, 724, 1254, 728, 625, 48, 1256, 48, 1257, 1258, 1262, 1259, 1420, 1260, 1269, 107, 1278, 1279, 665, 37, 34, 175, 176, 40, 932, 1203, 601, 1286, 1307, 114, 41, 42, 45, 46, 37, 430, 175, 176, 40, 434, 1289, 1290, 113, 1105, 1291, 41, 42, 48, 1293, 1301, 1314, 114, 1192, 1320, 1322, 48, 77, 1328, 114, 48, 114, 1324, 114, 48, 1329, 1358, 113, 1335, 113, 323, 472, 372, 1336, 1338, 107, 1132, 1132, 472, 985, 215, 150, 1344, 151, 152, 1345, 1346, 1347, 1297, 1365, 1106, 1354, 1506, 214, 1355, 1366, 1383, 114, 1374, 114, 1375, 1376, 434, 233, 113, 488, 1189, 1392, 107, 113, 114, 1393, 56, 1189, 1460, -403, 1506, 1506, 702, 56, 1396, 1407, 215, 1415, 162, 521, 307, 70, 1411, 472, 1413, 528, 529, 530, 70, 1416, 1417, 160, 1422, 1430, 37, 1506, 175, 176, 40, 214, 1431, 1432, 373, 1433, 1435, 41, 42, 865, 1349, 531, 1029, 532, 113, 533, 1305, 1440, 1445, 1449, 1189, 48, 1451, 1447, 1453, 1455, 56, 587, 1509, 1457, 1462, 593, 48, 376, 48, 1463, 1464, 1517, 1475, 1492, 1485, 70, 1487, 1500, 214, 1493, 1489, 703, 1515, 1516, 626, 1520, 1527, 48, 630, 922, 1529, 339, 918, 1531, 920, 1544, 107, 1545, 457, 1208, 77, 1537, 783, 48, 781, 1130, 784, 77, 113, 782, 785, 1058, 1306, 1495, 1410, 1547, 1368, 48, 107, 113, 48, 113, 1239, 1384, 1478, 107, 1088, 702, 216, 901, 1213, 902, 1221, 215, 922, 1092, 924, 702, 800, 214, 1127, 1035, 872, 938, 1315, 243, 323, 323, 1102, 790, 716, 702, 327, 48, 946, 791, 792, 113, 77, 113, 0, 215, 1367, 113, 0, 0, 215, 0, 0, 1138, 0, 113, 0, 0, 687, 479, 107, 214, 0, 0, 216, 0, 214, 0, 48, 48, 0, 117, 0, 0, 0, 1482, 0, 1482, 0, 0, 0, 499, 48, 0, 703, 0, 0, 0, 1372, 0, 0, 0, 0, 0, 703, 0, 488, 0, 323, 0, 488, 0, 0, 0, 1029, 0, 0, 216, 703, 0, 521, 1482, 521, 1482, 0, 521, 0, 323, 521, 0, 0, 215, 177, 0, 8, 9, 10, 11, 12, 339, 0, 0, 0, 0, 37, 215, 184, 185, 40, 0, 1397, 0, 0, 1405, 0, 41, 42, 0, 0, 0, 0, 214, 644, 31, 0, 0, 0, 0, 1039, 0, 0, 0, 48, 0, 0, 0, 0, 0, 216, 0, 0, 905, 177, 411, 48, 177, 0, 0, 0, 45, 46, 34, 323, 0, 922, 0, 1442, 0, 0, 0, 0, 1446, 906, 802, 0, 0, 0, 0, 1479, 1089, 1483, 0, 0, 0, 0, 0, 216, 0, 0, 0, 0, 216, 0, 0, 0, 0, 0, 643, 0, 1467, 0, 177, 891, 113, 843, 0, 0, 0, 215, 593, 0, 0, 214, 0, 1511, 852, 1513, 66, 118, 702, 702, 0, 0, 0, 922, 922, 48, 0, 0, 214, 0, 0, 0, 0, 0, 48, 644, 48, 0, 0, 0, 0, 0, 0, 113, 0, 0, 0, 0, 66, 0, 0, 0, 0, 214, 0, 0, 0, 1542, 0, 1543, 0, 0, 0, 177, 0, 161, 48, 687, 0, 0, 0, 0, 1550, 1551, 0, 216, 702, 702, 0, 0, 0, 0, 1535, 0, 0, 222, 113, 0, 1535, 0, 0, 703, 703, 0, 0, 0, 0, 0, 0, 1535, 643, 0, 0, 1535, 0, 488, 0, 0, 113, 0, 0, 0, 113, 57, 57, 0, 0, 177, 0, 0, 987, 0, 260, 0, 177, 0, 0, 339, 0, 0, 992, 0, 0, 0, 0, 1039, 0, 0, 0, 75, 0, 0, 0, 0, 1004, 57, 0, 0, 0, 703, 703, 0, 0, 0, 0, 0, 216, 0, 0, 0, 0, 0, 113, 0, 328, 0, 0, 0, 0, 0, 0, 75, 260, 350, 214, 0, 0, 0, 0, 57, 0, 0, 57, 0, 0, 0, 995, 0, 0, 0, 0, 802, 177, 0, 0, 0, 0, 0, 216, 0, 113, 0, 214, 406, 215, 0, 0, 214, 223, 177, 0, 0, 0, 177, 48, 0, 0, 0, 424, 48, 0, 429, 431, 0, 1312, 0, 161, 0, 922, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 922, 0, 0, 448, 1282, 0, 0, 451, 0, 452, 0, 0, 702, 0, 0, 0, 0, 0, 459, 0, 702, 702, 702, 0, 66, 0, 348, 0, 0, 473, 0, 0, 177, 0, 214, 802, 0, 0, 0, 480, 0, 0, 339, 0, 0, 0, 0, 431, 214, 0, 0, 78, 353, 1313, 0, 0, 0, 0, 687, 0, 0, 37, 0, 184, 185, 40, 0, 0, 499, 113, 922, 922, 41, 42, 0, 216, 0, 0, 0, 0, 488, 1107, 323, 78, 702, 703, 0, 0, 0, 0, 0, 57, 48, 703, 703, 703, 0, 0, 600, 0, 601, 0, 0, 216, 1166, 1167, 45, 46, 216, 0, 0, 0, 0, 260, 0, 0, 0, 594, 0, 0, 224, 57, 0, 622, 0, 0, 449, 0, 0, 0, 0, 0, 0, 113, 113, 113, 627, 0, 843, 0, 627, 214, 0, 260, 0, 0, 215, 75, 0, 0, 0, 0, 75, 0, 0, 0, 0, 703, 0, 0, 0, 0, 1216, 1217, 0, 0, 0, 0, 0, 0, 37, 0, 184, 185, 40, 0, 0, 0, 0, 216, 0, 41, 42, 37, 0, 184, 185, 40, 0, 177, 473, 0, 0, 216, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350, 0, 905, 355, 411, 473, 0, 0, 0, 0, 45, 46, 0, 473, 687, 1505, 177, 411, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 698, 177, 0, 431, 0, 215, 0, 0, 0, 0, 223, 0, 0, 0, 0, 177, 0, 0, 712, 0, 66, 0, 0, 0, 0, 802, 48, 48, 431, 0, 0, 0, 431, 0, 0, 113, 113, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 0, 0, 0, 216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260, 350, 0, 0, 0, 348, 78, 0, 0, 0, 545, 78, 113, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 177, 75, 0, 0, 0, 0, 214, 0, 0, 75, 1337, 793, 0, 0, 339, 0, 0, 0, 1339, 1340, 1341, 57, 0, 0, 0, 0, 0, 353, 0, 627, 805, 0, 0, 0, 48, 113, 1107, 0, 0, 0, 0, 0, 824, 0, 113, 353, 0, 75, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 48, 48, 594, 0, 0, 348, 0, 594, 0, 0, 0, 0, 224, 627, 0, 0, 350, 350, 350, 0, 0, 0, 286, 0, 1385, 48, 0, 0, 287, 0, 0, 353, 288, 0, 350, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 698, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 473, 0, 295, 0, 379, 0, 348, 1107, 0, 0, 45, 46, 297, 298, 299, 300, 78, 0, 0, 0, 0, 31, 0, 786, 0, 0, 473, 0, 0, 350, 216, 355, 353, 0, 0, 0, 78, 0, 937, 0, 0, 431, 0, 177, 78, 0, 0, 0, 0, 34, 348, 348, 348, 0, 37, 0, 184, 185, 40, 0, 0, 0, 355, 260, 712, 41, 42, 0, 348, 967, 0, 214, 0, 0, 0, 0, 353, 353, 353, 0, 355, 0, 78, 0, 8, 9, 10, 11, 12, 0, 0, 600, 0, 601, 353, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 1107, 0, 0, 698, 0, 0, 0, 353, 31, 0, 0, 0, 0, 698, 0, 350, 0, 627, 75, 355, 1002, 348, 627, 805, 0, 0, 0, 698, 0, 0, 0, 1481, 0, 1481, 0, 0, 34, 1013, 0, 0, 0, 37, 0, 0, 75, 40, 0, 353, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 214, 0, 80, 0, 0, 0, 1481, 0, 1481, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 353, 355, 0, 0, 45, 46, 66, 0, 87, 0, 413, 0, 0, 80, 323, 0, 0, 421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 627, 216, 348, 0, 0, 0, 0, 260, 712, 0, 348, 1085, 87, 0, 0, 0, 353, 355, 355, 355, 0, 0, 225, 0, 0, 0, 353, 0, 353, 0, 0, 0, 0, 223, 0, 355, 353, 1099, 0, 0, 353, 0, 0, 0, 0, 431, 118, 0, 0, 226, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 355, 0, 0, 216, 0, 0, 0, 0, 75, 0, 594, 0, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 576, 429, 0, 0, 0, 0, 698, 698, 580, 350, 350, 583, 0, 355, 0, 0, 353, 0, 0, 0, 0, 0, 363, 0, 177, 0, 0, 0, 57, 1188, 0, 0, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 355, 0, 26, 27, 28, 0, 0, 698, 698, 0, 355, 31, 355, 0, 0, 0, 0, 224, 413, 0, 355, 0, 421, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 0, 80, 34, 0, 35, 0, 36, 37, 0, 208, 39, 40, 348, 348, 0, 0, 0, 627, 41, 42, 0, 0, 0, 87, 0, 0, 0, 0, 87, 0, 0, 0, 57, 0, 0, 353, 353, 0, 353, 353, 0, 712, 0, 0, 43, 0, 209, 0, 78, 0, 0, 0, 45, 46, 0, 0, 0, 0, 75, 0, 0, 0, 413, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 1283, 0, 0, 0, 0, 0, 0, 0, 0, 353, 353, 225, 0, 31, 0, 0, 177, 0, 260, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 698, 0, 712, 0, 226, 0, 118, 34, 0, 0, 0, 0, 37, 0, 184, 185, 40, 0, 0, 0, 127, 127, 127, 41, 42, 0, 0, 0, 0, 0, 0, 0, 698, 0, 0, 576, 576, 0, 0, 0, 698, 698, 698, 0, 80, 0, 353, 0, 0, 186, 0, 350, 350, 0, 0, 0, 0, 45, 46, 356, 0, 0, 57, 57, 80, 1188, 0, 0, 0, 0, 0, 87, 80, 355, 355, 0, 355, 355, 0, 0, 0, 0, 0, 0, 0, 57, 363, 0, 0, 223, 356, 87, 0, 127, 0, 127, 78, 0, 118, 87, 0, 0, 0, 57, 698, 0, 0, 0, 356, 0, 80, 75, 0, 0, 0, 0, 0, 363, 0, 0, 276, 0, 883, 353, 0, 353, 886, 0, 0, 0, 0, 355, 355, 0, 0, 363, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348, 348, 0, 0, 356, 0, 0, 353, 0, 57, 0, 0, 0, 0, 57, 353, 353, 353, 0, 0, 0, 0, 0, 350, 0, 0, 353, 353, 127, 0, 0, 363, 0, 0, 0, 0, 127, 0, 127, 127, 75, 0, 0, 127, 0, 127, 127, 57, 118, 0, 168, 0, 173, 0, 355, 179, 180, 181, 0, 183, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 1188, 0, 0, 0, 234, 0, 0, 1188, 0, 353, 0, 0, 0, 0, 0, 0, 249, 250, 0, 0, 0, 125, 128, 129, 0, 363, 0, 224, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 576, 0, 356, 356, 356, 127, 0, 0, 0, 78, 348, 0, 0, 0, 0, 0, 0, 0, 1188, 0, 356, 355, 31, 355, 0, 1530, 0, 0, 0, 363, 363, 363, 0, 0, 0, 57, 353, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 80, 34, 0, 0, 355, 255, 37, 256, 57, 0, 40, 0, 355, 355, 355, 57, 363, 41, 42, 0, 0, 0, 0, 355, 355, 0, 80, 87, 0, 356, 0, 0, 0, 0, 75, 0, 0, 78, 0, 0, 0, 75, 0, 718, 0, 0, 0, 0, 0, 0, 0, 45, 46, 87, 0, 0, 363, 8, 9, 10, 11, 12, 0, 0, 356, 0, 57, 0, 0, 413, 0, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 396, 0, 0, 363, 75, 0, 0, 0, 0, 0, 415, 416, 0, 0, 0, 420, 0, 422, 423, 0, 356, 0, 0, 0, 0, 0, 34, 0, 0, 0, 356, 37, 356, 184, 185, 40, 0, 225, 0, 0, 356, 0, 41, 42, 356, 0, 0, 363, 0, 8, 9, 10, 11, 12, 0, 355, 0, 363, 1142, 363, 0, 0, 0, 0, 226, 0, 0, 363, 905, 0, 411, 363, 0, 0, 0, 1154, 45, 46, 31, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 591, 0, 599, 0, 0, 0, 0, 0, 78, 0, 0, 80, 34, 623, 624, 78, 31, 37, 0, 184, 185, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 356, 0, 0, 34, 0, 0, 0, 0, 37, 0, 184, 185, 40, 1505, 0, 411, 0, 0, 413, 41, 42, 45, 46, 0, 0, 78, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 127, 0, 0, 0, 0, 0, 266, 0, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 1242, 0, 0, 0, 0, 0, 0, 0, 0, 127, 0, 0, 127, 127, 0, 127, 0, 127, 127, 0, 0, 0, 127, 127, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 0, 26, 27, 28, 29, 356, 356, 30, 356, 356, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 363, 363, 0, 363, 363, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, -291, 0, 0, 0, 1012, 0, 87, 8, 9, 10, 11, 12, 0, 0, 356, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 283, 284, 31, 285, 0, 45, 46, 363, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 127, 286, 34, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 795, 796, 0, 0, 0, 0, 295, 0, 379, 0, 0, 0, 363, 0, 344, 46, 297, 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, 0, 225, 829, 0, 0, 832, 833, 0, 836, 0, 838, 839, 0, 0, 0, 840, 841, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 0, 226, 0, 925, 0, 926, 0, 0, 356, 0, 356, 0, 929, 930, 0, 0, 0, 935, 0, 0, 0, 0, 0, 87, 0, 0, 0, 0, 0, 940, 0, 0, 0, 0, 944, 363, 0, 363, 0, 0, 356, 0, 0, 0, 0, 0, 0, 0, 356, 356, 356, 0, 0, 0, 0, 0, 0, 0, 0, 356, 356, 0, 978, 0, 127, 0, 0, 363, 0, 127, 0, 0, 0, 80, 0, 363, 363, 363, 0, 0, 0, 0, 0, 0, 0, 0, 363, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 0, 969, 970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 219, 0, 0, 1162, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1023, 1024, 1025, 1026, 0, 1028, 0, 0, 0, 0, 0, 0, 0, 283, 284, 31, 285, 0, 356, 0, 1072, 0, 0, 0, 0, 0, 0, 0, 166, 0, 0, 0, 273, 0, 1078, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 363, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 166, 293, 294, 0, 80, 0, 0, 0, 127, 0, 369, 80, 0, 1098, 375, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 0, 0, 87, 1163, 46, 297, 298, 299, 300, 87, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 1129, 26, 27, 28, 80, 166, 1136, 0, 1090, 0, 31, 1140, 0, 0, 0, 0, 1144, 219, 1145, 0, 0, 0, 1147, 0, 1148, 1149, 0, 0, 1152, 0, 0, 87, 0, 0, 0, 166, 0, 1164, 34, 0, 0, 0, 0, 0, 0, 208, 39, 0, 0, 0, 0, 0, 0, 0, 0, 1179, 1180, 0, 0, 0, 375, 0, 0, 0, 0, 0, 0, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 0, 0, 1210, 0, 0, 1212, 0, 0, 45, 46, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 0, 236, 0, 238, 0, 0, 0, 0, 0, 1226, 247, 0, 0, 0, 0, 1230, 1231, 0, 0, 0, 0, 597, 0, 0, 0, 0, 621, 0, 0, 0, 0, 0, 0, 0, 0, 1247, 0, 0, 1251, 0, 0, 212, 1253, 236, 238, 247, 0, 0, 0, 0, 1218, 0, 0, 0, 0, 1261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1268, 0, 1270, 1271, 1272, 1273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 1280, 0, 1281, 0, 0, 0, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 166, 0, 0, 0, 0, 0, 369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1309, 1310, 0, 0, 0, 0, 0, 0, 0, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 236, 238, 247, 0, 0, 0, 0, 0, 0, 0, 0, 715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 1342, 1343, 0, 0, 0, 0, 0, 0, 1304, 0, 1353, 524, 212, 524, 0, 0, 524, 212, 166, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 0, 26, 27, 28, 1388, 0, 1389, 1390, 1391, 0, 31, 0, 0, 212, 0, 0, 166, 0, 1395, 0, 0, 0, 0, 0, 0, 0, 0, 1406, 369, 0, 0, 0, 810, 0, 0, 212, 0, 0, 34, 0, 236, 238, 0, 37, 0, 336, 337, 40, 247, -291, 0, 0, 1427, 0, 41, 42, 0, 0, 597, 0, 0, 321, 0, 597, 0, 0, 0, 0, 0, 0, 0, 346, 369, 369, 369, 0, 157, 0, 0, 0, 634, 0, 338, 382, 382, 0, 0, 0, 45, 46, 369, 212, 0, 0, 0, 1465, 1466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1471, 212, 0, 0, 0, 0, 212, 1471, 212, 283, 284, 0, 285, 0, 524, 0, 252, 0, 0, 0, 0, 0, 0, 0, 0, 212, 257, 0, 212, 212, 0, 0, 0, 0, 0, 0, 212, 0, 286, 1504, 369, 0, 934, 1510, 287, 0, 321, 0, 288, 0, 212, 289, 290, 291, 292, 41, 42, 212, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478, 1532, 0, 1533, 0, 715, 0, 0, 0, 0, 0, 295, 157, 379, 0, 0, 380, 0, 0, 45, 46, 297, 298, 299, 300, 0, 386, 0, 0, 0, 0, 1548, 1549, 0, 0, 0, 0, 0, 0, 1552, 1553, 0, 0, 0, 0, 0, 0, 0, 0, 418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 0, 433, 0, 621, 0, 0, 0, 369, 0, 0, 438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 464, 0, 0, 0, 0, 474, 0, 0, 0, 382, 0, 0, 0, 0, 0, 286, 0, 0, 482, 0, 0, 287, 212, 0, 492, 288, 496, 212, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 715, 295, 0, 379, 0, 0, 0, 0, 757, 45, 46, 297, 298, 299, 300, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 585, 0, 0, 0, 0, 590, 0, 0, 0, 0, 0, 166, 0, 212, 0, 0, 0, 0, 709, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 635, 0, 0, 0, 636, 637, 0, 639, 0, 0, 0, 0, 0, 497, 650, 651, 0, 652, 653, 0, 654, 0, 655, 741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 597, 0, 0, 758, 0, 0, 585, 0, 741, 0, 0, 741, 0, 0, 670, 0, 0, 0, 0, 0, 0, 369, 369, 767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 681, 0, 212, 0, 0, 0, 788, 0, 0, 0, 0, 0, 0, 0, 212, 0, 797, 0, 0, 0, 0, 0, 0, 346, 0, 0, 707, 0, 758, 0, 0, 0, 710, 212, 0, 0, 0, 464, 0, 0, 0, 0, 524, 0, 0, 0, 0, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 745, 26, 27, 28, 862, 0, 0, 0, 0, 0, 31, 0, 382, 0, 0, 763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 715, 0, 0, 34, 0, 35, 0, 36, 0, 0, 208, 39, 0, 0, 0, 0, 283, 284, 789, 285, 0, 0, 0, 0, 0, 0, 0, 799, 0, 0, 0, 0, 0, 0, 801, 0, 0, 0, 212, 0, 809, 0, 219, 0, 0, 286, 0, 209, 0, 823, 0, 287, 0, 45, 46, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 212, 0, 0, 0, 0, 0, 0, 758, 0, 963, 0, 715, 0, 0, 341, 364, 0, 0, 0, 974, 295, 863, 379, 0, 0, 982, 0, 0, 45, 46, 297, 298, 299, 300, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 414, 0, 0, 0, 0, 0, 0, 414, 0, 809, 0, 0, 369, 369, 0, 0, 0, 904, 0, 1000, 1001, 219, 0, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 507, 346, 509, 512, 0, 0, 0, 0, 0, 0, 515, 516, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 941, 942, 509, 509, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 1031, 0, 414, 0, 382, 0, 0, 212, 0, 0, 0, 0, 0, 0, 979, 0, 0, 0, 0, 983, 0, 509, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 346, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 684, 0, 0, 369, 414, 509, 0, 0, 0, 0, 0, 0, 414, 581, 0, 414, 584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 34, 321, 0, 613, 1017, 0, 0, 38, 39, 0, 0, 1018, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 631, 0, 1020, 341, 1021, 0, 0, 382, 0, 0, 524, 0, 524, 974, 0, 0, 0, 741, 1033, 0, 0, 0, 685, 0, 1037, 0, 686, 0, 45, 46, 414, 0, 0, 0, 414, 0, 1075, 0, 1150, 1076, 0, 0, 0, 0, 0, 0, 524, 0, 524, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 382, 0, 1183, 0, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 974, 974, 212, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1215, 0, 414, 0, 0, 364, 0, 590, 0, 0, 0, 31, 0, 0, 0, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 0, 0, 0, 0, 283, 284, 34, 285, 0, 1146, 0, 414, 0, 0, 0, 341, 364, 0, 0, 0, 0, 0, 974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 0, 0, 0, 0, 0, 287, 862, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 1266, 1267, 0, 0, 0, 414, 414, 0, 0, 0, 0, 0, 526, 0, 0, 0, 0, 0, 1211, 0, 0, 295, 0, 379, 803, 364, 971, 0, 0, 45, 46, 297, 298, 299, 300, 613, 0, 613, 613, 0, 0, 0, 0, 0, 613, 0, 0, 0, 0, 0, 0, 0, 1223, 0, 842, 364, 0, 1225, 0, 0, 364, 0, 0, 0, 0, 1229, 0, 0, 0, 364, 364, 364, 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 414, 884, 0, 0, 414, 887, 1255, 0, 0, 0, 0, 889, 0, 0, 0, 0, 0, 0, 1263, 0, 0, 1264, 0, 1265, 0, 0, 0, 0, 0, 0, 414, 0, 0, 0, 0, 0, 0, 1274, 1275, 0, 0, 0, 509, 0, 0, 0, 0, 0, 212, 1371, 0, 0, 741, 364, 613, 0, 0, 0, 0, 1288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341, 364, 0, 0, 0, 414, 414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1327, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 0, 26, 27, 28, 0, 0, 414, 0, 0, 0, 31, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 803, 364, 0, 0, 613, 0, 613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 613, 34, 0, 0, 0, 0, 37, 0, 336, 337, 40, 0, -291, 0, 1377, 0, 1378, 41, 42, 0, 0, 0, 0, 0, 0, 509, 0, 0, 1386, 0, 1387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338, 0, 1394, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1412, 1414, 0, 0, 0, 0, 0, 509, 0, 803, 0, 1419, 0, 0, 1229, 0, 341, 364, 414, 0, 414, 0, 0, 0, 414, 0, 0, 0, 0, 0, 0, 0, 321, 0, 0, 1441, 0, 0, 0, 0, 0, 0, 509, 0, 1448, 613, 613, 1450, 0, 1452, 1454, 1456, 0, 0, 0, 509, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 0, 0, 0, 0, 0, 414, 0, 0, 0, 0, 31, 0, 0, 0, 1486, 0, 1488, 0, 1229, 0, 0, 509, 0, 0, 0, 0, 414, 1143, 0, 0, 0, 0, 0, 1499, 0, 0, 0, 364, 34, 0, 0, 0, 0, 414, 1155, 0, 613, 613, 1160, -291, 0, 0, 0, 0, 0, 0, 0, 0, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 509, 26, 27, 28, 29, 0, 0, 30, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 0, 414, 0, 0, 0, 0, 414, 0, 0, 0, 0, 0, 0, 286, 34, 613, 35, 0, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 509, 509, 803, 414, 1243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 1055, 0, 0, 0, 364, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0, -126, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 283, 284, 31, 1040, 1041, 0, 1042, 0, 341, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 0, 0, 0, 1051, 0, 0, 0, 1052, 1053, 364, 33, 0, 286, 34, 0, 35, 0, 36, 1054, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 1055, 364, 364, 172, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 1056, 0, 0, 0, 0, -126, 0, 0, 0, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 509, 26, 27, 28, 29, 0, 0, 30, 283, 284, 31, 285, 0, 0, 0, 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 0, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 44, 0, 0, 0, 509, 509, 45, 46, 297, 298, 299, 300, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -292, 0, 0, 414, 286, 34, 0, 35, 0, 36, 287, 31, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 414, 414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 295, 0, 343, -292, 0, 414, 0, 757, 344, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 111, 0, 38, 39, 0, 0, 295, 0, 962, 0, 0, 41, 42, 757, 344, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 295, 0, 962, 0, 0, 0, 0, 757, 45, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 208, 39, 0, 0, 295, 0, 343, 0, 0, 0, 0, 0, 344, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 0, 36, 287, 0, 208, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 997, 0, 0, 0, 0, 0, 998, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 0, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 962, 0, 0, 0, 0, 0, 344, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 0, 36, 287, 0, 208, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, -515, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, 0, 0, 45, 46, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, -519, 0, 45, 46, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, 0, 0, 45, 46, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 44, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 208, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 209, 0, 0, 0, 0, 0, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 34, 0, 35, 0, 36, 0, 31, 38, 39, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 34, 0, 26, 27, 28, 0, 0, 38, 39, -399, 677, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 634, 36, 338, 0, 38, 39, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 677, 0, 0, 0, 0, 0, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 35, 0, 36, 31, 684, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1352, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 677, 0, 0, 0, 0, 0, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 685, 26, 27, 28, 1091, 0, 45, 46, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 208, 39, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 271, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 677, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 592, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 208, 39, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 209, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 0, 0, 0, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 517, 0, 0, 172, 0, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 0, 31, 0, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 336, 337, 40, 0, 295, -35, 296, 0, 0, 41, 42, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 338, 26, 27, 28, 0, 0, 45, 46, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 0, 31, 0, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 111, 0, 38, 39, 0, 0, 295, 0, 296, 0, 0, 41, 42, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 44, 26, 27, 28, 0, 0, 45, 46, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 0, 31, 684, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 295, 0, 158, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 685, 26, 27, 28, 1220, 0, 45, 46, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 0, 31, 0, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 295, 0, 592, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 258, 26, 27, 28, 0, 0, 45, 46, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 286, 34, 26, 27, 28, 0, 287, 0, 38, 39, 288, 31, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 295, 0, 379, 38, 39, 0, 0, 0, 45, 46, 297, 298, 299, 300, 467, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 158, 26, 27, 28, 0, 0, 45, 46, 0, 0, 31, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 35, 0, 36, 31, 0, 38, 39, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 37, 0, 38, 39, 40, 31, 0, 0, 0, -3, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 43, 37, 158, 38, 39, 40, 31, 0, 45, 46, 0, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 43, 37, 44, 208, 39, 40, 31, 0, 45, 46, 0, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 34, 26, 27, 28, 43, 37, 271, 336, 337, 40, 31, 0, 45, 46, 0, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 34, 26, 27, 28, 634, 0, 338, 38, 39, 0, 31, -291, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 0, 0, 634, 31, 338, 38, 39, 0, 0, -291, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 208, 39, 0, 31, 338, 0, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 271, 38, 39, 0, 31, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 0, 0, 0, 31, 338, 38, 39, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 38, 39, 0, 31, 685, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 592, 38, 39, 0, 0, 0, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 44, 0, 0, 0, 0, 31, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 283, 284, 0, 285, 1041, 0, 1042, 0, 0, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 0, 0, 1524, 1051, 0, 0, 0, 1052, 1053, 0, 33, 0, 286, 0, 0, 0, 0, -412, 1054, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 172, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 283, 284, 1056, 285, 1041, 0, 1042, -126, 0, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 0, 0, 0, 1051, 0, 0, 0, 1052, 1053, 0, 33, 0, 286, 0, 0, 0, 0, 0, 1054, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 172, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 1056, 0, 0, 0, 0, -126, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 283, 284, 0, 285, 1041, 0, 1042, 1398, 1399, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 0, 0, 1524, 1051, 0, 0, 0, 1052, 1053, 34, 33, 35, 286, 36, 0, 0, 38, 39, 1054, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 1311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 172, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 283, 284, 1056, 285, 1041, 0, 1042, 1398, 1399, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 0, 0, 0, 1051, 0, 0, 0, 1052, 1053, 0, 33, 0, 286, 0, 0, 0, 0, 0, 1054, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 172, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 283, 284, 1056, 285, 1041, 0, 1042, 0, 0, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 0, 0, 0, 1051, 0, 0, 0, 1052, 1053, 0, 33, 0, 286, 0, 0, 0, 0, 0, 1054, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 172, 0, 0, 45, 46, 297, 298, 299, 300, 286, 0, 0, 0, 1056, 0, 640, 0, 140, 141, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 641, 0, 642, 380, 0, 0, 45, 46, 297, 298, 299, 300, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 283, 284, 0, 285, 708, 46, 297, 298, 299, 300, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 286, 293, 294, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 295, 0, 379, 0, 283, 284, 0, 285, 344, 46, 297, 298, 299, 300, 0, 0, 0, 0, 0, 506, 0, 0, 0, 283, 284, 0, 285, 45, 46, 297, 298, 299, 300, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 286, 293, 294, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 295, 0, 0, 0, 283, 284, 0, 285, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 0, 511, 0, 0, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 514, 0, 0, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 175, 176, 40, 0, 0, 0, 0, 0, 0, 41, 42, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 208, 39, 467, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 485, 486, 487, 34, 0, 35, 31, 36, 0, 0, 208, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1310)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 240, 205, 186, 186, 117, 0, 43, 534, 43, 43, 600, 756, 646, 1, 749, 187, 521, 0, 186, 186, 186, 157, 169, 170, 749, 749, 186, 106, 220, 602, 32, 186, 345, 349, 0, 188, 280, 32, 157, 513, 600, 43, 874, 43, 603, 874, 349, 49, 620, 32, 609, 733, 0, 983, 49, 600, 492, 571, 0, 1, 496, 63, 602, 187, 66, 32, 32, 69, 63, 692, 43, 66, 64, 0, 69, 1040, 39, 156, 1, 600, 57, 69, 266, 266, 32, 43, 51, 1398, 364, 202, 32, 63, 368, 1321, 418, 267, 82, 600, 266, 266, 266, 1052, 1053, 1033, 106, 32, 266, 600, 600, 262, 263, 266, 114, 72, 438, 117, 118, 109, 282, 72, 1402, 96, 446, 39, 66, 695, 39, 69, 28, 109, 107, 39, 39, 110, 95, 39, 82, 128, 39, 66, 131, 1021, 82, 267, 109, 147, 148, 122, 111, 186, 11, 186, 186, 148, 156, 157, 0, 295, 1469, 161, 132, 1020, 1021, 109, 44, 45, 161, 0, 129, 482, 905, 109, 488, 132, 0, 1, 72, 1128, 78, 132, 905, 905, 687, 49, 186, 187, 186, 109, 32, 257, 130, 1419, 187, 109, 109, 111, 109, 718, 111, 32, 202, 109, 109, 111, 111, 109, 32, 111, 210, 131, 43, 1040, 72, 186, 1496, 210, 49, 82, 410, 1501, 222, 117, 812, 83, 84, 718, 718, 222, 186, 266, 63, 266, 266, 66, 406, 115, 69, 1452, 240, 1521, 85, 986, 219, 69, 112, 110, 1528, 82, 114, 109, 252, 824, 812, 116, 107, 814, 114, 252, 260, 44, 45, 3, 341, 265, 266, 267, 490, 812, 113, 252, 272, 1486, 267, 1488, 257, 82, 111, 900, 131, 793, 222, 147, 406, 396, 824, 252, 252, 49, 426, 427, 924, 812, 371, 295, 3, 222, 273, 433, 96, 602, 1501, 116, 109, 280, 252, 307, 0, 620, 480, 812, 252, 424, 625, 589, 433, 148, 110, 430, 112, 812, 812, 323, 116, 1288, 122, 252, 328, 1528, 161, 114, 253, 44, 45, 328, 0, 82, 906, 131, 132, 341, 504, 110, 932, 345, 210, 1225, 482, 349, 350, 109, 418, 111, 114, 186, 187, 631, 480, 681, 109, 116, 933, 130, 364, 110, 90, 91, 368, 1049, 506, 371, 438, 348, 932, 511, 240, 132, 514, 210, 446, 1211, 604, 951, 1211, 130, 608, 426, 427, 932, 365, 222, 526, 72, 369, 112, 396, 1275, 116, 116, 285, 125, 126, 114, 83, 84, 406, 629, 272, 526, 252, 633, 130, 406, 1472, 257, 110, 1274, 1275, 55, 1478, 252, 307, 308, 424, 350, 426, 427, 252, 999, 430, 567, 111, 433, 745, 266, 130, 418, 112, 116, 1498, 110, 116, 307, 111, 1503, 113, 116, 525, 1501, 210, 1008, 1009, 130, 454, 494, 590, 438, 1386, 1387, 345, 1288, 98, 130, 967, 446, 635, 636, 131, 1521, 229, 112, 472, 590, 513, 116, 1528, 116, 1441, 110, 480, 345, 482, 652, 484, 1448, 116, 480, 488, 248, 732, 484, 110, 132, 494, 1127, 381, 328, 116, 116, 130, 482, 647, 484, 666, 656, 506, 941, 508, 981, 824, 511, 272, 513, 514, 132, 1394, 687, 349, 109, 484, 521, 109, 824, 116, 525, 526, 109, 1099, 803, 109, 111, 111, 113, 808, 295, 1499, 1394, 484, 578, 132, 710, 109, 654, 484, 116, 467, 307, 473, 1117, 130, 4, 5, 6, 7, 8, 9, 116, 194, 484, 110, 132, 426, 427, 116, 687, 116, 116, 116, 116, 570, 571, 116, 132, 736, 406, 418, 109, 578, 116, 132, 217, 1085, 132, 132, 132, 109, 1090, 132, 589, 590, 227, 117, 904, 594, 132, 438, 116, 123, 124, 600, 116, 602, 109, 446, 111, 110, 528, 1288, 1177, 1178, 745, 533, 132, 1441, 681, 69, 132, 71, 110, 620, 1448, 896, 937, 846, 625, 72, 627, 74, 75, 494, 631, 801, 110, 634, 635, 636, 83, 84, 72, 110, 707, 484, 112, 590, 110, 621, 116, 112, 513, 83, 84, 652, 484, 654, 109, 910, 488, 912, 295, 484, 582, 637, 109, 549, 550, 551, 744, 114, 112, 109, 861, 1499, 116, 72, 809, 651, 115, 72, 132, 74, 75, 1362, 109, 684, 83, 84, 687, 999, 83, 84, 881, 809, 109, 454, 111, 72, 622, 74, 75, 681, 85, 86, 87, 109, 943, 111, 83, 84, 132, 710, 711, 712, 111, 578, 109, 938, 1115, 718, 719, 114, 1119, 867, 905, 905, 109, 707, 111, 64, 113, 114, 109, 653, 111, 655, 112, 110, 907, 114, 905, 905, 905, 116, 109, 744, 745, 506, 905, 508, 749, 750, 511, 905, 109, 514, 111, 620, 732, 109, 70, 111, 625, 109, 74, 745, 1445, 77, 1447, 79, 600, 904, 602, 1505, 698, 132, 86, 556, 557, 558, 559, 1305, 3, 1505, 1505, 705, 907, 114, 712, 10, 11, 12, 13, 14, 793, 4, 5, 6, 7, 8, 9, 110, 801, 109, 803, 111, 805, 116, 443, 808, 809, 1012, 114, 812, 109, 1382, 111, 72, 39, 74, 75, 1500, 117, 118, 33, 824, 72, 903, 83, 84, 114, 1398, 132, 110, 469, 132, 1146, 83, 84, 116, 681, 10, 11, 12, 13, 14, 67, 72, 110, 1122, 109, 76, 109, 110, 116, 82, 111, 687, 83, 84, 69, 110, 71, 49, 809, 111, 707, 116, 110, 109, 39, 506, 756, 109, 116, 874, 511, 63, 112, 514, 66, 805, 82, 69, 109, 118, 111, 1020, 718, 719, 110, 1035, 117, 118, 874, 127, 116, 896, 67, 88, 89, 1468, 1469, 213, 903, 904, 905, 72, 907, 4, 5, 6, 7, 8, 9, 1225, 1085, 110, 83, 84, 919, 1090, 128, 116, 904, 684, 110, 94, 109, 874, 111, 30, 116, 932, 933, 874, 117, 118, 937, 131, 109, 72, 111, 942, 943, 76, 111, 111, 117, 118, 874, 109, 83, 84, 1115, 110, 109, 942, 1119, 1120, 112, 116, 148, 109, 1085, 111, 0, 1, 967, 1090, 112, 117, 118, 110, 69, 161, 71, 110, 109, 1481, 119, 120, 812, 116, 83, 84, 117, 118, 112, 10, 11, 12, 13, 14, 824, 29, 30, 1107, 32, 110, 999, 187, 110, 942, 110, 116, 92, 93, 72, 43, 74, 75, 76, 1146, 72, 49, 74, 75, 39, 83, 84, 1020, 1021, 57, 210, 83, 84, 110, 1530, 63, 115, 116, 66, 874, 669, 69, 222, 957, 109, 110, 111, 1040, 352, 678, 354, 109, 67, 682, 110, 83, 84, 874, 109, 117, 118, 1190, 1191, 72, 1193, 979, 1040, 76, 110, 983, 110, 1200, 110, 1202, 83, 84, 116, 112, 116, 107, 1235, 905, 110, 907, 1002, 110, 943, 1080, 111, 117, 114, 116, 1085, 110, 109, 116, 111, 1090, 131, 116, 109, 1040, 117, 118, 110, 111, 1099, 1040, 117, 118, 506, 66, 508, 937, 1107, 511, 58, 59, 514, 1033, 148, 999, 1040, 115, 116, 942, 44, 45, 156, 1122, 552, 553, 72, 161, 74, 75, 76, 1207, 442, 109, 110, 111, 999, 83, 84, 560, 561, 1274, 328, 554, 555, 244, 114, 1146, 114, 109, 110, 111, 186, 187, 109, 112, 1040, 118, 110, 110, 919, 1322, 112, 109, 29, 1326, 1146, 112, 202, 112, 3, 117, 118, 109, 110, 111, 210, 10, 11, 12, 13, 14, 58, 59, 60, 219, 112, 116, 222, 1188, 1189, 1248, 1249, 1250, 110, 229, 130, 130, 130, 1040, 161, 110, 112, 114, 1189, 112, 39, 115, 1207, 110, 244, 115, 1211, 115, 248, 109, 116, 1040, 252, 253, 406, 1, 110, 1358, 110, 72, 1225, 74, 75, 76, 1229, 1211, 266, 267, 67, 132, 83, 84, 116, 273, 110, 110, 110, 110, 1229, 1225, 280, 110, 110, 1188, 1189, 110, 116, 110, 110, 1085, 110, 110, 110, 110, 1090, 222, 1423, 898, 1188, 110, 1211, 110, 1378, 49, 110, 110, 1211, 115, 874, 1274, 1275, 29, 1515, 110, 130, 380, 131, 112, 1283, 112, 116, 1211, 110, 1288, 1229, 110, 116, 110, 328, 130, 116, 112, 114, 260, 110, 110, 464, 110, 265, 116, 112, 110, 1288, 110, 110, 116, 116, 112, 348, 349, 10, 11, 12, 13, 14, 1080, 1321, 109, 1505, 1505, 106, 109, 1248, 1249, 1250, 365, 109, 109, 114, 369, 1321, 1506, 109, 130, 1505, 1505, 1505, 1288, 1283, 39, 380, 3, 1505, 1288, 112, 132, 115, 1505, 10, 11, 12, 13, 14, 1283, 110, 1530, 396, 110, 1288, 110, 1189, 147, 128, 115, 1211, 1481, 406, 67, 115, 464, 156, 114, 695, 1378, 112, 132, 1321, 39, 110, 1506, 116, 112, 1211, 350, 424, 112, 491, 110, 493, 1394, 430, 110, 432, 110, 112, 110, 112, 1377, 112, 112, 1229, 112, 112, 1530, 72, 67, 74, 75, 76, 109, 1051, 111, 47, 115, 1419, 83, 84, 117, 118, 72, 206, 74, 75, 76, 210, 132, 132, 467, 1419, 132, 83, 84, 472, 132, 132, 110, 1441, 1043, 115, 130, 480, 1288, 115, 1448, 484, 1450, 110, 1452, 488, 112, 109, 491, 112, 493, 240, 1441, 109, 112, 112, 1288, 1386, 1387, 1448, 786, 431, 1505, 112, 1505, 1505, 112, 110, 110, 60, 109, 1419, 112, 1481, 66, 112, 109, 132, 1486, 110, 1488, 110, 114, 272, 76, 528, 275, 1441, 112, 1321, 533, 1499, 112, 1441, 1448, 1424, 110, 1505, 1506, 670, 1448, 112, 110, 473, 109, 1506, 295, 1515, 1441, 96, 1499, 96, 85, 86, 87, 1448, 109, 132, 307, 115, 110, 72, 1530, 74, 75, 76, 118, 110, 110, 1530, 110, 42, 83, 84, 642, 116, 109, 863, 111, 582, 113, 114, 130, 132, 110, 1499, 589, 110, 132, 96, 96, 1499, 341, 1482, 132, 110, 345, 600, 109, 602, 132, 110, 1491, 132, 112, 110, 1499, 110, 132, 161, 112, 115, 670, 109, 132, 364, 115, 115, 621, 368, 906, 110, 371, 691, 110, 693, 110, 1419, 110, 697, 1056, 1441, 132, 564, 637, 562, 977, 565, 1448, 642, 563, 566, 1211, 1211, 1469, 1364, 1540, 1298, 651, 1441, 653, 654, 655, 1120, 1326, 1448, 1448, 912, 789, 66, 684, 1071, 684, 1090, 594, 951, 920, 697, 799, 582, 222, 971, 867, 648, 722, 1229, 83, 426, 427, 939, 570, 484, 813, 1515, 687, 732, 570, 570, 691, 1499, 693, -1, 622, 1297, 697, -1, -1, 627, -1, -1, 986, -1, 705, -1, -1, 454, 1505, 1499, 260, -1, -1, 118, -1, 265, -1, 718, 719, -1, 467, -1, -1, -1, 1450, -1, 1452, -1, -1, -1, 280, 732, -1, 789, -1, -1, -1, 1304, -1, -1, -1, -1, -1, 799, -1, 492, -1, 494, -1, 496, -1, -1, -1, 1037, -1, -1, 161, 813, -1, 506, 1486, 508, 1488, -1, 511, -1, 513, 514, -1, -1, 698, 57, -1, 10, 11, 12, 13, 14, 525, -1, -1, -1, -1, 72, 712, 74, 75, 76, -1, 1356, -1, -1, 1359, -1, 83, 84, -1, -1, -1, -1, 350, 867, 39, -1, -1, -1, -1, 873, -1, -1, -1, 812, -1, -1, -1, -1, -1, 222, -1, -1, 109, 107, 111, 824, 110, -1, -1, -1, 117, 118, 67, 578, -1, 1117, -1, 1402, -1, -1, -1, -1, 1407, 130, 589, -1, -1, -1, -1, 1449, 914, 1451, -1, -1, -1, -1, -1, 260, -1, -1, -1, -1, 265, -1, -1, -1, -1, -1, 867, -1, 1435, -1, 156, 670, 873, 620, -1, -1, -1, 805, 625, -1, -1, 431, -1, 1485, 631, 1487, 0, 1, 1017, 1018, -1, -1, -1, 1177, 1178, 896, -1, -1, 448, -1, -1, -1, -1, -1, 905, 971, 907, -1, -1, -1, -1, -1, -1, 914, -1, -1, -1, -1, 32, -1, -1, -1, -1, 473, -1, -1, -1, 1529, -1, 1531, -1, -1, -1, 219, -1, 49, 937, 684, -1, -1, -1, -1, 1544, 1545, -1, 350, 1075, 1076, -1, -1, -1, -1, 1519, -1, -1, 69, 957, -1, 1525, -1, -1, 1017, 1018, -1, -1, -1, -1, -1, -1, 1536, 971, -1, -1, 1540, -1, 722, -1, -1, 979, -1, -1, -1, 983, 0, 1, -1, -1, 273, -1, -1, 789, -1, 106, -1, 280, -1, -1, 744, -1, -1, 799, -1, -1, -1, -1, 1071, -1, -1, -1, 0, -1, -1, -1, -1, 813, 32, -1, -1, -1, 1075, 1076, -1, -1, -1, -1, -1, 431, -1, -1, -1, -1, -1, 1033, -1, 148, -1, -1, -1, -1, -1, -1, 32, 156, 157, 594, -1, -1, -1, -1, 66, -1, -1, 69, -1, -1, -1, 803, -1, -1, -1, -1, 808, 348, -1, -1, -1, -1, -1, 473, -1, 1071, -1, 622, 187, 1002, -1, -1, 627, 69, 365, -1, -1, -1, 369, 1085, -1, -1, -1, 202, 1090, -1, 205, 206, -1, 1223, -1, 210, -1, 1382, -1, -1, -1, -1, -1, -1, -1, 1107, -1, -1, -1, -1, -1, -1, -1, 1398, -1, -1, 231, 1184, -1, -1, 235, -1, 237, -1, -1, 1255, -1, -1, -1, -1, -1, 246, -1, 1263, 1264, 1265, -1, 252, -1, 157, -1, -1, 257, -1, -1, 432, -1, 698, 896, -1, -1, -1, 267, -1, -1, 903, -1, -1, -1, -1, 275, 712, -1, -1, 0, 157, 1223, -1, -1, -1, -1, 919, -1, -1, 72, -1, 74, 75, 76, -1, -1, 732, 1184, 1468, 1469, 83, 84, -1, 594, -1, -1, -1, -1, 941, 942, 943, 32, 1327, 1255, -1, -1, -1, -1, -1, 222, 1207, 1263, 1264, 1265, -1, -1, 109, -1, 111, -1, -1, 622, 1017, 1018, 117, 118, 627, -1, -1, -1, -1, 341, -1, -1, -1, 345, -1, -1, 69, 252, -1, 351, -1, -1, 231, -1, -1, -1, -1, -1, -1, 1248, 1249, 1250, 364, -1, 999, -1, 368, 805, -1, 371, -1, -1, 1188, 252, -1, -1, -1, -1, 257, -1, -1, -1, -1, 1327, -1, -1, -1, -1, 1075, 1076, -1, -1, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, 698, -1, 83, 84, 72, -1, 74, 75, 76, -1, 589, 418, -1, -1, 712, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 433, -1, 109, 157, 111, 438, -1, -1, -1, -1, 117, 118, -1, 446, 1080, 109, 621, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, 464, 637, -1, 467, -1, 1283, -1, -1, -1, -1, 351, -1, -1, -1, -1, 651, -1, -1, 482, -1, 484, -1, -1, -1, -1, 1122, 1377, 1378, 492, -1, -1, -1, 496, -1, -1, 1386, 1387, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, -1, -1, -1, 805, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 525, 526, -1, -1, -1, 433, 252, -1, -1, -1, 131, 257, 1424, -1, -1, -1, 418, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 433, -1, -1, -1, 732, 438, -1, -1, -1, -1, 1002, -1, -1, 446, 1255, 571, -1, -1, 1207, -1, -1, -1, 1263, 1264, 1265, 484, -1, -1, -1, -1, -1, 464, -1, 589, 590, -1, -1, -1, 1481, 1482, 1229, -1, -1, -1, -1, -1, 602, -1, 1491, 482, -1, 484, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, 1505, 1506, 620, -1, -1, 526, -1, 625, -1, -1, -1, -1, 351, 631, -1, -1, 634, 635, 636, -1, -1, -1, 66, -1, 1327, 1530, -1, -1, 72, -1, -1, 526, 76, -1, 652, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, 670, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, 681, -1, 109, -1, 111, -1, 590, 1321, -1, -1, 117, 118, 119, 120, 121, 122, 418, -1, -1, -1, -1, 39, -1, 130, -1, -1, 707, -1, -1, 710, 1002, 433, 590, -1, -1, -1, 438, -1, 719, -1, -1, 722, -1, 896, 446, -1, -1, -1, -1, 67, 634, 635, 636, -1, 72, -1, 74, 75, 76, -1, -1, -1, 464, 744, 745, 83, 84, -1, 652, 750, -1, 1188, -1, -1, -1, -1, 634, 635, 636, -1, 482, -1, 484, -1, 10, 11, 12, 13, 14, -1, -1, 109, -1, 111, 652, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, 1419, -1, -1, 789, -1, -1, -1, 670, 39, -1, -1, -1, -1, 799, -1, 801, -1, 803, 681, 526, 806, 710, 808, 809, -1, -1, -1, 813, -1, -1, -1, 1450, -1, 1452, -1, -1, 67, 823, -1, -1, -1, 72, -1, -1, 707, 76, -1, 710, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, 1283, -1, 0, -1, -1, -1, 1486, -1, 1488, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, -1, -1, 745, 590, -1, -1, 117, 118, 874, -1, 0, -1, 190, -1, -1, 32, 1515, -1, -1, 197, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 896, 1188, 801, -1, -1, -1, -1, 903, 904, -1, 809, 907, 32, -1, -1, -1, 789, 634, 635, 636, -1, -1, 69, -1, -1, -1, 799, -1, 801, -1, -1, -1, -1, 806, -1, 652, 809, 933, -1, -1, 813, -1, -1, -1, -1, 941, 942, -1, -1, 69, -1, -1, -1, 670, -1, -1, -1, -1, -1, -1, -1, 269, -1, -1, 681, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 874, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 707, -1, -1, 710, -1, -1, 1283, -1, -1, -1, -1, 874, -1, 999, -1, -1, -1, -1, -1, -1, 157, -1, -1, -1, -1, 323, 1012, -1, -1, -1, -1, 1017, 1018, 331, 1020, 1021, 334, -1, 745, -1, -1, 904, -1, -1, -1, -1, -1, 157, -1, 1207, -1, -1, -1, 942, 1040, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 789, -1, 30, 31, 32, -1, -1, 1075, 1076, -1, 799, 39, 801, -1, -1, -1, -1, 806, 398, -1, 809, -1, 402, -1, 813, -1, -1, -1, -1, -1, -1, -1, -1, 252, -1, -1, -1, -1, 257, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, 1020, 1021, -1, -1, -1, 1122, 83, 84, -1, -1, -1, 252, -1, -1, -1, -1, 257, -1, -1, -1, 1040, -1, -1, 1017, 1018, -1, 1020, 1021, -1, 1146, -1, -1, 109, -1, 111, -1, 874, -1, -1, -1, 117, 118, -1, -1, -1, -1, 1040, -1, -1, -1, 479, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, 1189, -1, -1, -1, -1, -1, -1, -1, -1, 1075, 1076, 351, -1, 39, -1, -1, 1377, -1, 1207, -1, -1, -1, 1211, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1223, -1, 1225, -1, 351, -1, 1229, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, 26, 27, 28, 83, 84, -1, -1, -1, -1, -1, -1, -1, 1255, -1, -1, 570, 571, -1, -1, -1, 1263, 1264, 1265, -1, 418, -1, 1146, -1, -1, 109, -1, 1274, 1275, -1, -1, -1, -1, 117, 118, 433, -1, -1, 1188, 1189, 438, 1288, -1, -1, -1, -1, -1, 418, 446, 1017, 1018, -1, 1020, 1021, -1, -1, -1, -1, -1, -1, -1, 1211, 433, -1, -1, 1189, 464, 438, -1, 99, -1, 101, 1040, -1, 1321, 446, -1, -1, -1, 1229, 1327, -1, -1, -1, 482, -1, 484, 1211, -1, -1, -1, -1, -1, 464, -1, -1, 126, -1, 657, 1223, -1, 1225, 661, -1, -1, -1, -1, 1075, 1076, -1, -1, 482, -1, 484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1274, 1275, -1, -1, 526, -1, -1, 1255, -1, 1283, -1, -1, -1, -1, 1288, 1263, 1264, 1265, -1, -1, -1, -1, -1, 1394, -1, -1, 1274, 1275, 182, -1, -1, 526, -1, -1, -1, -1, 190, -1, 192, 193, 1288, -1, -1, 197, -1, 199, 200, 1321, 1419, -1, 53, -1, 55, -1, 1146, 58, 59, 60, -1, 62, -1, -1, -1, -1, -1, -1, -1, -1, 590, -1, 1441, -1, -1, -1, 77, -1, -1, 1448, -1, 1327, -1, -1, -1, -1, -1, -1, 89, 90, -1, -1, -1, 26, 27, 28, -1, 590, -1, 1189, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, 793, -1, 634, 635, 636, 269, -1, -1, -1, 1211, 1394, -1, -1, -1, -1, -1, -1, -1, 1499, -1, 652, 1223, 39, 1225, -1, 1506, -1, -1, -1, 634, 635, 636, -1, -1, -1, 1419, 1394, -1, 670, -1, -1, -1, -1, -1, -1, -1, -1, 652, -1, 681, 67, -1, -1, 1255, 99, 72, 101, 1441, -1, 76, -1, 1263, 1264, 1265, 1448, 670, 83, 84, -1, -1, -1, -1, 1274, 1275, -1, 707, 681, -1, 710, -1, -1, -1, -1, 1441, -1, -1, 1288, -1, -1, -1, 1448, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 118, 707, -1, -1, 710, 10, 11, 12, 13, 14, -1, -1, 745, -1, 1499, -1, -1, 911, -1, -1, -1, -1, -1, -1, 1327, -1, -1, -1, -1, -1, -1, -1, -1, -1, 39, -1, 182, -1, -1, 745, 1499, -1, -1, -1, -1, -1, 192, 193, -1, -1, -1, 197, -1, 199, 200, -1, 789, -1, -1, -1, -1, -1, 67, -1, -1, -1, 799, 72, 801, 74, 75, 76, -1, 806, -1, -1, 809, -1, 83, 84, 813, -1, -1, 789, -1, 10, 11, 12, 13, 14, -1, 1394, -1, 799, 988, 801, -1, -1, -1, -1, 806, -1, -1, 809, 109, -1, 111, 813, -1, -1, -1, 1005, 117, 118, 39, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, 344, -1, 346, -1, -1, -1, -1, -1, 1441, -1, -1, 874, 67, 357, 358, 1448, 39, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, 874, -1, -1, 904, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, 109, -1, 111, -1, -1, 1083, 83, 84, 117, 118, -1, -1, 1499, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 574, 575, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, 1123, -1, -1, -1, -1, -1, -1, -1, -1, 603, -1, -1, 606, 607, -1, 609, -1, 611, 612, -1, -1, -1, 616, 617, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, 33, 1017, 1018, 36, 1020, 1021, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1040, -1, -1, -1, 1017, 1018, -1, 1020, 1021, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, 78, -1, -1, -1, 7, -1, 1040, 10, 11, 12, 13, 14, -1, -1, 1075, 1076, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 37, 38, 39, 40, -1, 117, 118, 1075, 1076, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 754, 755, 66, 67, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 1146, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 574, 575, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, 1146, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, 1189, 603, -1, -1, 606, 607, -1, 609, -1, 611, 612, -1, -1, -1, 616, 617, -1, -1, -1, -1, -1, -1, 1211, -1, -1, -1, -1, 1189, -1, 699, -1, 701, -1, -1, 1223, -1, 1225, -1, 708, 709, -1, -1, -1, 713, -1, -1, -1, -1, -1, 1211, -1, -1, -1, -1, -1, 725, -1, -1, -1, -1, 730, 1223, -1, 1225, -1, -1, 1255, -1, -1, -1, -1, -1, -1, -1, 1263, 1264, 1265, -1, -1, -1, -1, -1, -1, -1, -1, 1274, 1275, -1, 758, -1, 911, -1, -1, 1255, -1, 916, -1, -1, -1, 1288, -1, 1263, 1264, 1265, -1, -1, -1, -1, -1, -1, -1, -1, 1274, 1275, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1288, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1327, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 49, -1, 754, 755, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1327, -1, 66, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, 857, 858, 859, 860, -1, 862, -1, -1, -1, -1, -1, -1, -1, 37, 38, 39, 40, -1, 1394, -1, 877, -1, -1, -1, -1, -1, -1, -1, 114, -1, -1, -1, 118, -1, 891, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 1394, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 147, 86, 87, -1, 1441, -1, -1, -1, 1077, -1, 157, 1448, -1, 931, 161, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, 1441, 117, 118, 119, 120, 121, 122, 1448, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 976, 30, 31, 32, 1499, 210, 982, -1, 916, -1, 39, 987, -1, -1, -1, -1, 992, 222, 994, -1, -1, -1, 998, -1, 1000, 1001, -1, -1, 1004, -1, -1, 1499, -1, -1, -1, 240, -1, 1013, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, 1031, 1032, -1, -1, -1, 265, -1, -1, -1, -1, -1, -1, 272, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1206, -1, -1, 1058, -1, -1, 1061, -1, -1, 117, 118, 295, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 307, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, -1, -1, -1, 76, -1, 78, -1, 80, -1, -1, -1, -1, -1, 1104, 87, -1, -1, -1, -1, 1110, 1111, -1, -1, -1, -1, 345, -1, -1, -1, -1, 350, -1, -1, -1, -1, -1, -1, -1, -1, 1130, -1, -1, 1133, -1, -1, 118, 1137, 120, 121, 122, -1, -1, -1, -1, 1077, -1, -1, -1, -1, 1150, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1163, -1, 1165, 1166, 1167, 1168, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 161, -1, 1181, -1, 1183, -1, -1, -1, 1187, -1, -1, -1, -1, -1, -1, -1, -1, -1, 426, 427, -1, -1, -1, -1, -1, 433, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1216, 1217, -1, -1, -1, -1, -1, -1, -1, 454, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 222, -1, 224, 225, 226, -1, -1, -1, -1, -1, -1, -1, -1, 482, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 494, 1266, 1267, -1, -1, -1, -1, -1, -1, 1206, -1, 1276, 506, 260, 508, -1, -1, 511, 265, 513, 514, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 526, 280, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, 1337, -1, 1339, 1340, 1341, -1, 39, -1, -1, 328, -1, -1, 578, -1, 1351, -1, -1, -1, -1, -1, -1, -1, -1, 1360, 590, -1, -1, -1, 594, -1, -1, 350, -1, -1, 67, -1, 355, 356, -1, 72, -1, 74, 75, 76, 363, 78, -1, -1, 1385, -1, 83, 84, -1, -1, 620, -1, -1, 147, -1, 625, -1, -1, -1, -1, -1, -1, -1, 157, 634, 635, 636, -1, 44, -1, -1, -1, 109, -1, 111, 169, 170, -1, -1, -1, 117, 118, 652, 406, -1, -1, -1, 1428, 1429, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1441, 424, -1, -1, -1, -1, 429, 1448, 431, 37, 38, -1, 40, -1, 684, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, 448, 102, -1, 451, 452, -1, -1, -1, -1, -1, -1, 459, -1, 66, 1480, 710, -1, 712, 1484, 72, -1, 240, -1, 76, -1, 473, 79, 80, 81, 82, 83, 84, 480, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 264, 1512, -1, 1514, -1, 745, -1, -1, -1, -1, -1, 109, 158, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, 172, -1, -1, -1, -1, 1542, 1543, -1, -1, -1, -1, -1, -1, 1550, 1551, -1, -1, -1, -1, -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 801, -1, 209, -1, 805, -1, -1, -1, 809, -1, -1, 218, -1, -1, -1, -1, -1, -1, -1, -1, -1, 228, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, 594, -1, -1, -1, -1, -1, 253, -1, -1, -1, -1, 258, -1, -1, -1, 380, -1, -1, -1, -1, -1, 66, -1, -1, 271, -1, -1, 72, 622, -1, 277, 76, 279, 627, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 296, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 904, 109, -1, 111, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 122, 919, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 338, -1, -1, -1, -1, 343, -1, -1, -1, -1, -1, 943, -1, 698, -1, -1, -1, -1, 474, -1, -1, -1, -1, -1, -1, -1, -1, 712, -1, -1, -1, -1, -1, -1, 372, -1, -1, -1, 376, 377, -1, 379, -1, -1, -1, -1, -1, 732, 386, 387, -1, 389, 390, -1, 392, -1, 394, 513, -1, -1, -1, -1, -1, -1, -1, -1, -1, 999, -1, -1, 526, -1, -1, 411, -1, 531, -1, -1, 534, -1, -1, 419, -1, -1, -1, -1, -1, -1, 1020, 1021, 546, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 444, -1, 793, -1, -1, -1, 568, -1, -1, -1, -1, -1, -1, -1, 805, -1, 578, -1, -1, -1, -1, -1, -1, 585, -1, -1, 470, -1, 590, -1, -1, -1, 476, 824, -1, -1, -1, 481, -1, -1, -1, -1, 1080, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 517, 30, 31, 32, 639, -1, -1, -1, -1, -1, 39, -1, 647, -1, -1, 532, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1146, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, 37, 38, 570, 40, -1, -1, -1, -1, -1, -1, -1, 579, -1, -1, -1, -1, -1, -1, 586, -1, -1, -1, 937, -1, 592, -1, 1188, -1, -1, 66, -1, 111, -1, 601, -1, 72, -1, 117, 118, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, 967, -1, -1, -1, -1, -1, -1, 745, -1, 747, -1, 1225, -1, -1, 156, 157, -1, -1, -1, 757, 109, 641, 111, -1, -1, 763, -1, -1, 117, 118, 119, 120, 121, 122, -1, 1002, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1013, -1, 190, -1, -1, -1, -1, -1, -1, 197, -1, 677, -1, -1, 1274, 1275, -1, -1, -1, 685, -1, 805, 806, 1283, -1, 809, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 283, 823, 285, 286, -1, -1, -1, -1, -1, -1, 293, 294, 716, -1, -1, -1, -1, -1, -1, -1, -1, -1, 726, 727, 307, 308, -1, -1, -1, -1, -1, -1, -1, -1, 1085, -1, -1, -1, -1, -1, -1, 863, -1, 269, -1, 867, -1, -1, 1099, -1, -1, -1, -1, -1, -1, 759, -1, -1, -1, -1, 764, -1, 345, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 904, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 40, -1, -1, 1394, 323, 381, -1, -1, -1, -1, -1, -1, 331, 332, -1, 334, 335, -1, -1, -1, -1, -1, -1, -1, -1, -1, 345, 67, 943, -1, 349, 828, -1, -1, 74, 75, -1, -1, 835, -1, -1, -1, -1, -1, 1188, -1, -1, -1, -1, 368, -1, 848, 371, 850, -1, -1, 971, -1, -1, 1450, -1, 1452, 977, -1, -1, -1, 981, 864, -1, -1, -1, 111, -1, 870, -1, 115, -1, 117, 118, 398, -1, -1, -1, 402, -1, 882, -1, 1002, 885, -1, -1, -1, -1, -1, -1, 1486, -1, 1488, 1013, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 433, -1, -1, -1, -1, -1, 1035, -1, 1037, -1, 1515, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1052, 1053, 1283, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1073, -1, 479, -1, -1, 482, -1, 962, -1, -1, -1, 39, -1, -1, -1, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, -1, -1, -1, -1, 37, 38, 67, 40, -1, 997, -1, 521, -1, -1, -1, 525, 526, -1, -1, -1, -1, -1, 1128, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 1146, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 1161, 1162, -1, -1, -1, 570, 571, -1, -1, -1, -1, -1, 1055, -1, -1, -1, -1, -1, 1061, -1, -1, 109, -1, 111, 589, 590, 114, -1, -1, 117, 118, 119, 120, 121, 122, 600, -1, 602, 603, -1, -1, -1, -1, -1, 609, -1, -1, -1, -1, -1, -1, -1, 1095, -1, 619, 620, -1, 1100, -1, -1, 625, -1, -1, -1, -1, 1108, -1, -1, -1, 634, 635, 636, -1, 695, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 652, -1, -1, -1, -1, 657, 658, -1, -1, 661, 662, 1141, -1, -1, -1, -1, 668, -1, -1, -1, -1, -1, -1, 1153, -1, -1, 1156, -1, 1158, -1, -1, -1, -1, -1, -1, 687, -1, -1, -1, -1, -1, -1, 1172, 1173, -1, -1, -1, 756, -1, -1, -1, -1, -1, 1530, 1302, -1, -1, 1305, 710, 711, -1, -1, -1, -1, 1194, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 744, 745, -1, -1, -1, 749, 750, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1241, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, 793, -1, -1, -1, 39, -1, -1, -1, 801, -1, -1, -1, -1, -1, -1, 808, 809, -1, -1, 812, -1, 814, -1, -1, -1, -1, -1, -1, -1, -1, -1, 824, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 78, -1, 1316, -1, 1318, 83, 84, -1, -1, -1, -1, -1, -1, 906, -1, -1, 1330, -1, 1332, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 1349, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1365, 1366, -1, -1, -1, -1, -1, 951, -1, 896, -1, 1376, -1, -1, 1379, -1, 903, 904, 905, -1, 907, -1, -1, -1, 911, -1, -1, -1, -1, -1, -1, -1, 1515, -1, -1, 1400, -1, -1, -1, -1, -1, -1, 986, -1, 1409, 932, 933, 1412, -1, 1414, 1415, 1416, -1, -1, -1, 999, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, -1, -1, 967, -1, -1, -1, -1, 39, -1, -1, -1, 1454, -1, 1456, -1, 1458, -1, -1, 1040, -1, -1, -1, -1, 988, 989, -1, -1, -1, -1, -1, 1473, -1, -1, -1, 999, 67, -1, -1, -1, -1, 1005, 1006, -1, 1008, 1009, 1010, 78, -1, -1, -1, -1, -1, -1, -1, -1, 1020, 1021, -1, -1, -1, -1, -1, -1, -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, 27, -1, 1117, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1083, -1, 1085, -1, -1, -1, -1, 1090, -1, -1, -1, -1, -1, -1, 66, 67, 1099, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, 1177, 1178, 1122, 1123, 1124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, 1146, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, 132, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 41, -1, 43, -1, 1207, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, 1225, 64, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 1274, 1275, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, -1, -1, -1, 132, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 1382, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, -1, -1, -1, -1, 1398, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1394, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, 1468, 1469, 117, 118, 119, 120, 121, 122, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, 1481, 66, 67, -1, 69, -1, 71, 72, 39, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, 1505, 1506, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 78, -1, 1530, -1, 116, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, 83, 84, 116, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 0, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, 115, -1, 117, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 67, -1, 69, -1, 71, -1, 39, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 67, -1, 30, 31, 32, -1, -1, 74, 75, 110, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, 109, 71, 111, -1, 74, 75, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, 69, -1, 71, 39, 40, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, 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, 111, 30, 31, 32, 115, -1, 117, 118, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 109, 110, 111, -1, -1, 83, 84, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, 117, 118, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, 83, 84, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, 117, 118, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, 40, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, 115, -1, 117, 118, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, 117, 118, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, 117, 118, 119, 120, 121, 122, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, 117, 118, -1, -1, 39, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, 69, -1, 71, 39, -1, 74, 75, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, -1, -1, 114, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, 109, 72, 111, 74, 75, 76, 39, -1, 117, 118, -1, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, 109, 72, 111, 74, 75, 76, 39, -1, 117, 118, -1, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 67, 30, 31, 32, 109, 72, 111, 74, 75, 76, 39, -1, 117, 118, -1, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 67, 30, 31, 32, 109, -1, 111, 74, 75, -1, 39, 78, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, -1, -1, 109, 39, 111, 74, 75, -1, -1, 78, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, 111, -1, -1, -1, -1, -1, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, 111, 74, 75, -1, 39, -1, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, -1, -1, -1, 39, 111, 74, 75, -1, -1, -1, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, 111, 74, 75, -1, -1, -1, 117, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 111, -1, -1, -1, -1, 39, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 37, 38, -1, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, 110, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 37, 38, 127, 40, 41, -1, 43, 132, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, -1, -1, -1, 132, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 37, 38, -1, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, 67, 64, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 37, 38, 127, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 37, 38, 127, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, 66, -1, -1, -1, 127, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, 113, 114, -1, -1, 117, 118, 119, 120, 121, 122, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, 111, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, 109, -1, -1, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, -1, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, 34, 35, 67, -1, 69, 39, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 36, 39, 40, 64, 67, 69, 71, 72, 74, 75, 76, 83, 84, 109, 111, 117, 118, 137, 140, 149, 198, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 245, 247, 255, 256, 283, 284, 285, 293, 296, 302, 303, 305, 307, 308, 314, 319, 323, 324, 325, 326, 327, 328, 329, 330, 350, 367, 368, 369, 370, 72, 139, 140, 149, 215, 217, 225, 227, 237, 241, 243, 284, 82, 109, 312, 313, 314, 312, 312, 72, 74, 75, 76, 138, 139, 273, 274, 294, 295, 74, 75, 274, 109, 305, 11, 199, 109, 149, 319, 324, 325, 326, 328, 329, 330, 112, 134, 111, 218, 225, 227, 323, 327, 366, 367, 370, 371, 135, 107, 131, 277, 114, 135, 173, 74, 75, 137, 272, 135, 135, 135, 116, 135, 74, 75, 109, 149, 309, 318, 319, 320, 321, 322, 323, 327, 331, 332, 333, 334, 335, 341, 3, 28, 78, 239, 3, 5, 74, 111, 149, 217, 228, 232, 235, 244, 285, 323, 327, 370, 215, 217, 227, 237, 241, 243, 284, 323, 327, 33, 233, 233, 228, 235, 135, 233, 228, 233, 228, 75, 109, 114, 274, 285, 114, 274, 233, 228, 116, 135, 135, 0, 134, 109, 173, 312, 312, 134, 111, 225, 227, 368, 272, 272, 131, 227, 109, 149, 309, 319, 323, 111, 149, 370, 306, 230, 314, 109, 290, 109, 109, 51, 109, 37, 38, 40, 66, 72, 76, 79, 80, 81, 82, 86, 87, 109, 111, 119, 120, 121, 122, 136, 140, 141, 142, 143, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 167, 225, 276, 292, 366, 371, 227, 110, 110, 110, 110, 110, 110, 110, 74, 75, 111, 225, 272, 350, 368, 111, 117, 149, 164, 217, 218, 224, 227, 231, 232, 237, 240, 241, 243, 262, 263, 267, 268, 269, 270, 284, 350, 362, 363, 364, 365, 370, 371, 112, 109, 323, 327, 370, 109, 116, 132, 111, 114, 149, 164, 278, 278, 115, 134, 116, 132, 109, 116, 132, 116, 132, 116, 132, 312, 132, 319, 320, 321, 322, 332, 333, 334, 335, 227, 318, 331, 64, 311, 111, 312, 349, 350, 312, 312, 173, 134, 109, 312, 349, 312, 312, 227, 309, 109, 109, 226, 227, 225, 227, 112, 134, 225, 366, 371, 173, 134, 272, 277, 217, 232, 323, 327, 173, 134, 294, 227, 237, 132, 227, 227, 292, 248, 246, 258, 274, 257, 227, 294, 132, 132, 305, 134, 139, 271, 3, 135, 207, 208, 222, 224, 227, 134, 311, 109, 311, 164, 319, 227, 109, 134, 272, 114, 33, 34, 35, 225, 286, 287, 289, 134, 128, 131, 291, 134, 228, 234, 235, 272, 315, 316, 317, 109, 141, 109, 148, 109, 148, 151, 109, 148, 109, 109, 148, 148, 111, 164, 169, 173, 225, 275, 366, 370, 112, 134, 82, 85, 86, 87, 109, 111, 113, 114, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 131, 166, 151, 151, 117, 123, 124, 119, 120, 88, 89, 90, 91, 125, 126, 92, 93, 118, 127, 128, 94, 95, 129, 131, 373, 109, 149, 345, 346, 347, 348, 349, 110, 116, 109, 349, 350, 109, 349, 350, 134, 109, 225, 368, 112, 134, 135, 111, 225, 227, 361, 362, 370, 371, 135, 109, 111, 149, 319, 336, 337, 338, 339, 340, 341, 342, 343, 344, 350, 351, 352, 353, 354, 355, 356, 149, 370, 227, 135, 135, 149, 225, 227, 363, 272, 225, 350, 363, 272, 109, 134, 134, 134, 112, 134, 72, 111, 113, 140, 274, 278, 279, 280, 281, 282, 134, 134, 134, 134, 134, 134, 309, 110, 110, 110, 110, 110, 110, 110, 318, 331, 109, 277, 112, 207, 134, 309, 169, 276, 169, 276, 309, 111, 207, 311, 173, 134, 207, 110, 40, 111, 115, 225, 249, 250, 251, 366, 114, 116, 372, 131, 259, 114, 227, 264, 265, 266, 269, 270, 110, 116, 173, 134, 117, 164, 134, 224, 227, 263, 362, 370, 303, 304, 109, 149, 336, 110, 116, 373, 274, 286, 109, 114, 274, 276, 286, 110, 116, 109, 141, 110, 130, 275, 275, 275, 145, 164, 276, 275, 112, 134, 110, 116, 110, 109, 149, 349, 357, 358, 359, 360, 110, 116, 164, 111, 139, 144, 145, 134, 111, 139, 144, 164, 151, 151, 151, 152, 152, 153, 153, 154, 154, 154, 154, 155, 155, 156, 157, 158, 159, 160, 130, 169, 164, 134, 346, 347, 348, 227, 345, 312, 312, 164, 276, 134, 271, 134, 225, 350, 363, 227, 231, 112, 112, 134, 370, 112, 109, 134, 319, 337, 338, 339, 342, 352, 353, 354, 112, 134, 227, 336, 340, 351, 109, 312, 355, 373, 312, 312, 373, 109, 312, 355, 312, 312, 312, 312, 350, 225, 361, 371, 272, 112, 116, 112, 116, 373, 225, 363, 373, 260, 261, 262, 263, 260, 260, 272, 164, 134, 111, 274, 130, 116, 372, 278, 111, 130, 282, 29, 209, 210, 272, 260, 139, 309, 139, 311, 109, 349, 350, 109, 349, 350, 141, 350, 173, 264, 110, 110, 110, 110, 112, 173, 207, 173, 114, 250, 251, 112, 134, 109, 130, 149, 252, 254, 318, 319, 331, 357, 116, 132, 116, 132, 274, 248, 274, 115, 162, 163, 258, 135, 135, 139, 222, 135, 135, 260, 109, 149, 370, 135, 115, 227, 287, 288, 135, 134, 134, 109, 135, 110, 316, 169, 170, 130, 132, 111, 141, 200, 201, 202, 110, 116, 110, 110, 110, 110, 111, 164, 358, 359, 360, 227, 357, 312, 312, 114, 151, 167, 164, 165, 168, 116, 135, 134, 110, 116, 164, 134, 115, 162, 130, 264, 110, 110, 110, 345, 264, 110, 260, 225, 363, 111, 117, 149, 164, 164, 227, 342, 264, 110, 110, 110, 110, 110, 110, 110, 7, 227, 336, 340, 351, 134, 134, 373, 134, 134, 110, 135, 135, 135, 135, 277, 135, 162, 163, 164, 310, 134, 278, 280, 115, 134, 211, 274, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 57, 61, 62, 72, 111, 127, 170, 171, 172, 173, 174, 175, 177, 178, 190, 192, 193, 198, 212, 308, 29, 135, 131, 277, 134, 134, 110, 135, 173, 248, 132, 132, 319, 163, 227, 253, 254, 253, 274, 312, 115, 259, 372, 110, 116, 112, 112, 135, 227, 116, 373, 290, 110, 286, 215, 217, 225, 298, 299, 300, 301, 292, 110, 110, 130, 163, 109, 110, 130, 116, 139, 112, 110, 110, 110, 357, 279, 116, 135, 168, 112, 139, 146, 147, 145, 135, 146, 162, 167, 135, 109, 349, 350, 135, 135, 134, 135, 135, 135, 164, 110, 135, 109, 349, 350, 109, 355, 109, 355, 350, 226, 7, 117, 135, 164, 264, 264, 263, 267, 267, 268, 116, 116, 110, 110, 112, 96, 122, 135, 135, 146, 278, 164, 116, 132, 212, 216, 227, 231, 109, 109, 171, 109, 109, 72, 132, 72, 132, 72, 117, 170, 109, 173, 165, 165, 130, 112, 143, 132, 135, 134, 135, 211, 110, 164, 264, 264, 312, 110, 115, 252, 115, 134, 110, 134, 135, 309, 115, 134, 135, 135, 110, 114, 200, 112, 163, 132, 200, 202, 110, 109, 349, 350, 372, 165, 112, 135, 85, 113, 116, 135, 112, 135, 110, 134, 110, 110, 112, 112, 112, 135, 110, 134, 134, 134, 164, 164, 135, 112, 135, 135, 135, 135, 134, 134, 163, 163, 112, 112, 135, 135, 274, 227, 169, 169, 47, 169, 134, 132, 132, 132, 169, 132, 169, 58, 59, 60, 194, 195, 196, 132, 63, 132, 312, 114, 175, 115, 132, 135, 135, 96, 269, 270, 110, 299, 116, 132, 116, 132, 115, 297, 130, 141, 110, 110, 130, 134, 115, 112, 111, 147, 111, 147, 147, 112, 112, 264, 112, 264, 264, 264, 135, 135, 112, 112, 110, 110, 112, 116, 96, 263, 96, 135, 112, 112, 110, 110, 109, 110, 170, 191, 212, 132, 110, 109, 109, 173, 196, 58, 59, 164, 171, 144, 110, 110, 114, 134, 134, 298, 141, 203, 109, 132, 203, 264, 134, 134, 135, 135, 135, 135, 112, 112, 134, 135, 112, 171, 44, 45, 114, 181, 182, 183, 169, 171, 135, 110, 170, 114, 183, 96, 134, 96, 134, 109, 109, 132, 115, 134, 272, 309, 115, 116, 130, 163, 110, 135, 146, 146, 110, 110, 110, 110, 267, 42, 163, 179, 180, 310, 130, 134, 171, 181, 110, 132, 171, 132, 134, 110, 134, 110, 134, 96, 134, 96, 134, 132, 298, 141, 139, 204, 110, 132, 110, 135, 135, 171, 96, 116, 130, 135, 205, 206, 212, 132, 170, 170, 205, 173, 197, 225, 366, 173, 197, 110, 134, 110, 134, 115, 110, 116, 112, 112, 163, 179, 182, 184, 185, 134, 132, 182, 186, 187, 135, 109, 149, 309, 357, 139, 135, 173, 197, 173, 197, 109, 132, 139, 171, 176, 115, 182, 212, 170, 56, 176, 189, 115, 182, 110, 227, 110, 135, 135, 292, 171, 176, 132, 188, 189, 176, 189, 173, 173, 110, 110, 110, 188, 135, 135, 173, 173, 135, 135 }; #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 299 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 305 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 314 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantInteger( *(yyvsp[(1) - (1)].tok) ) ); } break; case 5: /* Line 1806 of yacc.c */ #line 315 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 6: /* Line 1806 of yacc.c */ #line 316 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantChar( *(yyvsp[(1) - (1)].tok) ) ); } break; case 16: /* Line 1806 of yacc.c */ #line 341 "parser.yy" { (yyval.constant) = build_constantStr( *(yyvsp[(1) - (1)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 343 "parser.yy" { appendStr( (yyvsp[(1) - (2)].constant)->get_constant()->get_value(), (yyvsp[(2) - (2)].tok) ); delete (yyvsp[(2) - (2)].tok); // allocated by lexer (yyval.constant) = (yyvsp[(1) - (2)].constant); } break; case 18: /* Line 1806 of yacc.c */ #line 354 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 19: /* Line 1806 of yacc.c */ #line 356 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 20: /* Line 1806 of yacc.c */ #line 358 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 21: /* Line 1806 of yacc.c */ #line 360 "parser.yy" { (yyval.en) = new ExpressionNode( build_valexpr( (yyvsp[(2) - (3)].sn) ) ); } break; case 23: /* Line 1806 of yacc.c */ #line 370 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Index, (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ) ); } break; case 24: /* Line 1806 of yacc.c */ #line 372 "parser.yy" { (yyval.en) = new ExpressionNode( build_func( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ) ); } break; case 25: /* Line 1806 of yacc.c */ #line 376 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 27: /* Line 1806 of yacc.c */ #line 379 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 29: /* Line 1806 of yacc.c */ #line 382 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::IncrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 30: /* Line 1806 of yacc.c */ #line 384 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::DecrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 31: /* Line 1806 of yacc.c */ #line 386 "parser.yy" { (yyval.en) = new ExpressionNode( build_compoundLiteral( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ) ); } break; case 32: /* Line 1806 of yacc.c */ #line 388 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined (yyval.en) = new ExpressionNode( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_link( (yyvsp[(3) - (4)].en) ) ) ); } break; case 34: /* Line 1806 of yacc.c */ #line 398 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 35: /* Line 1806 of yacc.c */ #line 403 "parser.yy" { (yyval.en) = 0; } break; case 38: /* Line 1806 of yacc.c */ #line 409 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 39: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 40: /* Line 1806 of yacc.c */ #line 418 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(3) - (3)].en), build_varref( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 41: /* Line 1806 of yacc.c */ #line 420 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(5) - (7)].en), build_varref( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 42: /* Line 1806 of yacc.c */ #line 422 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(3) - (3)].en), build_varref( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 43: /* Line 1806 of yacc.c */ #line 424 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(5) - (7)].en), build_varref( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 45: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 46: /* Line 1806 of yacc.c */ #line 434 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 47: /* Line 1806 of yacc.c */ #line 436 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); } break; case 48: /* Line 1806 of yacc.c */ #line 441 "parser.yy" { switch ( (yyvsp[(1) - (2)].op) ) { case OperKinds::AddressOf: (yyval.en) = new ExpressionNode( build_addressOf( (yyvsp[(2) - (2)].en) ) ); break; case OperKinds::PointTo: (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); break; default: assert( false ); } } break; case 49: /* Line 1806 of yacc.c */ #line 454 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); } break; case 50: /* Line 1806 of yacc.c */ #line 456 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Incr, (yyvsp[(2) - (2)].en) ) ); } break; case 51: /* Line 1806 of yacc.c */ #line 458 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Decr, (yyvsp[(2) - (2)].en) ) ); } break; case 52: /* Line 1806 of yacc.c */ #line 460 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 53: /* Line 1806 of yacc.c */ #line 462 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 54: /* Line 1806 of yacc.c */ #line 464 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 55: /* Line 1806 of yacc.c */ #line 466 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 56: /* Line 1806 of yacc.c */ #line 468 "parser.yy" { (yyval.en) = new ExpressionNode( build_offsetOf( (yyvsp[(3) - (6)].decl), build_varref( (yyvsp[(5) - (6)].tok) ) ) ); } break; case 57: /* Line 1806 of yacc.c */ #line 470 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (1)].tok) ), nullptr ) ); } break; case 58: /* Line 1806 of yacc.c */ #line 472 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ) ); } break; case 59: /* Line 1806 of yacc.c */ #line 474 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrtype( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].decl) ) ); } break; case 60: /* Line 1806 of yacc.c */ #line 480 "parser.yy" { (yyval.op) = OperKinds::PointTo; } break; case 61: /* Line 1806 of yacc.c */ #line 481 "parser.yy" { (yyval.op) = OperKinds::AddressOf; } break; case 62: /* Line 1806 of yacc.c */ #line 487 "parser.yy" { (yyval.op) = OperKinds::UnPlus; } break; case 63: /* Line 1806 of yacc.c */ #line 488 "parser.yy" { (yyval.op) = OperKinds::UnMinus; } break; case 64: /* Line 1806 of yacc.c */ #line 489 "parser.yy" { (yyval.op) = OperKinds::Neg; } break; case 65: /* Line 1806 of yacc.c */ #line 490 "parser.yy" { (yyval.op) = OperKinds::BitNeg; } break; case 67: /* Line 1806 of yacc.c */ #line 496 "parser.yy" { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); } break; case 68: /* Line 1806 of yacc.c */ #line 498 "parser.yy" { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); } break; case 70: /* Line 1806 of yacc.c */ #line 504 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mul, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 71: /* Line 1806 of yacc.c */ #line 506 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Div, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 72: /* Line 1806 of yacc.c */ #line 508 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mod, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 74: /* Line 1806 of yacc.c */ #line 514 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Plus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 75: /* Line 1806 of yacc.c */ #line 516 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Minus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 77: /* Line 1806 of yacc.c */ #line 522 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 78: /* Line 1806 of yacc.c */ #line 524 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::RShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 80: /* Line 1806 of yacc.c */ #line 530 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 81: /* Line 1806 of yacc.c */ #line 532 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 82: /* Line 1806 of yacc.c */ #line 534 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 83: /* Line 1806 of yacc.c */ #line 536 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 85: /* Line 1806 of yacc.c */ #line 542 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Eq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 86: /* Line 1806 of yacc.c */ #line 544 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Neq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 88: /* Line 1806 of yacc.c */ #line 550 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitAnd, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 90: /* Line 1806 of yacc.c */ #line 556 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Xor, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 92: /* Line 1806 of yacc.c */ #line 562 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitOr, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 94: /* Line 1806 of yacc.c */ #line 568 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), true ) ); } break; case 96: /* Line 1806 of yacc.c */ #line 574 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), false ) ); } break; case 98: /* Line 1806 of yacc.c */ #line 580 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 99: /* Line 1806 of yacc.c */ #line 583 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (4)].en), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ) ); } break; case 100: /* Line 1806 of yacc.c */ #line 585 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 103: /* Line 1806 of yacc.c */ #line 596 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_ptr( (yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 104: /* Line 1806 of yacc.c */ #line 598 "parser.yy" { (yyval.en) = ( (yyvsp[(2) - (2)].en) == 0 ) ? (yyvsp[(1) - (2)].en) : new ExpressionNode( build_binary_ptr( OperKinds::Assign, (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ) ); } break; case 105: /* Line 1806 of yacc.c */ #line 603 "parser.yy" { (yyval.en) = nullptr; } break; case 107: /* Line 1806 of yacc.c */ #line 608 "parser.yy" { (yyval.op) = OperKinds::Assign; } break; case 108: /* Line 1806 of yacc.c */ #line 609 "parser.yy" { (yyval.op) = OperKinds::MulAssn; } break; case 109: /* Line 1806 of yacc.c */ #line 610 "parser.yy" { (yyval.op) = OperKinds::DivAssn; } break; case 110: /* Line 1806 of yacc.c */ #line 611 "parser.yy" { (yyval.op) = OperKinds::ModAssn; } break; case 111: /* Line 1806 of yacc.c */ #line 612 "parser.yy" { (yyval.op) = OperKinds::PlusAssn; } break; case 112: /* Line 1806 of yacc.c */ #line 613 "parser.yy" { (yyval.op) = OperKinds::MinusAssn; } break; case 113: /* Line 1806 of yacc.c */ #line 614 "parser.yy" { (yyval.op) = OperKinds::LSAssn; } break; case 114: /* Line 1806 of yacc.c */ #line 615 "parser.yy" { (yyval.op) = OperKinds::RSAssn; } break; case 115: /* Line 1806 of yacc.c */ #line 616 "parser.yy" { (yyval.op) = OperKinds::AndAssn; } break; case 116: /* Line 1806 of yacc.c */ #line 617 "parser.yy" { (yyval.op) = OperKinds::ERAssn; } break; case 117: /* Line 1806 of yacc.c */ #line 618 "parser.yy" { (yyval.op) = OperKinds::OrAssn; } break; case 118: /* Line 1806 of yacc.c */ #line 625 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple() ); } break; case 119: /* Line 1806 of yacc.c */ #line 627 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (yyvsp[(3) - (5)].en) ) ); } break; case 120: /* Line 1806 of yacc.c */ #line 629 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(new ExpressionNode( nullptr ) )->set_link( (yyvsp[(4) - (6)].en) ) ) ); } break; case 121: /* Line 1806 of yacc.c */ #line 631 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_link( (yyvsp[(5) - (7)].en) ) ) ); } break; case 123: /* Line 1806 of yacc.c */ #line 637 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 125: /* Line 1806 of yacc.c */ #line 643 "parser.yy" { (yyval.en) = new ExpressionNode( build_comma( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 126: /* Line 1806 of yacc.c */ #line 648 "parser.yy" { (yyval.en) = 0; } break; case 130: /* Line 1806 of yacc.c */ #line 657 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 136: /* Line 1806 of yacc.c */ #line 664 "parser.yy" { Token fn; fn.str = new std::string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( StatementNode::Exp, new ExpressionNode( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(2) - (6)].en) )->set_link( (yyvsp[(4) - (6)].en) ) ) ), 0 ); } break; case 137: /* Line 1806 of yacc.c */ #line 674 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 138: /* Line 1806 of yacc.c */ #line 681 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); } break; case 139: /* Line 1806 of yacc.c */ #line 688 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); } break; case 141: /* Line 1806 of yacc.c */ #line 694 "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 142: /* Line 1806 of yacc.c */ #line 699 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 143: /* Line 1806 of yacc.c */ #line 701 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_link() ) iter->set_extension( true ); (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 144: /* Line 1806 of yacc.c */ #line 707 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 147: /* Line 1806 of yacc.c */ #line 714 "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 148: /* Line 1806 of yacc.c */ #line 719 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Exp, (yyvsp[(1) - (2)].en), 0 ); } break; case 149: /* Line 1806 of yacc.c */ #line 726 "parser.yy" { (yyval.sn) = new StatementNode2( build_if( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn), nullptr ) ); } break; case 150: /* Line 1806 of yacc.c */ #line 729 "parser.yy" { (yyval.sn) = new StatementNode2( build_if( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].sn), (yyvsp[(7) - (7)].sn) ) ); } break; case 151: /* Line 1806 of yacc.c */ #line 732 "parser.yy" { (yyval.sn) = new StatementNode2( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 152: /* Line 1806 of yacc.c */ #line 734 "parser.yy" { StatementNode *sw = new StatementNode2( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); // The semantics of the declaration list is changed to include associated initialization, which is performed // *before* the transfer to the appropriate case clause by hoisting the declarations into a compound // statement around the switch. Statements after the initial declaration list can never be executed, and // therefore, are removed from the grammar even though C allows it. The change also applies to choose // statement. (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new CompoundStmtNode( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_link( sw )) ) : sw; } break; case 153: /* Line 1806 of yacc.c */ #line 745 "parser.yy" { (yyval.sn) = new StatementNode2( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 154: /* Line 1806 of yacc.c */ #line 747 "parser.yy" { //StatementNode *sw = new StatementNode( StatementNode::Switch, $3, $8 ); StatementNode *sw = new StatementNode2( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new CompoundStmtNode( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_link( sw )) ) : sw; } break; case 155: /* Line 1806 of yacc.c */ #line 758 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 156: /* Line 1806 of yacc.c */ #line 760 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 158: /* Line 1806 of yacc.c */ #line 765 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Case, (yyvsp[(1) - (1)].en), 0 ); } break; case 159: /* Line 1806 of yacc.c */ #line 767 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_link( new StatementNode( StatementNode::Case, (yyvsp[(3) - (3)].en), 0 ) ) ); } break; case 160: /* Line 1806 of yacc.c */ #line 771 "parser.yy" { (yyval.sn) = (yyvsp[(2) - (3)].sn); } break; case 161: /* Line 1806 of yacc.c */ #line 772 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Default ); } break; case 163: /* Line 1806 of yacc.c */ #line 778 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) )); } break; case 164: /* Line 1806 of yacc.c */ #line 782 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new CompoundStmtNode( (yyvsp[(2) - (2)].sn) ) ); } break; case 165: /* Line 1806 of yacc.c */ #line 787 "parser.yy" { (yyval.sn) = 0; } break; case 167: /* Line 1806 of yacc.c */ #line 793 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new CompoundStmtNode( (yyvsp[(2) - (2)].sn) ) ); } break; case 168: /* Line 1806 of yacc.c */ #line 795 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( new CompoundStmtNode( (yyvsp[(3) - (3)].sn) ) ) ) ); } break; case 169: /* Line 1806 of yacc.c */ #line 800 "parser.yy" { (yyval.sn) = 0; } break; case 171: /* Line 1806 of yacc.c */ #line 806 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 172: /* Line 1806 of yacc.c */ #line 808 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case( new CompoundStmtNode( (StatementNode *)mkList( (*(yyvsp[(2) - (3)].sn), *(yyvsp[(3) - (3)].sn) ) ) ) ); } break; case 173: /* Line 1806 of yacc.c */ #line 810 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 174: /* Line 1806 of yacc.c */ #line 812 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_link( (yyvsp[(2) - (4)].sn)->append_last_case( new CompoundStmtNode( (StatementNode *)mkList( (*(yyvsp[(3) - (4)].sn), *(yyvsp[(4) - (4)].sn) ) ) ) ) ) ); } break; case 175: /* Line 1806 of yacc.c */ #line 817 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 177: /* Line 1806 of yacc.c */ #line 823 "parser.yy" { (yyval.sn) = 0; } break; case 178: /* Line 1806 of yacc.c */ #line 825 "parser.yy" { (yyval.sn) = 0; } break; case 179: /* Line 1806 of yacc.c */ #line 830 "parser.yy" { (yyval.sn) = new StatementNode2( build_while( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 180: /* Line 1806 of yacc.c */ #line 832 "parser.yy" { (yyval.sn) = new StatementNode2( build_while( (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ) ); } break; case 181: /* Line 1806 of yacc.c */ #line 834 "parser.yy" { (yyval.sn) = new StatementNode2( build_for( (yyvsp[(4) - (6)].fctl), (yyvsp[(6) - (6)].sn) ) ); } break; case 182: /* Line 1806 of yacc.c */ #line 839 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 183: /* Line 1806 of yacc.c */ #line 841 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 184: /* Line 1806 of yacc.c */ #line 846 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(2) - (3)].tok) ); } break; case 185: /* Line 1806 of yacc.c */ #line 850 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(3) - (4)].en) ); } break; case 186: /* Line 1806 of yacc.c */ #line 853 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue ); } break; case 187: /* Line 1806 of yacc.c */ #line 857 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue, (yyvsp[(2) - (3)].tok) ); } break; case 188: /* Line 1806 of yacc.c */ #line 860 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 189: /* Line 1806 of yacc.c */ #line 864 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break, (yyvsp[(2) - (3)].tok) ); } break; case 190: /* Line 1806 of yacc.c */ #line 866 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Return, (yyvsp[(2) - (3)].en), 0 ); } break; case 191: /* Line 1806 of yacc.c */ #line 868 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 192: /* Line 1806 of yacc.c */ #line 872 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 193: /* Line 1806 of yacc.c */ #line 874 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (5)].en), 0 ); } break; case 194: /* Line 1806 of yacc.c */ #line 881 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 195: /* Line 1806 of yacc.c */ #line 883 "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 885 "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 198: /* Line 1806 of yacc.c */ #line 896 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 199: /* Line 1806 of yacc.c */ #line 898 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 200: /* Line 1806 of yacc.c */ #line 900 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 201: /* Line 1806 of yacc.c */ #line 902 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 202: /* Line 1806 of yacc.c */ #line 907 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 203: /* Line 1806 of yacc.c */ #line 909 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 204: /* Line 1806 of yacc.c */ #line 911 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 205: /* Line 1806 of yacc.c */ #line 913 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 206: /* Line 1806 of yacc.c */ #line 918 "parser.yy" { (yyval.pn) = new StatementNode( StatementNode::Finally, 0, (yyvsp[(2) - (2)].sn) ); std::cout << "Just created a finally node" << std::endl; } break; case 208: /* Line 1806 of yacc.c */ #line 932 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 209: /* Line 1806 of yacc.c */ #line 937 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 210: /* Line 1806 of yacc.c */ #line 939 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 212: /* Line 1806 of yacc.c */ #line 948 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ); } break; case 213: /* Line 1806 of yacc.c */ #line 950 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ); } break; case 214: /* Line 1806 of yacc.c */ #line 952 "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 215: /* Line 1806 of yacc.c */ #line 954 "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)].en) ); } break; case 216: /* Line 1806 of yacc.c */ #line 956 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].en), (yyvsp[(12) - (14)].label) ); } break; case 217: /* Line 1806 of yacc.c */ #line 961 "parser.yy" { (yyval.flag) = false; } break; case 218: /* Line 1806 of yacc.c */ #line 963 "parser.yy" { (yyval.flag) = true; } break; case 219: /* Line 1806 of yacc.c */ #line 968 "parser.yy" { (yyval.en) = 0; } break; case 222: /* Line 1806 of yacc.c */ #line 975 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 223: /* Line 1806 of yacc.c */ #line 980 "parser.yy" { (yyval.en) = new ExpressionNode( build_asm( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ) ); } break; case 224: /* Line 1806 of yacc.c */ #line 982 "parser.yy" { (yyval.en) = new ExpressionNode( build_asm( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ) ); } break; case 225: /* Line 1806 of yacc.c */ #line 987 "parser.yy" { (yyval.en) = 0; } break; case 226: /* Line 1806 of yacc.c */ #line 989 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 227: /* Line 1806 of yacc.c */ #line 991 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( new ExpressionNode( (yyvsp[(3) - (3)].constant) ) ); } break; case 228: /* Line 1806 of yacc.c */ #line 996 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->append_label( (yyvsp[(1) - (1)].tok) ); } break; case 229: /* Line 1806 of yacc.c */ #line 998 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->append_label( (yyvsp[(3) - (3)].tok) ); } break; case 230: /* Line 1806 of yacc.c */ #line 1005 "parser.yy" { (yyval.decl) = 0; } break; case 233: /* Line 1806 of yacc.c */ #line 1012 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 234: /* Line 1806 of yacc.c */ #line 1017 "parser.yy" { (yyval.decl) = 0; } break; case 237: /* Line 1806 of yacc.c */ #line 1024 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 242: /* Line 1806 of yacc.c */ #line 1038 "parser.yy" {} break; case 243: /* Line 1806 of yacc.c */ #line 1039 "parser.yy" {} break; case 251: /* Line 1806 of yacc.c */ #line 1068 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].in) ); } break; case 252: /* Line 1806 of yacc.c */ #line 1075 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) );; } break; case 253: /* Line 1806 of yacc.c */ #line 1080 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (6)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneType( (yyvsp[(5) - (6)].tok) )->addInitializer( (yyvsp[(6) - (6)].in) ) ); } break; case 254: /* Line 1806 of yacc.c */ #line 1090 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 255: /* Line 1806 of yacc.c */ #line 1095 "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 1100 "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 257: /* Line 1806 of yacc.c */ #line 1108 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 258: /* Line 1806 of yacc.c */ #line 1113 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 259: /* Line 1806 of yacc.c */ #line 1118 "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 1123 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 261: /* Line 1806 of yacc.c */ #line 1128 "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 262: /* Line 1806 of yacc.c */ #line 1136 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 263: /* Line 1806 of yacc.c */ #line 1159 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 264: /* Line 1806 of yacc.c */ #line 1163 "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 1170 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 266: /* Line 1806 of yacc.c */ #line 1174 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 267: /* Line 1806 of yacc.c */ #line 1179 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 268: /* Line 1806 of yacc.c */ #line 1184 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 269: /* Line 1806 of yacc.c */ #line 1189 "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 270: /* Line 1806 of yacc.c */ #line 1200 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 271: /* Line 1806 of yacc.c */ #line 1205 "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 272: /* Line 1806 of yacc.c */ #line 1210 "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 273: /* Line 1806 of yacc.c */ #line 1215 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 274: /* Line 1806 of yacc.c */ #line 1220 "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 275: /* Line 1806 of yacc.c */ #line 1229 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 276: /* Line 1806 of yacc.c */ #line 1234 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 281: /* Line 1806 of yacc.c */ #line 1251 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 282: /* Line 1806 of yacc.c */ #line 1256 "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 291: /* Line 1806 of yacc.c */ #line 1278 "parser.yy" { (yyval.decl) = 0; } break; case 294: /* Line 1806 of yacc.c */ #line 1290 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 297: /* Line 1806 of yacc.c */ #line 1301 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 298: /* Line 1806 of yacc.c */ #line 1303 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 299: /* Line 1806 of yacc.c */ #line 1305 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 300: /* Line 1806 of yacc.c */ #line 1307 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 301: /* Line 1806 of yacc.c */ #line 1309 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 302: /* Line 1806 of yacc.c */ #line 1311 "parser.yy" { typedefTable.enterScope(); } break; case 303: /* Line 1806 of yacc.c */ #line 1315 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 305: /* Line 1806 of yacc.c */ #line 1324 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 306: /* Line 1806 of yacc.c */ #line 1326 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 308: /* Line 1806 of yacc.c */ #line 1337 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 310: /* Line 1806 of yacc.c */ #line 1346 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 311: /* Line 1806 of yacc.c */ #line 1348 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 312: /* Line 1806 of yacc.c */ #line 1350 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 313: /* Line 1806 of yacc.c */ #line 1352 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 314: /* Line 1806 of yacc.c */ #line 1354 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 315: /* Line 1806 of yacc.c */ #line 1356 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 316: /* Line 1806 of yacc.c */ #line 1358 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 317: /* Line 1806 of yacc.c */ #line 1360 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 318: /* Line 1806 of yacc.c */ #line 1365 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 319: /* Line 1806 of yacc.c */ #line 1367 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 320: /* Line 1806 of yacc.c */ #line 1369 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 321: /* Line 1806 of yacc.c */ #line 1371 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 322: /* Line 1806 of yacc.c */ #line 1373 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 323: /* Line 1806 of yacc.c */ #line 1375 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 324: /* Line 1806 of yacc.c */ #line 1377 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 325: /* Line 1806 of yacc.c */ #line 1379 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 326: /* Line 1806 of yacc.c */ #line 1381 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 327: /* Line 1806 of yacc.c */ #line 1383 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 328: /* Line 1806 of yacc.c */ #line 1385 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 329: /* Line 1806 of yacc.c */ #line 1387 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 330: /* Line 1806 of yacc.c */ #line 1389 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 332: /* Line 1806 of yacc.c */ #line 1396 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 333: /* Line 1806 of yacc.c */ #line 1398 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 334: /* Line 1806 of yacc.c */ #line 1400 "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 1402 "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 1408 "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 1415 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 340: /* Line 1806 of yacc.c */ #line 1417 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1419 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1424 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 343: /* Line 1806 of yacc.c */ #line 1426 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1428 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1430 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 347: /* Line 1806 of yacc.c */ #line 1436 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1438 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 349: /* Line 1806 of yacc.c */ #line 1440 "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 1446 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1448 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 354: /* Line 1806 of yacc.c */ #line 1454 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1456 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 356: /* Line 1806 of yacc.c */ #line 1458 "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 1463 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1465 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1467 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1477 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl), true ); } break; case 363: /* Line 1806 of yacc.c */ #line 1479 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0, false ); } break; case 364: /* Line 1806 of yacc.c */ #line 1484 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 365: /* Line 1806 of yacc.c */ #line 1486 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (6)].aggKey), (yyvsp[(2) - (6)].tok), 0, (yyvsp[(5) - (6)].decl), true ); } break; case 366: /* Line 1806 of yacc.c */ #line 1488 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl), false ); } break; case 367: /* Line 1806 of yacc.c */ #line 1490 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 368: /* Line 1806 of yacc.c */ #line 1495 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 369: /* Line 1806 of yacc.c */ #line 1497 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 370: /* Line 1806 of yacc.c */ #line 1502 "parser.yy" { (yyval.decl) = 0; } break; case 371: /* Line 1806 of yacc.c */ #line 1504 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 373: /* Line 1806 of yacc.c */ #line 1510 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->set_extension( true ); } break; case 375: /* Line 1806 of yacc.c */ #line 1513 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (3)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_link() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 377: /* Line 1806 of yacc.c */ #line 1523 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 378: /* Line 1806 of yacc.c */ #line 1525 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 379: /* Line 1806 of yacc.c */ #line 1527 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 380: /* Line 1806 of yacc.c */ #line 1532 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 381: /* Line 1806 of yacc.c */ #line 1534 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 382: /* Line 1806 of yacc.c */ #line 1539 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 383: /* Line 1806 of yacc.c */ #line 1541 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1544 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 385: /* Line 1806 of yacc.c */ #line 1547 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 387: /* Line 1806 of yacc.c */ #line 1553 "parser.yy" { (yyval.en) = 0; } break; case 388: /* Line 1806 of yacc.c */ #line 1555 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 389: /* Line 1806 of yacc.c */ #line 1560 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 391: /* Line 1806 of yacc.c */ #line 1569 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 392: /* Line 1806 of yacc.c */ #line 1571 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 393: /* Line 1806 of yacc.c */ #line 1576 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 394: /* Line 1806 of yacc.c */ #line 1578 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1583 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 396: /* Line 1806 of yacc.c */ #line 1585 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 397: /* Line 1806 of yacc.c */ #line 1590 "parser.yy" { (yyval.en) = 0; } break; case 398: /* Line 1806 of yacc.c */ #line 1592 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 399: /* Line 1806 of yacc.c */ #line 1599 "parser.yy" { (yyval.decl) = 0; } break; case 403: /* Line 1806 of yacc.c */ #line 1607 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 404: /* Line 1806 of yacc.c */ #line 1609 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 405: /* Line 1806 of yacc.c */ #line 1611 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 407: /* Line 1806 of yacc.c */ #line 1619 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 408: /* Line 1806 of yacc.c */ #line 1621 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 409: /* Line 1806 of yacc.c */ #line 1623 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 411: /* Line 1806 of yacc.c */ #line 1629 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1634 "parser.yy" { (yyval.decl) = 0; } break; case 415: /* Line 1806 of yacc.c */ #line 1641 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 418: /* Line 1806 of yacc.c */ #line 1648 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 419: /* Line 1806 of yacc.c */ #line 1650 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 421: /* Line 1806 of yacc.c */ #line 1659 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 422: /* Line 1806 of yacc.c */ #line 1662 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 423: /* Line 1806 of yacc.c */ #line 1664 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 428: /* Line 1806 of yacc.c */ #line 1674 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 430: /* Line 1806 of yacc.c */ #line 1680 "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 1685 "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 433: /* Line 1806 of yacc.c */ #line 1694 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 434: /* Line 1806 of yacc.c */ #line 1703 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 435: /* Line 1806 of yacc.c */ #line 1705 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 447: /* Line 1806 of yacc.c */ #line 1730 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 451: /* Line 1806 of yacc.c */ #line 1738 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 452: /* Line 1806 of yacc.c */ #line 1743 "parser.yy" { (yyval.in) = 0; } break; case 453: /* Line 1806 of yacc.c */ #line 1745 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 454: /* Line 1806 of yacc.c */ #line 1747 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); } break; case 455: /* Line 1806 of yacc.c */ #line 1751 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 456: /* Line 1806 of yacc.c */ #line 1752 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 457: /* Line 1806 of yacc.c */ #line 1757 "parser.yy" { (yyval.in) = 0; } break; case 459: /* Line 1806 of yacc.c */ #line 1759 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 460: /* Line 1806 of yacc.c */ #line 1760 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link( (yyvsp[(3) - (3)].in) ) ); } break; case 461: /* Line 1806 of yacc.c */ #line 1762 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 463: /* Line 1806 of yacc.c */ #line 1778 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (2)].tok) ) ); } break; case 465: /* Line 1806 of yacc.c */ #line 1784 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) ) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1790 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(2) - (2)].tok) ) ); } break; case 467: /* Line 1806 of yacc.c */ #line 1793 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 468: /* Line 1806 of yacc.c */ #line 1795 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 469: /* Line 1806 of yacc.c */ #line 1797 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ) ); } break; case 470: /* Line 1806 of yacc.c */ #line 1799 "parser.yy" { (yyval.en) = (yyvsp[(4) - (6)].en); } break; case 472: /* Line 1806 of yacc.c */ #line 1823 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 473: /* Line 1806 of yacc.c */ #line 1825 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 474: /* Line 1806 of yacc.c */ #line 1827 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 476: /* Line 1806 of yacc.c */ #line 1833 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 477: /* Line 1806 of yacc.c */ #line 1835 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1840 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1846 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 481: /* Line 1806 of yacc.c */ #line 1851 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 482: /* Line 1806 of yacc.c */ #line 1853 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 484: /* Line 1806 of yacc.c */ #line 1859 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 485: /* Line 1806 of yacc.c */ #line 1861 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 486: /* Line 1806 of yacc.c */ #line 1863 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 487: /* Line 1806 of yacc.c */ #line 1868 "parser.yy" { (yyval.decl) = 0; } break; case 488: /* Line 1806 of yacc.c */ #line 1870 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 489: /* Line 1806 of yacc.c */ #line 1875 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 490: /* Line 1806 of yacc.c */ #line 1880 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 491: /* Line 1806 of yacc.c */ #line 1882 "parser.yy" { (yyval.decl) = 0; } break; case 492: /* Line 1806 of yacc.c */ #line 1887 "parser.yy" { (yyval.en) = new ExpressionNode( build_typevalue( (yyvsp[(1) - (1)].decl) ) ); } break; case 494: /* Line 1806 of yacc.c */ #line 1890 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( new ExpressionNode( build_typevalue( (yyvsp[(3) - (3)].decl) ) ) ) ); } break; case 495: /* Line 1806 of yacc.c */ #line 1892 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 496: /* Line 1806 of yacc.c */ #line 1897 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 497: /* Line 1806 of yacc.c */ #line 1899 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 498: /* Line 1806 of yacc.c */ #line 1901 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 499: /* Line 1806 of yacc.c */ #line 1906 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 500: /* Line 1806 of yacc.c */ #line 1908 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 501: /* Line 1806 of yacc.c */ #line 1913 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 502: /* Line 1806 of yacc.c */ #line 1918 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 503: /* Line 1806 of yacc.c */ #line 1926 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 504: /* Line 1806 of yacc.c */ #line 1931 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 505: /* Line 1806 of yacc.c */ #line 1936 "parser.yy" { typedefTable.leaveTrait(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 507: /* Line 1806 of yacc.c */ #line 1946 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 510: /* Line 1806 of yacc.c */ #line 1956 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 511: /* Line 1806 of yacc.c */ #line 1961 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 512: /* Line 1806 of yacc.c */ #line 1966 "parser.yy" { typedefTable.addToEnclosingScope2( *(yyvsp[(5) - (5)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 513: /* Line 1806 of yacc.c */ #line 1974 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 514: /* Line 1806 of yacc.c */ #line 1979 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 515: /* Line 1806 of yacc.c */ #line 1989 "parser.yy" {} break; case 516: /* Line 1806 of yacc.c */ #line 1991 "parser.yy" { if ( theTree ) { theTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { theTree = (yyvsp[(1) - (1)].decl); } } break; case 518: /* Line 1806 of yacc.c */ #line 2003 "parser.yy" { (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 519: /* Line 1806 of yacc.c */ #line 2008 "parser.yy" { (yyval.decl) = 0; } break; case 523: /* Line 1806 of yacc.c */ #line 2016 "parser.yy" {} break; case 524: /* Line 1806 of yacc.c */ #line 2018 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 525: /* Line 1806 of yacc.c */ #line 2023 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 526: /* Line 1806 of yacc.c */ #line 2029 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_link() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 528: /* Line 1806 of yacc.c */ #line 2044 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 529: /* Line 1806 of yacc.c */ #line 2050 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (4)].decl)->addOldDeclList( (yyvsp[(3) - (4)].decl) )->addFunctionBody( (yyvsp[(4) - (4)].sn) ); } break; case 530: /* Line 1806 of yacc.c */ #line 2059 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 531: /* Line 1806 of yacc.c */ #line 2065 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 532: /* Line 1806 of yacc.c */ #line 2071 "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 2077 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 534: /* Line 1806 of yacc.c */ #line 2083 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(3) - (4)].decl)->addFunctionBody( (yyvsp[(4) - (4)].sn) )->addQualifiers( (yyvsp[(2) - (4)].decl) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 535: /* Line 1806 of yacc.c */ #line 2091 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addType( (yyvsp[(1) - (5)].decl) ); } break; case 536: /* Line 1806 of yacc.c */ #line 2097 "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 2105 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 538: /* Line 1806 of yacc.c */ #line 2111 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(3) - (6)].decl)->addOldDeclList( (yyvsp[(5) - (6)].decl) )->addFunctionBody( (yyvsp[(6) - (6)].sn) )->addQualifiers( (yyvsp[(2) - (6)].decl) )->addQualifiers( (yyvsp[(1) - (6)].decl) ); } break; case 542: /* Line 1806 of yacc.c */ #line 2126 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 545: /* Line 1806 of yacc.c */ #line 2136 "parser.yy" { (yyval.decl) = 0; } break; case 548: /* Line 1806 of yacc.c */ #line 2143 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 549: /* Line 1806 of yacc.c */ #line 2149 "parser.yy" { (yyval.decl) = 0; } break; case 555: /* Line 1806 of yacc.c */ #line 2164 "parser.yy" {} break; case 556: /* Line 1806 of yacc.c */ #line 2165 "parser.yy" {} break; case 557: /* Line 1806 of yacc.c */ #line 2166 "parser.yy" {} break; case 558: /* Line 1806 of yacc.c */ #line 2167 "parser.yy" {} break; case 559: /* Line 1806 of yacc.c */ #line 2202 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 561: /* Line 1806 of yacc.c */ #line 2205 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 562: /* Line 1806 of yacc.c */ #line 2207 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 563: /* Line 1806 of yacc.c */ #line 2212 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 564: /* Line 1806 of yacc.c */ #line 2217 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 565: /* Line 1806 of yacc.c */ #line 2222 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 566: /* Line 1806 of yacc.c */ #line 2224 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2226 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 568: /* Line 1806 of yacc.c */ #line 2231 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 569: /* Line 1806 of yacc.c */ #line 2233 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2235 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2237 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 572: /* Line 1806 of yacc.c */ #line 2242 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 573: /* Line 1806 of yacc.c */ #line 2244 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 574: /* Line 1806 of yacc.c */ #line 2253 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2256 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2261 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 578: /* Line 1806 of yacc.c */ #line 2263 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 579: /* Line 1806 of yacc.c */ #line 2265 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 580: /* Line 1806 of yacc.c */ #line 2270 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2272 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2274 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 583: /* Line 1806 of yacc.c */ #line 2279 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 584: /* Line 1806 of yacc.c */ #line 2281 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2283 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 589: /* Line 1806 of yacc.c */ #line 2298 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2300 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 591: /* Line 1806 of yacc.c */ #line 2302 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 592: /* Line 1806 of yacc.c */ #line 2307 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 593: /* Line 1806 of yacc.c */ #line 2309 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 594: /* Line 1806 of yacc.c */ #line 2311 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 595: /* Line 1806 of yacc.c */ #line 2316 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 596: /* Line 1806 of yacc.c */ #line 2318 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 597: /* Line 1806 of yacc.c */ #line 2320 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 598: /* Line 1806 of yacc.c */ #line 2335 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2338 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 601: /* Line 1806 of yacc.c */ #line 2340 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 603: /* Line 1806 of yacc.c */ #line 2346 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 604: /* Line 1806 of yacc.c */ #line 2351 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2353 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 606: /* Line 1806 of yacc.c */ #line 2355 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 607: /* Line 1806 of yacc.c */ #line 2360 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 608: /* Line 1806 of yacc.c */ #line 2362 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2364 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 610: /* Line 1806 of yacc.c */ #line 2366 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 611: /* Line 1806 of yacc.c */ #line 2371 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2373 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 613: /* Line 1806 of yacc.c */ #line 2375 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 614: /* Line 1806 of yacc.c */ #line 2385 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2388 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2390 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2395 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 619: /* Line 1806 of yacc.c */ #line 2397 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2399 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 621: /* Line 1806 of yacc.c */ #line 2404 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2406 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2408 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2410 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 625: /* Line 1806 of yacc.c */ #line 2415 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2417 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 627: /* Line 1806 of yacc.c */ #line 2419 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 628: /* Line 1806 of yacc.c */ #line 2450 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2453 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2455 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2460 "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 2465 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2473 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2475 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2477 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 637: /* Line 1806 of yacc.c */ #line 2482 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2484 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2489 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2491 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2506 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2508 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2513 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 645: /* Line 1806 of yacc.c */ #line 2515 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2517 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2519 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2521 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 650: /* Line 1806 of yacc.c */ #line 2527 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2529 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2531 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 653: /* Line 1806 of yacc.c */ #line 2536 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 654: /* Line 1806 of yacc.c */ #line 2538 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 655: /* Line 1806 of yacc.c */ #line 2540 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 656: /* Line 1806 of yacc.c */ #line 2546 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 657: /* Line 1806 of yacc.c */ #line 2548 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 659: /* Line 1806 of yacc.c */ #line 2554 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 660: /* Line 1806 of yacc.c */ #line 2556 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 661: /* Line 1806 of yacc.c */ #line 2558 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 662: /* Line 1806 of yacc.c */ #line 2560 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 664: /* Line 1806 of yacc.c */ #line 2575 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 665: /* Line 1806 of yacc.c */ #line 2577 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 666: /* Line 1806 of yacc.c */ #line 2582 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 667: /* Line 1806 of yacc.c */ #line 2584 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2586 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 669: /* Line 1806 of yacc.c */ #line 2588 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2590 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 672: /* Line 1806 of yacc.c */ #line 2596 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2598 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2600 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 675: /* Line 1806 of yacc.c */ #line 2605 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 676: /* Line 1806 of yacc.c */ #line 2607 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 677: /* Line 1806 of yacc.c */ #line 2609 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 679: /* Line 1806 of yacc.c */ #line 2616 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 681: /* Line 1806 of yacc.c */ #line 2627 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 682: /* Line 1806 of yacc.c */ #line 2630 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 683: /* Line 1806 of yacc.c */ #line 2632 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 684: /* Line 1806 of yacc.c */ #line 2635 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 685: /* Line 1806 of yacc.c */ #line 2637 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 686: /* Line 1806 of yacc.c */ #line 2639 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 688: /* Line 1806 of yacc.c */ #line 2653 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 689: /* Line 1806 of yacc.c */ #line 2655 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 690: /* Line 1806 of yacc.c */ #line 2660 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 691: /* Line 1806 of yacc.c */ #line 2662 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 692: /* Line 1806 of yacc.c */ #line 2664 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2666 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 694: /* Line 1806 of yacc.c */ #line 2668 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 696: /* Line 1806 of yacc.c */ #line 2674 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2676 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2678 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 699: /* Line 1806 of yacc.c */ #line 2683 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 700: /* Line 1806 of yacc.c */ #line 2685 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 703: /* Line 1806 of yacc.c */ #line 2695 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 706: /* Line 1806 of yacc.c */ #line 2705 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 707: /* Line 1806 of yacc.c */ #line 2707 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 708: /* Line 1806 of yacc.c */ #line 2709 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 709: /* Line 1806 of yacc.c */ #line 2711 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 710: /* Line 1806 of yacc.c */ #line 2713 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 711: /* Line 1806 of yacc.c */ #line 2715 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2722 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2724 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2726 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2728 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2730 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2732 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2734 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2736 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2738 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2740 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2745 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2747 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 724: /* Line 1806 of yacc.c */ #line 2752 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 725: /* Line 1806 of yacc.c */ #line 2754 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 727: /* Line 1806 of yacc.c */ #line 2781 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 731: /* Line 1806 of yacc.c */ #line 2792 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 732: /* Line 1806 of yacc.c */ #line 2794 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 733: /* Line 1806 of yacc.c */ #line 2796 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 734: /* Line 1806 of yacc.c */ #line 2798 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 735: /* Line 1806 of yacc.c */ #line 2800 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2802 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2809 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2811 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2813 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2815 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2817 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2819 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2824 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2829 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 745: /* Line 1806 of yacc.c */ #line 2831 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 746: /* Line 1806 of yacc.c */ #line 2833 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 749: /* Line 1806 of yacc.c */ #line 2857 "parser.yy" { (yyval.en) = 0; } break; case 750: /* Line 1806 of yacc.c */ #line 2859 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9154 "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 2862 "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: //