gcc/gcc/cp/parse.c

7991 lines
348 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* A Bison parser, made from parse.y
by GNU Bison version 1.25
*/
#define YYBISON 1 /* Identify Bison output. */
#define IDENTIFIER 258
#define TYPENAME 259
#define SELFNAME 260
#define PFUNCNAME 261
#define SCSPEC 262
#define TYPESPEC 263
#define CV_QUALIFIER 264
#define CONSTANT 265
#define STRING 266
#define ELLIPSIS 267
#define SIZEOF 268
#define ENUM 269
#define IF 270
#define ELSE 271
#define WHILE 272
#define DO 273
#define FOR 274
#define SWITCH 275
#define CASE 276
#define DEFAULT 277
#define BREAK 278
#define CONTINUE 279
#define RETURN 280
#define GOTO 281
#define ASM_KEYWORD 282
#define GCC_ASM_KEYWORD 283
#define TYPEOF 284
#define ALIGNOF 285
#define SIGOF 286
#define ATTRIBUTE 287
#define EXTENSION 288
#define LABEL 289
#define REALPART 290
#define IMAGPART 291
#define AGGR 292
#define VISSPEC 293
#define DELETE 294
#define NEW 295
#define THIS 296
#define OPERATOR 297
#define CXX_TRUE 298
#define CXX_FALSE 299
#define NAMESPACE 300
#define TYPENAME_KEYWORD 301
#define USING 302
#define LEFT_RIGHT 303
#define TEMPLATE 304
#define TYPEID 305
#define DYNAMIC_CAST 306
#define STATIC_CAST 307
#define REINTERPRET_CAST 308
#define CONST_CAST 309
#define SCOPE 310
#define EMPTY 311
#define PTYPENAME 312
#define NSNAME 313
#define THROW 314
#define ASSIGN 315
#define OROR 316
#define ANDAND 317
#define MIN_MAX 318
#define EQCOMPARE 319
#define ARITHCOMPARE 320
#define LSHIFT 321
#define RSHIFT 322
#define POINTSAT_STAR 323
#define DOT_STAR 324
#define UNARY 325
#define PLUSPLUS 326
#define MINUSMINUS 327
#define HYPERUNARY 328
#define PAREN_STAR_PAREN 329
#define POINTSAT 330
#define TRY 331
#define CATCH 332
#define TYPENAME_ELLIPSIS 333
#define PRE_PARSED_FUNCTION_DECL 334
#define EXTERN_LANG_STRING 335
#define ALL 336
#define PRE_PARSED_CLASS_DECL 337
#define DEFARG 338
#define DEFARG_MARKER 339
#define TYPENAME_DEFN 340
#define IDENTIFIER_DEFN 341
#define PTYPENAME_DEFN 342
#define END_OF_LINE 343
#define END_OF_SAVED_INPUT 344
#line 29 "parse.y"
/* Cause the `yydebug' variable to be defined. */
#define YYDEBUG 1
#include "config.h"
#include "system.h"
#include "tree.h"
#include "input.h"
#include "flags.h"
#include "lex.h"
#include "cp-tree.h"
#include "output.h"
#include "except.h"
/* Since parsers are distinct for each language, put the language string
definition here. (fnf) */
char *language_string = "GNU C++";
extern tree void_list_node;
extern struct obstack permanent_obstack;
extern int end_of_file;
/* Like YYERROR but do call yyerror. */
#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
#define OP0(NODE) (TREE_OPERAND (NODE, 0))
#define OP1(NODE) (TREE_OPERAND (NODE, 1))
/* Contains the statement keyword (if/while/do) to include in an
error message if the user supplies an empty conditional expression. */
static char *cond_stmt_keyword;
static tree empty_parms PROTO((void));
/* Nonzero if we have an `extern "C"' acting as an extern specifier. */
int have_extern_spec;
int used_extern_spec;
/* Cons up an empty parameter list. */
#ifdef __GNUC__
__inline
#endif
static tree
empty_parms ()
{
tree parms;
if (strict_prototype
|| current_class_type != NULL)
parms = void_list_node;
else
parms = NULL_TREE;
return parms;
}
#line 91 "parse.y"
typedef union {long itype; tree ttype; char *strtype; enum tree_code code; flagged_type_tree ftype; } YYSTYPE;
#line 280 "parse.y"
/* List of types and structure classes of the current declaration. */
static tree current_declspecs = NULL_TREE;
/* List of prefix attributes in effect.
Prefix attributes are parsed by the reserved_declspecs and declmods
rules. They create a list that contains *both* declspecs and attrs. */
/* ??? It is not clear yet that all cases where an attribute can now appear in
a declspec list have been updated. */
static tree prefix_attributes = NULL_TREE;
/* When defining an aggregate, this is the most recent one being defined. */
static tree current_aggr;
/* Tell yyparse how to print a token's value, if yydebug is set. */
#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
extern void yyprint PROTO((FILE *, int, YYSTYPE));
extern tree combine_strings PROTO((tree));
static int
parse_decl(declarator, specs_attrs, attributes, initialized, decl)
tree declarator;
tree specs_attrs;
tree attributes;
int initialized;
tree* decl;
{
int sm;
split_specs_attrs (specs_attrs, &current_declspecs, &prefix_attributes);
if (current_declspecs
&& TREE_CODE (current_declspecs) != TREE_LIST)
current_declspecs = get_decl_list (current_declspecs);
if (have_extern_spec && !used_extern_spec)
{
current_declspecs = decl_tree_cons (NULL_TREE,
get_identifier ("extern"),
current_declspecs);
used_extern_spec = 1;
}
sm = suspend_momentary ();
*decl = start_decl (declarator, current_declspecs, initialized,
attributes, prefix_attributes);
return sm;
}
#include <stdio.h>
#ifndef __cplusplus
#ifndef __STDC__
#define const
#endif
#endif
#define YYFINAL 1549
#define YYFLAG -32768
#define YYNTBASE 114
#define YYTRANSLATE(x) ((unsigned)(x) <= 344 ? yytranslate[x] : 386)
static const char 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, 112, 2, 2, 2, 83, 71, 2, 94,
110, 81, 79, 60, 80, 93, 82, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 63, 61, 75,
65, 76, 66, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
95, 2, 113, 70, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 59, 69, 111, 89, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 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, 62, 64, 67, 68, 72, 73, 74,
77, 78, 84, 85, 86, 87, 88, 90, 91, 92,
96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
106, 107, 108, 109
};
#if YYDEBUG != 0
static const short yyprhs[] = { 0,
0, 1, 3, 4, 7, 10, 12, 13, 14, 15,
17, 19, 21, 22, 25, 28, 30, 32, 38, 43,
49, 54, 55, 62, 63, 69, 75, 78, 83, 86,
89, 93, 97, 99, 101, 104, 107, 109, 112, 113,
119, 123, 125, 129, 131, 132, 135, 138, 142, 144,
148, 150, 154, 156, 160, 163, 166, 169, 173, 177,
180, 183, 186, 189, 192, 194, 196, 198, 199, 201,
204, 205, 207, 212, 216, 220, 221, 230, 236, 237,
247, 254, 255, 264, 270, 271, 281, 288, 291, 294,
296, 299, 301, 308, 313, 320, 325, 328, 330, 333,
336, 338, 341, 343, 346, 349, 354, 357, 361, 362,
363, 365, 369, 372, 376, 378, 383, 386, 391, 394,
399, 402, 404, 406, 408, 410, 412, 414, 416, 418,
420, 422, 424, 425, 432, 433, 440, 441, 447, 448,
454, 455, 463, 464, 472, 473, 480, 481, 488, 489,
490, 495, 500, 502, 507, 509, 511, 512, 514, 516,
520, 522, 524, 526, 528, 530, 532, 534, 536, 538,
540, 544, 546, 550, 551, 553, 555, 556, 564, 566,
568, 572, 577, 581, 582, 586, 588, 592, 596, 600,
604, 606, 608, 610, 613, 616, 619, 622, 625, 628,
631, 636, 639, 644, 647, 651, 655, 660, 665, 671,
677, 684, 687, 692, 698, 701, 704, 708, 712, 716,
718, 722, 725, 729, 734, 736, 739, 745, 747, 751,
755, 759, 763, 767, 771, 775, 779, 783, 787, 791,
795, 799, 803, 807, 811, 815, 819, 823, 829, 833,
837, 839, 842, 846, 848, 850, 852, 854, 856, 857,
863, 869, 875, 881, 887, 889, 891, 893, 895, 898,
901, 905, 910, 915, 917, 919, 921, 925, 927, 929,
931, 933, 937, 941, 945, 946, 951, 956, 959, 964,
967, 970, 972, 977, 979, 987, 995, 1003, 1011, 1016,
1021, 1024, 1027, 1029, 1034, 1037, 1040, 1046, 1050, 1053,
1056, 1062, 1066, 1072, 1076, 1081, 1088, 1091, 1093, 1096,
1098, 1101, 1103, 1105, 1107, 1110, 1111, 1114, 1117, 1121,
1125, 1129, 1132, 1135, 1138, 1140, 1142, 1144, 1147, 1150,
1153, 1156, 1158, 1160, 1162, 1164, 1167, 1170, 1174, 1178,
1182, 1187, 1189, 1192, 1195, 1198, 1200, 1202, 1204, 1207,
1210, 1213, 1215, 1217, 1220, 1223, 1227, 1229, 1232, 1234,
1236, 1238, 1243, 1248, 1253, 1258, 1260, 1262, 1264, 1266,
1270, 1272, 1276, 1278, 1282, 1283, 1288, 1289, 1296, 1300,
1301, 1306, 1308, 1312, 1316, 1317, 1322, 1326, 1327, 1329,
1331, 1334, 1341, 1343, 1347, 1348, 1350, 1355, 1362, 1367,
1369, 1371, 1373, 1375, 1377, 1381, 1382, 1385, 1387, 1390,
1394, 1399, 1401, 1403, 1407, 1412, 1416, 1422, 1424, 1429,
1433, 1437, 1438, 1442, 1446, 1450, 1451, 1454, 1457, 1458,
1466, 1471, 1472, 1479, 1483, 1486, 1489, 1492, 1493, 1494,
1504, 1506, 1507, 1509, 1510, 1512, 1514, 1517, 1520, 1523,
1526, 1529, 1532, 1536, 1541, 1545, 1548, 1552, 1553, 1555,
1559, 1562, 1565, 1567, 1569, 1570, 1573, 1577, 1579, 1584,
1586, 1590, 1592, 1594, 1599, 1604, 1607, 1610, 1614, 1618,
1620, 1621, 1623, 1626, 1631, 1635, 1637, 1640, 1643, 1646,
1649, 1652, 1655, 1658, 1660, 1663, 1666, 1670, 1673, 1676,
1681, 1686, 1689, 1691, 1697, 1702, 1704, 1705, 1707, 1711,
1712, 1714, 1718, 1720, 1722, 1724, 1726, 1731, 1736, 1741,
1746, 1751, 1755, 1760, 1765, 1770, 1775, 1779, 1781, 1785,
1787, 1791, 1794, 1796, 1803, 1804, 1807, 1809, 1812, 1813,
1816, 1821, 1826, 1829, 1834, 1838, 1842, 1845, 1848, 1852,
1854, 1856, 1859, 1861, 1863, 1866, 1869, 1874, 1879, 1883,
1887, 1890, 1892, 1896, 1900, 1903, 1906, 1910, 1912, 1916,
1920, 1923, 1926, 1930, 1932, 1937, 1941, 1946, 1950, 1952,
1955, 1958, 1961, 1964, 1967, 1969, 1972, 1977, 1982, 1985,
1987, 1989, 1991, 1993, 1996, 2001, 2004, 2007, 2010, 2013,
2015, 2018, 2021, 2024, 2027, 2031, 2033, 2036, 2040, 2045,
2048, 2051, 2054, 2057, 2060, 2063, 2068, 2071, 2073, 2076,
2079, 2083, 2085, 2089, 2092, 2096, 2099, 2102, 2106, 2108,
2112, 2117, 2121, 2124, 2127, 2129, 2133, 2136, 2139, 2141,
2144, 2148, 2150, 2154, 2156, 2163, 2168, 2173, 2177, 2183,
2187, 2191, 2195, 2198, 2200, 2202, 2205, 2208, 2211, 2212,
2214, 2216, 2219, 2223, 2225, 2228, 2229, 2233, 2234, 2235,
2241, 2243, 2244, 2247, 2249, 2251, 2253, 2256, 2257, 2262,
2264, 2265, 2266, 2272, 2273, 2274, 2282, 2283, 2284, 2285,
2286, 2299, 2300, 2301, 2309, 2310, 2316, 2317, 2325, 2326,
2331, 2334, 2337, 2340, 2344, 2351, 2360, 2371, 2384, 2389,
2393, 2396, 2399, 2401, 2403, 2404, 2405, 2412, 2413, 2414,
2420, 2422, 2425, 2426, 2427, 2433, 2435, 2437, 2441, 2445,
2448, 2451, 2454, 2457, 2460, 2462, 2465, 2466, 2468, 2469,
2471, 2473, 2474, 2476, 2478, 2482, 2487, 2489, 2493, 2494,
2496, 2498, 2500, 2503, 2506, 2509, 2511, 2513, 2516, 2519,
2522, 2525, 2526, 2530, 2532, 2534, 2536, 2539, 2542, 2545,
2550, 2553, 2556, 2559, 2562, 2565, 2568, 2570, 2573, 2575,
2578, 2580, 2582, 2583, 2584, 2586, 2587, 2592, 2595, 2597,
2599, 2603, 2604, 2608, 2612, 2616, 2618, 2621, 2624, 2627,
2630, 2633, 2636, 2639, 2642, 2645, 2648, 2651, 2654, 2657,
2660, 2663, 2666, 2669, 2672, 2675, 2678, 2681, 2684, 2687,
2691, 2694, 2697, 2700, 2703, 2707, 2710, 2713, 2718, 2723,
2727
};
static const short yyrhs[] = { -1,
115, 0, 0, 116, 122, 0, 115, 122, 0, 115,
0, 0, 0, 0, 33, 0, 27, 0, 28, 0,
0, 123, 124, 0, 142, 141, 0, 138, 0, 137,
0, 121, 94, 208, 110, 61, 0, 129, 59, 117,
111, 0, 129, 118, 142, 119, 141, 0, 129, 118,
138, 119, 0, 0, 45, 157, 59, 125, 117, 111,
0, 0, 45, 59, 126, 117, 111, 0, 45, 157,
65, 128, 61, 0, 127, 61, 0, 47, 45, 128,
61, 0, 120, 124, 0, 47, 300, 0, 47, 314,
300, 0, 47, 314, 199, 0, 199, 0, 300, 0,
314, 300, 0, 314, 199, 0, 100, 0, 129, 100,
0, 0, 49, 75, 131, 132, 76, 0, 49, 75,
76, 0, 136, 0, 132, 60, 136, 0, 157, 0,
0, 257, 133, 0, 46, 133, 0, 130, 257, 133,
0, 134, 0, 134, 65, 214, 0, 377, 0, 377,
65, 194, 0, 135, 0, 135, 65, 176, 0, 130,
124, 0, 130, 1, 0, 225, 61, 0, 218, 224,
61, 0, 215, 223, 61, 0, 218, 61, 0, 160,
61, 0, 215, 61, 0, 1, 61, 0, 1, 111,
0, 61, 0, 209, 0, 153, 0, 0, 152, 0,
152, 61, 0, 0, 109, 0, 148, 140, 139, 324,
0, 148, 140, 348, 0, 148, 140, 1, 0, 0,
305, 5, 94, 144, 368, 110, 287, 380, 0, 305,
5, 48, 287, 380, 0, 0, 314, 305, 5, 94,
145, 368, 110, 287, 380, 0, 314, 305, 5, 48,
287, 380, 0, 0, 305, 172, 94, 146, 368, 110,
287, 380, 0, 305, 172, 48, 287, 380, 0, 0,
314, 305, 172, 94, 147, 368, 110, 287, 380, 0,
314, 305, 172, 48, 287, 380, 0, 215, 212, 0,
218, 297, 0, 297, 0, 218, 143, 0, 143, 0,
5, 94, 368, 110, 287, 380, 0, 5, 48, 287,
380, 0, 172, 94, 368, 110, 287, 380, 0, 172,
48, 287, 380, 0, 218, 149, 0, 149, 0, 215,
212, 0, 218, 297, 0, 297, 0, 218, 143, 0,
143, 0, 25, 3, 0, 151, 242, 0, 151, 94,
188, 110, 0, 151, 48, 0, 63, 154, 155, 0,
0, 0, 156, 0, 155, 60, 156, 0, 155, 1,
0, 94, 188, 110, 0, 48, 0, 158, 94, 188,
110, 0, 158, 48, 0, 293, 94, 188, 110, 0,
293, 48, 0, 307, 94, 188, 110, 0, 307, 48,
0, 3, 0, 4, 0, 5, 0, 57, 0, 58,
0, 3, 0, 57, 0, 58, 0, 106, 0, 105,
0, 107, 0, 0, 49, 169, 221, 61, 161, 170,
0, 0, 49, 169, 215, 212, 162, 170, 0, 0,
49, 169, 297, 163, 170, 0, 0, 49, 169, 143,
164, 170, 0, 0, 7, 49, 169, 221, 61, 165,
170, 0, 0, 7, 49, 169, 215, 212, 166, 170,
0, 0, 7, 49, 169, 297, 167, 170, 0, 0,
7, 49, 169, 143, 168, 170, 0, 0, 0, 57,
75, 174, 173, 0, 4, 75, 174, 173, 0, 172,
0, 5, 75, 174, 173, 0, 76, 0, 78, 0,
0, 175, 0, 176, 0, 175, 60, 176, 0, 214,
0, 194, 0, 80, 0, 79, 0, 87, 0, 88,
0, 112, 0, 187, 0, 194, 0, 48, 0, 94,
178, 110, 0, 48, 0, 94, 182, 110, 0, 0,
182, 0, 1, 0, 0, 358, 212, 226, 235, 65,
183, 243, 0, 178, 0, 111, 0, 321, 319, 111,
0, 321, 319, 1, 111, 0, 321, 1, 111, 0,
0, 59, 186, 184, 0, 333, 0, 194, 60, 194,
0, 194, 60, 1, 0, 187, 60, 194, 0, 187,
60, 1, 0, 194, 0, 187, 0, 203, 0, 120,
193, 0, 81, 193, 0, 71, 193, 0, 89, 193,
0, 177, 193, 0, 68, 157, 0, 13, 189, 0,
13, 94, 214, 110, 0, 30, 189, 0, 30, 94,
214, 110, 0, 205, 286, 0, 205, 286, 191, 0,
205, 190, 286, 0, 205, 190, 286, 191, 0, 205,
94, 214, 110, 0, 205, 94, 214, 110, 191, 0,
205, 190, 94, 214, 110, 0, 205, 190, 94, 214,
110, 191, 0, 206, 193, 0, 206, 95, 113, 193,
0, 206, 95, 178, 113, 193, 0, 35, 193, 0,
36, 193, 0, 94, 188, 110, 0, 59, 188, 111,
0, 94, 188, 110, 0, 48, 0, 94, 221, 110,
0, 65, 243, 0, 94, 214, 110, 0, 192, 94,
214, 110, 0, 189, 0, 192, 189, 0, 192, 59,
244, 255, 111, 0, 193, 0, 194, 84, 194, 0,
194, 85, 194, 0, 194, 79, 194, 0, 194, 80,
194, 0, 194, 81, 194, 0, 194, 82, 194, 0,
194, 83, 194, 0, 194, 77, 194, 0, 194, 78,
194, 0, 194, 74, 194, 0, 194, 75, 194, 0,
194, 76, 194, 0, 194, 73, 194, 0, 194, 72,
194, 0, 194, 71, 194, 0, 194, 69, 194, 0,
194, 70, 194, 0, 194, 68, 194, 0, 194, 67,
194, 0, 194, 66, 363, 63, 194, 0, 194, 65,
194, 0, 194, 64, 194, 0, 62, 0, 62, 194,
0, 89, 378, 157, 0, 197, 0, 385, 0, 3,
0, 57, 0, 58, 0, 0, 6, 75, 196, 174,
173, 0, 385, 75, 196, 174, 173, 0, 49, 157,
75, 174, 173, 0, 49, 6, 75, 174, 173, 0,
49, 385, 75, 174, 173, 0, 195, 0, 4, 0,
5, 0, 195, 0, 81, 200, 0, 71, 200, 0,
94, 200, 110, 0, 3, 75, 174, 173, 0, 58,
75, 175, 173, 0, 299, 0, 195, 0, 201, 0,
94, 200, 110, 0, 195, 0, 10, 0, 207, 0,
208, 0, 94, 178, 110, 0, 94, 200, 110, 0,
94, 1, 110, 0, 0, 94, 204, 325, 110, 0,
203, 94, 188, 110, 0, 203, 48, 0, 203, 95,
178, 113, 0, 203, 87, 0, 203, 88, 0, 41,
0, 9, 94, 188, 110, 0, 303, 0, 51, 75,
214, 76, 94, 178, 110, 0, 52, 75, 214, 76,
94, 178, 110, 0, 53, 75, 214, 76, 94, 178,
110, 0, 54, 75, 214, 76, 94, 178, 110, 0,
50, 94, 178, 110, 0, 50, 94, 214, 110, 0,
314, 3, 0, 314, 385, 0, 302, 0, 302, 94,
188, 110, 0, 302, 48, 0, 210, 198, 0, 210,
198, 94, 188, 110, 0, 210, 198, 48, 0, 210,
199, 0, 210, 302, 0, 210, 199, 94, 188, 110,
0, 210, 199, 48, 0, 210, 302, 94, 188, 110,
0, 210, 302, 48, 0, 210, 89, 8, 48, 0,
210, 8, 55, 89, 8, 48, 0, 210, 1, 0,
40, 0, 314, 40, 0, 39, 0, 314, 206, 0,
43, 0, 44, 0, 11, 0, 208, 11, 0, 0,
203, 93, 0, 203, 92, 0, 221, 223, 61, 0,
215, 223, 61, 0, 218, 224, 61, 0, 215, 61,
0, 218, 61, 0, 120, 211, 0, 292, 0, 297,
0, 48, 0, 213, 48, 0, 219, 317, 0, 288,
317, 0, 221, 317, 0, 219, 0, 288, 0, 219,
0, 216, 0, 218, 221, 0, 221, 217, 0, 221,
220, 217, 0, 218, 221, 217, 0, 218, 221, 220,
0, 218, 221, 220, 217, 0, 7, 0, 217, 222,
0, 217, 7, 0, 217, 236, 0, 236, 0, 288,
0, 7, 0, 218, 9, 0, 218, 7, 0, 218,
236, 0, 236, 0, 221, 0, 288, 221, 0, 221,
220, 0, 288, 221, 220, 0, 222, 0, 220, 222,
0, 250, 0, 8, 0, 294, 0, 29, 94, 178,
110, 0, 29, 94, 214, 110, 0, 31, 94, 178,
110, 0, 31, 94, 214, 110, 0, 8, 0, 9,
0, 250, 0, 231, 0, 223, 60, 227, 0, 232,
0, 224, 60, 227, 0, 233, 0, 225, 60, 227,
0, 0, 121, 94, 208, 110, 0, 0, 212, 226,
235, 65, 228, 243, 0, 212, 226, 235, 0, 0,
235, 65, 230, 243, 0, 235, 0, 212, 226, 229,
0, 297, 226, 229, 0, 0, 297, 226, 234, 229,
0, 143, 226, 235, 0, 0, 236, 0, 237, 0,
236, 237, 0, 32, 94, 94, 238, 110, 110, 0,
239, 0, 238, 60, 239, 0, 0, 240, 0, 240,
94, 3, 110, 0, 240, 94, 3, 60, 188, 110,
0, 240, 94, 188, 110, 0, 157, 0, 7, 0,
8, 0, 9, 0, 157, 0, 241, 60, 157, 0,
0, 65, 243, 0, 194, 0, 59, 111, 0, 59,
244, 111, 0, 59, 244, 60, 111, 0, 1, 0,
243, 0, 244, 60, 243, 0, 95, 194, 113, 243,
0, 157, 63, 243, 0, 244, 60, 157, 63, 243,
0, 99, 0, 245, 140, 139, 324, 0, 245, 140,
348, 0, 245, 140, 1, 0, 0, 247, 246, 141,
0, 104, 194, 109, 0, 104, 1, 109, 0, 0,
249, 248, 0, 249, 1, 0, 0, 14, 157, 59,
251, 284, 256, 111, 0, 14, 157, 59, 111, 0,
0, 14, 59, 252, 284, 256, 111, 0, 14, 59,
111, 0, 14, 157, 0, 14, 312, 0, 46, 307,
0, 0, 0, 264, 270, 272, 111, 235, 253, 249,
254, 247, 0, 264, 0, 0, 60, 0, 0, 60,
0, 37, 0, 257, 7, 0, 257, 8, 0, 257,
9, 0, 257, 37, 0, 257, 157, 0, 257, 159,
0, 257, 305, 157, 0, 257, 314, 305, 157, 0,
257, 314, 157, 0, 257, 171, 0, 257, 305, 171,
0, 0, 258, 0, 259, 261, 265, 0, 260, 265,
0, 257, 59, 0, 263, 0, 262, 0, 0, 63,
378, 0, 63, 378, 266, 0, 267, 0, 266, 60,
378, 267, 0, 268, 0, 269, 378, 268, 0, 307,
0, 293, 0, 31, 94, 178, 110, 0, 31, 94,
214, 110, 0, 38, 378, 0, 7, 378, 0, 269,
38, 378, 0, 269, 7, 378, 0, 59, 0, 0,
271, 0, 271, 273, 0, 272, 38, 63, 273, 0,
272, 38, 63, 0, 274, 0, 273, 274, 0, 275,
61, 0, 275, 111, 0, 150, 63, 0, 150, 96,
0, 150, 25, 0, 150, 59, 0, 61, 0, 120,
274, 0, 130, 274, 0, 130, 215, 61, 0, 215,
276, 0, 218, 277, 0, 297, 226, 235, 242, 0,
143, 226, 235, 242, 0, 63, 194, 0, 1, 0,
218, 149, 226, 235, 242, 0, 149, 226, 235, 242,
0, 127, 0, 0, 278, 0, 276, 60, 279, 0,
0, 281, 0, 277, 60, 283, 0, 280, 0, 281,
0, 282, 0, 283, 0, 292, 226, 235, 242, 0,
4, 63, 194, 235, 0, 297, 226, 235, 242, 0,
143, 226, 235, 242, 0, 3, 63, 194, 235, 0,
63, 194, 235, 0, 292, 226, 235, 242, 0, 4,
63, 194, 235, 0, 297, 226, 235, 242, 0, 3,
63, 194, 235, 0, 63, 194, 235, 0, 285, 0,
284, 60, 285, 0, 157, 0, 157, 65, 194, 0,
358, 315, 0, 358, 0, 94, 214, 110, 95, 178,
113, 0, 0, 287, 9, 0, 9, 0, 288, 9,
0, 0, 289, 178, 0, 289, 94, 188, 110, 0,
289, 94, 368, 110, 0, 289, 48, 0, 289, 94,
1, 110, 0, 81, 288, 292, 0, 71, 288, 292,
0, 81, 292, 0, 71, 292, 0, 313, 287, 292,
0, 296, 0, 304, 0, 314, 304, 0, 293, 0,
295, 0, 314, 295, 0, 305, 304, 0, 296, 291,
287, 380, 0, 296, 95, 290, 113, 0, 296, 95,
113, 0, 94, 292, 110, 0, 305, 304, 0, 304,
0, 81, 288, 297, 0, 71, 288, 297, 0, 81,
297, 0, 71, 297, 0, 313, 287, 297, 0, 202,
0, 81, 288, 297, 0, 71, 288, 297, 0, 81,
298, 0, 71, 298, 0, 313, 287, 297, 0, 299,
0, 202, 291, 287, 380, 0, 94, 298, 110, 0,
202, 95, 290, 113, 0, 202, 95, 113, 0, 301,
0, 305, 201, 0, 305, 199, 0, 305, 198, 0,
305, 195, 0, 305, 198, 0, 301, 0, 314, 301,
0, 221, 94, 188, 110, 0, 221, 94, 200, 110,
0, 221, 213, 0, 4, 0, 5, 0, 171, 0,
306, 0, 305, 306, 0, 305, 49, 311, 55, 0,
4, 55, 0, 5, 55, 0, 58, 55, 0, 171,
55, 0, 308, 0, 314, 308, 0, 309, 157, 0,
309, 171, 0, 309, 311, 0, 309, 49, 311, 0,
310, 0, 309, 310, 0, 309, 311, 55, 0, 309,
49, 311, 55, 0, 4, 55, 0, 5, 55, 0,
171, 55, 0, 57, 55, 0, 3, 55, 0, 58,
55, 0, 157, 75, 174, 173, 0, 314, 304, 0,
295, 0, 314, 295, 0, 305, 81, 0, 314, 305,
81, 0, 55, 0, 81, 287, 315, 0, 81, 287,
0, 71, 287, 315, 0, 71, 287, 0, 313, 287,
0, 313, 287, 315, 0, 316, 0, 95, 178, 113,
0, 316, 95, 290, 113, 0, 81, 288, 317, 0,
81, 317, 0, 81, 288, 0, 81, 0, 71, 288,
317, 0, 71, 317, 0, 71, 288, 0, 71, 0,
313, 287, 0, 313, 287, 317, 0, 318, 0, 94,
317, 110, 0, 91, 0, 318, 94, 368, 110, 287,
380, 0, 318, 48, 287, 380, 0, 318, 95, 290,
113, 0, 318, 95, 113, 0, 94, 369, 110, 287,
380, 0, 192, 287, 380, 0, 213, 287, 380, 0,
95, 290, 113, 0, 95, 113, 0, 332, 0, 320,
0, 319, 332, 0, 319, 320, 0, 1, 61, 0,
0, 322, 0, 323, 0, 322, 323, 0, 34, 241,
61, 0, 325, 0, 1, 325, 0, 0, 59, 326,
184, 0, 0, 0, 15, 328, 180, 329, 330, 0,
325, 0, 0, 331, 333, 0, 325, 0, 333, 0,
211, 0, 178, 61, 0, 0, 327, 16, 334, 330,
0, 327, 0, 0, 0, 17, 335, 180, 336, 185,
0, 0, 0, 18, 337, 330, 17, 338, 179, 61,
0, 0, 0, 0, 0, 19, 339, 94, 361, 340,
181, 61, 341, 363, 110, 342, 185, 0, 0, 0,
20, 343, 94, 182, 110, 344, 330, 0, 0, 21,
194, 63, 345, 332, 0, 0, 21, 194, 12, 194,
63, 346, 332, 0, 0, 22, 63, 347, 332, 0,
23, 61, 0, 24, 61, 0, 25, 61, 0, 25,
178, 61, 0, 121, 362, 94, 208, 110, 61, 0,
121, 362, 94, 208, 63, 364, 110, 61, 0, 121,
362, 94, 208, 63, 364, 63, 364, 110, 61, 0,
121, 362, 94, 208, 63, 364, 63, 364, 63, 367,
110, 61, 0, 26, 81, 178, 61, 0, 26, 157,
61, 0, 360, 332, 0, 360, 111, 0, 61, 0,
351, 0, 0, 0, 96, 349, 139, 325, 350, 354,
0, 0, 0, 96, 352, 325, 353, 354, 0, 355,
0, 354, 355, 0, 0, 0, 97, 356, 359, 357,
325, 0, 219, 0, 288, 0, 94, 12, 110, 0,
94, 377, 110, 0, 3, 63, 0, 57, 63, 0,
4, 63, 0, 5, 63, 0, 363, 61, 0, 211,
0, 59, 184, 0, 0, 9, 0, 0, 178, 0,
1, 0, 0, 365, 0, 366, 0, 365, 60, 366,
0, 11, 94, 178, 110, 0, 11, 0, 367, 60,
11, 0, 0, 369, 0, 214, 0, 373, 0, 374,
12, 0, 373, 12, 0, 214, 12, 0, 12, 0,
98, 0, 373, 98, 0, 214, 98, 0, 373, 63,
0, 214, 63, 0, 0, 65, 371, 372, 0, 103,
0, 243, 0, 375, 0, 377, 370, 0, 374, 376,
0, 374, 379, 0, 374, 379, 65, 243, 0, 373,
60, 0, 214, 60, 0, 216, 212, 0, 219, 212,
0, 221, 212, 0, 216, 317, 0, 216, 0, 218,
297, 0, 377, 0, 377, 370, 0, 375, 0, 214,
0, 0, 0, 297, 0, 0, 62, 94, 382, 110,
0, 62, 48, 0, 214, 0, 381, 0, 382, 60,
381, 0, 0, 81, 287, 383, 0, 71, 287, 383,
0, 313, 287, 383, 0, 42, 0, 384, 81, 0,
384, 82, 0, 384, 83, 0, 384, 79, 0, 384,
80, 0, 384, 71, 0, 384, 69, 0, 384, 70,
0, 384, 89, 0, 384, 60, 0, 384, 74, 0,
384, 75, 0, 384, 76, 0, 384, 73, 0, 384,
64, 0, 384, 65, 0, 384, 77, 0, 384, 78,
0, 384, 87, 0, 384, 88, 0, 384, 68, 0,
384, 67, 0, 384, 112, 0, 384, 66, 63, 0,
384, 72, 0, 384, 92, 0, 384, 84, 0, 384,
48, 0, 384, 95, 113, 0, 384, 40, 0, 384,
39, 0, 384, 40, 95, 113, 0, 384, 39, 95,
113, 0, 384, 358, 383, 0, 384, 1, 0
};
#endif
#if YYDEBUG != 0
static const short yyrline[] = { 0,
328, 330, 344, 347, 348, 352, 354, 357, 362, 366,
372, 374, 377, 380, 384, 387, 389, 391, 394, 396,
399, 402, 404, 406, 408, 410, 412, 414, 420, 424,
427, 429, 433, 435, 436, 438, 442, 445, 451, 454,
456, 461, 464, 468, 471, 474, 477, 481, 486, 496,
498, 500, 502, 504, 517, 526, 536, 538, 540, 544,
546, 547, 554, 555, 556, 559, 562, 566, 568, 569,
572, 574, 577, 580, 582, 586, 589, 591, 595, 597,
599, 603, 605, 607, 611, 613, 615, 621, 625, 628,
631, 634, 639, 642, 644, 646, 652, 662, 664, 667,
670, 672, 675, 679, 688, 691, 693, 697, 710, 730,
733, 735, 736, 739, 746, 752, 754, 756, 758, 760,
763, 768, 770, 771, 772, 773, 776, 778, 779, 782,
784, 785, 788, 793, 793, 797, 797, 800, 800, 803,
803, 807, 807, 812, 812, 815, 815, 818, 820, 823,
830, 837, 843, 846, 855, 857, 865, 868, 871, 874,
878, 881, 884, 887, 889, 891, 893, 897, 900, 903,
908, 912, 917, 921, 924, 926, 930, 949, 956, 959,
961, 962, 963, 966, 970, 971, 975, 979, 982, 984,
988, 991, 994, 998, 1001, 1003, 1005, 1007, 1014, 1018,
1020, 1022, 1024, 1030, 1033, 1036, 1039, 1042, 1046, 1049,
1052, 1056, 1058, 1062, 1066, 1068, 1072, 1075, 1082, 1085,
1087, 1095, 1108, 1114, 1121, 1123, 1125, 1138, 1141, 1143,
1145, 1147, 1149, 1151, 1153, 1155, 1157, 1159, 1161, 1163,
1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1181, 1185,
1187, 1189, 1206, 1209, 1210, 1211, 1212, 1213, 1216, 1219,
1222, 1226, 1229, 1231, 1236, 1238, 1239, 1242, 1244, 1246,
1248, 1252, 1255, 1259, 1261, 1262, 1263, 1267, 1275, 1276,
1277, 1285, 1287, 1290, 1292, 1302, 1304, 1306, 1308, 1310,
1312, 1315, 1317, 1361, 1362, 1366, 1370, 1374, 1378, 1380,
1384, 1386, 1394, 1396, 1398, 1400, 1404, 1406, 1408, 1410,
1415, 1417, 1419, 1421, 1424, 1426, 1428, 1472, 1475, 1479,
1482, 1486, 1489, 1494, 1496, 1500, 1513, 1516, 1523, 1530,
1535, 1537, 1542, 1544, 1551, 1553, 1557, 1561, 1567, 1571,
1574, 1577, 1580, 1590, 1592, 1595, 1599, 1602, 1605, 1608,
1611, 1617, 1623, 1625, 1630, 1632, 1641, 1644, 1646, 1649,
1655, 1657, 1667, 1671, 1674, 1677, 1682, 1685, 1693, 1695,
1697, 1699, 1702, 1705, 1720, 1739, 1742, 1744, 1747, 1749,
1752, 1754, 1757, 1759, 1762, 1765, 1769, 1775, 1776, 1788,
1795, 1798, 1804, 1808, 1813, 1819, 1820, 1828, 1831, 1835,
1838, 1842, 1847, 1850, 1854, 1857, 1859, 1861, 1863, 1870,
1872, 1873, 1874, 1878, 1881, 1885, 1888, 1894, 1896, 1899,
1902, 1905, 1911, 1914, 1917, 1919, 1921, 1925, 1931, 1939,
1941, 1945, 1947, 1952, 1955, 1958, 1960, 1962, 1966, 1970,
1975, 1979, 1982, 1987, 1991, 1994, 1997, 2001, 2036, 2042,
2051, 2071, 2073, 2076, 2078, 2083, 2085, 2087, 2089, 2091,
2095, 2100, 2105, 2111, 2116, 2121, 2123, 2127, 2132, 2135,
2142, 2170, 2176, 2178, 2181, 2184, 2186, 2190, 2192, 2196,
2222, 2251, 2254, 2255, 2276, 2299, 2301, 2305, 2316, 2330,
2419, 2426, 2429, 2437, 2448, 2457, 2461, 2476, 2479, 2484,
2486, 2488, 2490, 2492, 2494, 2497, 2499, 2507, 2513, 2515,
2518, 2521, 2523, 2534, 2539, 2542, 2547, 2550, 2551, 2562,
2565, 2566, 2577, 2579, 2582, 2584, 2587, 2594, 2602, 2609,
2615, 2621, 2629, 2633, 2638, 2642, 2645, 2654, 2656, 2660,
2663, 2668, 2672, 2677, 2687, 2690, 2694, 2698, 2706, 2711,
2717, 2720, 2722, 2724, 2730, 2733, 2735, 2737, 2739, 2743,
2746, 2764, 2774, 2776, 2777, 2781, 2786, 2789, 2791, 2793,
2795, 2799, 2805, 2808, 2810, 2812, 2814, 2818, 2821, 2824,
2826, 2828, 2830, 2834, 2837, 2840, 2842, 2844, 2846, 2853,
2864, 2868, 2873, 2877, 2882, 2884, 2888, 2891, 2893, 2897,
2899, 2900, 2903, 2905, 2907, 2913, 2928, 2934, 2940, 2954,
2956, 2960, 2974, 2976, 2978, 2982, 2988, 3001, 3003, 3007,
3018, 3024, 3026, 3027, 3028, 3036, 3041, 3050, 3051, 3055,
3058, 3064, 3070, 3073, 3075, 3077, 3079, 3083, 3087, 3091,
3094, 3099, 3102, 3104, 3106, 3108, 3110, 3112, 3114, 3116,
3120, 3124, 3128, 3132, 3133, 3135, 3137, 3139, 3141, 3143,
3145, 3147, 3149, 3157, 3159, 3160, 3161, 3164, 3170, 3172,
3177, 3179, 3182, 3196, 3199, 3202, 3206, 3209, 3216, 3218,
3221, 3223, 3225, 3228, 3231, 3234, 3237, 3239, 3242, 3246,
3248, 3254, 3256, 3257, 3259, 3264, 3266, 3268, 3270, 3272,
3275, 3276, 3278, 3281, 3282, 3285, 3285, 3288, 3288, 3291,
3291, 3293, 3295, 3297, 3299, 3305, 3311, 3314, 3317, 3323,
3325, 3327, 3331, 3333, 3336, 3343, 3346, 3354, 3358, 3360,
3363, 3365, 3368, 3372, 3374, 3377, 3379, 3382, 3399, 3405,
3413, 3415, 3417, 3421, 3424, 3425, 3433, 3437, 3441, 3444,
3445, 3451, 3454, 3457, 3459, 3463, 3468, 3471, 3481, 3486,
3487, 3495, 3501, 3506, 3510, 3515, 3519, 3523, 3527, 3532,
3543, 3557, 3561, 3564, 3566, 3570, 3574, 3577, 3580, 3582,
3586, 3588, 3595, 3602, 3605, 3608, 3612, 3616, 3622, 3626,
3631, 3633, 3636, 3641, 3647, 3658, 3661, 3663, 3667, 3672,
3674, 3681, 3684, 3686, 3688, 3694, 3699, 3702, 3704, 3706,
3708, 3710, 3712, 3714, 3716, 3718, 3720, 3722, 3724, 3726,
3728, 3730, 3732, 3734, 3736, 3738, 3740, 3742, 3744, 3746,
3748, 3750, 3752, 3754, 3756, 3758, 3760, 3762, 3764, 3767,
3769
};
#endif
#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)
static const char * const yytname[] = { "$","error","$undefined.","IDENTIFIER",
"TYPENAME","SELFNAME","PFUNCNAME","SCSPEC","TYPESPEC","CV_QUALIFIER","CONSTANT",
"STRING","ELLIPSIS","SIZEOF","ENUM","IF","ELSE","WHILE","DO","FOR","SWITCH",
"CASE","DEFAULT","BREAK","CONTINUE","RETURN","GOTO","ASM_KEYWORD","GCC_ASM_KEYWORD",
"TYPEOF","ALIGNOF","SIGOF","ATTRIBUTE","EXTENSION","LABEL","REALPART","IMAGPART",
"AGGR","VISSPEC","DELETE","NEW","THIS","OPERATOR","CXX_TRUE","CXX_FALSE","NAMESPACE",
"TYPENAME_KEYWORD","USING","LEFT_RIGHT","TEMPLATE","TYPEID","DYNAMIC_CAST","STATIC_CAST",
"REINTERPRET_CAST","CONST_CAST","SCOPE","EMPTY","PTYPENAME","NSNAME","'{'","','",
"';'","THROW","':'","ASSIGN","'='","'?'","OROR","ANDAND","'|'","'^'","'&'","MIN_MAX",
"EQCOMPARE","ARITHCOMPARE","'<'","'>'","LSHIFT","RSHIFT","'+'","'-'","'*'","'/'",
"'%'","POINTSAT_STAR","DOT_STAR","UNARY","PLUSPLUS","MINUSMINUS","'~'","HYPERUNARY",
"PAREN_STAR_PAREN","POINTSAT","'.'","'('","'['","TRY","CATCH","TYPENAME_ELLIPSIS",
"PRE_PARSED_FUNCTION_DECL","EXTERN_LANG_STRING","ALL","PRE_PARSED_CLASS_DECL",
"DEFARG","DEFARG_MARKER","TYPENAME_DEFN","IDENTIFIER_DEFN","PTYPENAME_DEFN",
"END_OF_LINE","END_OF_SAVED_INPUT","')'","'}'","'!'","']'","program","extdefs",
"@1","extdefs_opt",".hush_warning",".warning_ok","extension","asm_keyword","lang_extdef",
"@2","extdef","@3","@4","using_decl","any_id","extern_lang_string","template_header",
"@5","template_parm_list","maybe_identifier","template_type_parm","template_template_parm",
"template_parm","template_def","datadef","ctor_initializer_opt","maybe_return_init",
"eat_saved_input","fndef","constructor_declarator","@6","@7","@8","@9","fn.def1",
"component_constructor_declarator","fn.def2","return_id","return_init","base_init",
".set_base_init","member_init_list","member_init","identifier","notype_identifier",
"identifier_defn","explicit_instantiation","@10","@11","@12","@13","@14","@15",
"@16","@17","begin_explicit_instantiation","end_explicit_instantiation","template_type",
"self_template_type","template_close_bracket","template_arg_list_opt","template_arg_list",
"template_arg","unop","expr","paren_expr_or_null","paren_cond_or_null","xcond",
"condition","@18","compstmtend","already_scoped_stmt","@19","nontrivial_exprlist",
"nonnull_exprlist","unary_expr","new_placement","new_initializer","regcast_or_absdcl",
"cast_expr","expr_no_commas","notype_unqualified_id","do_id","template_id","object_template_id",
"unqualified_id","expr_or_declarator","notype_template_declarator","direct_notype_declarator",
"primary","@20","new","delete","boolean.literal","string","nodecls","object",
"decl","declarator","fcast_or_absdcl","type_id","typed_declspecs","typed_declspecs1",
"reserved_declspecs","declmods","typed_typespecs","reserved_typespecquals","typespec",
"typespecqual_reserved","initdecls","notype_initdecls","nomods_initdecls","maybeasm",
"initdcl","@21","initdcl0_innards","@22","initdcl0","notype_initdcl0","nomods_initdcl0",
"@23","maybe_attribute","attributes","attribute","attribute_list","attrib","any_word",
"identifiers_or_typenames","maybe_init","init","initlist","fn.defpen","pending_inline",
"pending_inlines","defarg_again","pending_defargs","structsp","@24","@25","@26",
"@27","maybecomma","maybecomma_warn","aggr","named_class_head_sans_basetype",
"named_class_head_sans_basetype_defn","named_complex_class_head_sans_basetype",
"do_xref_defn","named_class_head","unnamed_class_head","class_head","maybe_base_class_list",
"base_class_list","base_class","base_class.1","base_class_access_list","left_curly",
"self_reference","opt.component_decl_list","component_decl_list","component_decl",
"component_decl_1","components","notype_components","component_declarator0",
"component_declarator","after_type_component_declarator0","notype_component_declarator0",
"after_type_component_declarator","notype_component_declarator","enumlist","enumerator",
"new_type_id","cv_qualifiers","nonempty_cv_qualifiers","suspend_mom","nonmomentary_expr",
"maybe_parmlist","after_type_declarator","nonnested_type","complete_type_name",
"nested_type","direct_after_type_declarator","notype_declarator","complex_notype_declarator",
"complex_direct_notype_declarator","qualified_id","notype_qualified_id","overqualified_id",
"functional_cast","type_name","nested_name_specifier","nested_name_specifier_1",
"typename_sub","typename_sub0","typename_sub1","typename_sub2","explicit_template_type",
"complex_type_name","ptr_to_mem","global_scope","new_declarator","direct_new_declarator",
"absdcl","direct_abstract_declarator","stmts","errstmt","maybe_label_decls",
"label_decls","label_decl","compstmt_or_error","compstmt","@28","simple_if",
"@29","@30","implicitly_scoped_stmt","@31","stmt","simple_stmt","@32","@33",
"@34","@35","@36","@37","@38","@39","@40","@41","@42","@43","@44","@45","function_try_block",
"@46","@47","try_block","@48","@49","handler_seq","handler","@50","@51","type_specifier_seq",
"handler_args","label_colon","for.init.statement","maybe_cv_qualifier","xexpr",
"asm_operands","nonnull_asm_operands","asm_operand","asm_clobbers","parmlist",
"complex_parmlist","defarg","@52","defarg1","parms","parms_comma","named_parm",
"full_parm","parm","see_typename","bad_parm","exception_specification_opt","ansi_raise_identifier",
"ansi_raise_identifiers","conversion_declarator","operator","operator_name", NULL
};
#endif
static const short yyr1[] = { 0,
114, 114, 116, 115, 115, 117, 117, 118, 119, 120,
121, 121, 123, 122, 124, 124, 124, 124, 124, 124,
124, 125, 124, 126, 124, 124, 124, 124, 124, 127,
127, 127, 128, 128, 128, 128, 129, 129, 131, 130,
130, 132, 132, 133, 133, 134, 134, 135, 136, 136,
136, 136, 136, 136, 137, 137, 138, 138, 138, 138,
138, 138, 138, 138, 138, 139, 139, 140, 140, 140,
141, 141, 142, 142, 142, 144, 143, 143, 145, 143,
143, 146, 143, 143, 147, 143, 143, 148, 148, 148,
148, 148, 149, 149, 149, 149, 150, 150, 150, 150,
150, 150, 150, 151, 152, 152, 152, 153, 154, 155,
155, 155, 155, 156, 156, 156, 156, 156, 156, 156,
156, 157, 157, 157, 157, 157, 158, 158, 158, 159,
159, 159, 161, 160, 162, 160, 163, 160, 164, 160,
165, 160, 166, 160, 167, 160, 168, 160, 169, 170,
171, 171, 171, 172, 173, 173, 174, 174, 175, 175,
176, 176, 177, 177, 177, 177, 177, 178, 178, 179,
179, 180, 180, 181, 181, 181, 183, 182, 182, 184,
184, 184, 184, 186, 185, 185, 187, 187, 187, 187,
188, 188, 189, 189, 189, 189, 189, 189, 189, 189,
189, 189, 189, 189, 189, 189, 189, 189, 189, 189,
189, 189, 189, 189, 189, 189, 190, 190, 191, 191,
191, 191, 192, 192, 193, 193, 193, 194, 194, 194,
194, 194, 194, 194, 194, 194, 194, 194, 194, 194,
194, 194, 194, 194, 194, 194, 194, 194, 194, 194,
194, 194, 195, 195, 195, 195, 195, 195, 196, 197,
197, 198, 198, 198, 199, 199, 199, 200, 200, 200,
200, 201, 201, 202, 202, 202, 202, 203, 203, 203,
203, 203, 203, 203, 204, 203, 203, 203, 203, 203,
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
203, 203, 203, 203, 203, 203, 203, 205, 205, 206,
206, 207, 207, 208, 208, 209, 210, 210, 211, 211,
211, 211, 211, 211, 212, 212, 213, 213, 214, 214,
214, 214, 214, 215, 215, 216, 216, 216, 216, 216,
216, 217, 217, 217, 217, 217, 218, 218, 218, 218,
218, 218, 219, 219, 219, 219, 220, 220, 221, 221,
221, 221, 221, 221, 221, 222, 222, 222, 223, 223,
224, 224, 225, 225, 226, 226, 228, 227, 227, 230,
229, 229, 231, 232, 234, 233, 233, 235, 235, 236,
236, 237, 238, 238, 239, 239, 239, 239, 239, 240,
240, 240, 240, 241, 241, 242, 242, 243, 243, 243,
243, 243, 244, 244, 244, 244, 244, 245, 246, 246,
246, 247, 247, 248, 248, 249, 249, 249, 251, 250,
250, 252, 250, 250, 250, 250, 250, 253, 254, 250,
250, 255, 255, 256, 256, 257, 257, 257, 257, 257,
258, 259, 260, 260, 260, 260, 260, 261, 262, 262,
262, 263, 264, 264, 265, 265, 265, 266, 266, 267,
267, 268, 268, 268, 268, 269, 269, 269, 269, 270,
271, 272, 272, 272, 272, 273, 273, 274, 274, 274,
274, 274, 274, 274, 274, 274, 274, 275, 275, 275,
275, 275, 275, 275, 275, 275, 276, 276, 276, 277,
277, 277, 278, 278, 279, 279, 280, 280, 281, 281,
281, 281, 282, 282, 283, 283, 283, 284, 284, 285,
285, 286, 286, 286, 287, 287, 288, 288, 289, 290,
291, 291, 291, 291, 292, 292, 292, 292, 292, 292,
293, 293, 294, 294, 294, 295, 296, 296, 296, 296,
296, 296, 297, 297, 297, 297, 297, 297, 298, 298,
298, 298, 298, 298, 299, 299, 299, 299, 299, 299,
300, 300, 301, 301, 302, 302, 303, 303, 303, 304,
304, 304, 305, 305, 305, 306, 306, 306, 306, 307,
307, 308, 308, 308, 308, 309, 309, 309, 309, 310,
310, 310, 310, 310, 310, 311, 312, 312, 312, 313,
313, 314, 315, 315, 315, 315, 315, 315, 315, 316,
316, 317, 317, 317, 317, 317, 317, 317, 317, 317,
317, 317, 318, 318, 318, 318, 318, 318, 318, 318,
318, 318, 318, 319, 319, 319, 319, 320, 321, 321,
322, 322, 323, 324, 324, 326, 325, 328, 329, 327,
330, 331, 330, 332, 332, 333, 333, 334, 333, 333,
335, 336, 333, 337, 338, 333, 339, 340, 341, 342,
333, 343, 344, 333, 345, 333, 346, 333, 347, 333,
333, 333, 333, 333, 333, 333, 333, 333, 333, 333,
333, 333, 333, 333, 349, 350, 348, 352, 353, 351,
354, 354, 356, 357, 355, 358, 358, 359, 359, 360,
360, 360, 360, 361, 361, 361, 362, 362, 363, 363,
363, 364, 364, 365, 365, 366, 367, 367, 368, 368,
368, 369, 369, 369, 369, 369, 369, 369, 369, 369,
369, 371, 370, 372, 372, 373, 373, 373, 373, 373,
374, 374, 375, 375, 375, 375, 375, 375, 376, 376,
377, 377, 378, 379, 379, 380, 380, 380, 381, 382,
382, 383, 383, 383, 383, 384, 385, 385, 385, 385,
385, 385, 385, 385, 385, 385, 385, 385, 385, 385,
385, 385, 385, 385, 385, 385, 385, 385, 385, 385,
385, 385, 385, 385, 385, 385, 385, 385, 385, 385,
385
};
static const short yyr2[] = { 0,
0, 1, 0, 2, 2, 1, 0, 0, 0, 1,
1, 1, 0, 2, 2, 1, 1, 5, 4, 5,
4, 0, 6, 0, 5, 5, 2, 4, 2, 2,
3, 3, 1, 1, 2, 2, 1, 2, 0, 5,
3, 1, 3, 1, 0, 2, 2, 3, 1, 3,
1, 3, 1, 3, 2, 2, 2, 3, 3, 2,
2, 2, 2, 2, 1, 1, 1, 0, 1, 2,
0, 1, 4, 3, 3, 0, 8, 5, 0, 9,
6, 0, 8, 5, 0, 9, 6, 2, 2, 1,
2, 1, 6, 4, 6, 4, 2, 1, 2, 2,
1, 2, 1, 2, 2, 4, 2, 3, 0, 0,
1, 3, 2, 3, 1, 4, 2, 4, 2, 4,
2, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 0, 6, 0, 6, 0, 5, 0, 5,
0, 7, 0, 7, 0, 6, 0, 6, 0, 0,
4, 4, 1, 4, 1, 1, 0, 1, 1, 3,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3, 1, 3, 0, 1, 1, 0, 7, 1, 1,
3, 4, 3, 0, 3, 1, 3, 3, 3, 3,
1, 1, 1, 2, 2, 2, 2, 2, 2, 2,
4, 2, 4, 2, 3, 3, 4, 4, 5, 5,
6, 2, 4, 5, 2, 2, 3, 3, 3, 1,
3, 2, 3, 4, 1, 2, 5, 1, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 5, 3, 3,
1, 2, 3, 1, 1, 1, 1, 1, 0, 5,
5, 5, 5, 5, 1, 1, 1, 1, 2, 2,
3, 4, 4, 1, 1, 1, 3, 1, 1, 1,
1, 3, 3, 3, 0, 4, 4, 2, 4, 2,
2, 1, 4, 1, 7, 7, 7, 7, 4, 4,
2, 2, 1, 4, 2, 2, 5, 3, 2, 2,
5, 3, 5, 3, 4, 6, 2, 1, 2, 1,
2, 1, 1, 1, 2, 0, 2, 2, 3, 3,
3, 2, 2, 2, 1, 1, 1, 2, 2, 2,
2, 1, 1, 1, 1, 2, 2, 3, 3, 3,
4, 1, 2, 2, 2, 1, 1, 1, 2, 2,
2, 1, 1, 2, 2, 3, 1, 2, 1, 1,
1, 4, 4, 4, 4, 1, 1, 1, 1, 3,
1, 3, 1, 3, 0, 4, 0, 6, 3, 0,
4, 1, 3, 3, 0, 4, 3, 0, 1, 1,
2, 6, 1, 3, 0, 1, 4, 6, 4, 1,
1, 1, 1, 1, 3, 0, 2, 1, 2, 3,
4, 1, 1, 3, 4, 3, 5, 1, 4, 3,
3, 0, 3, 3, 3, 0, 2, 2, 0, 7,
4, 0, 6, 3, 2, 2, 2, 0, 0, 9,
1, 0, 1, 0, 1, 1, 2, 2, 2, 2,
2, 2, 3, 4, 3, 2, 3, 0, 1, 3,
2, 2, 1, 1, 0, 2, 3, 1, 4, 1,
3, 1, 1, 4, 4, 2, 2, 3, 3, 1,
0, 1, 2, 4, 3, 1, 2, 2, 2, 2,
2, 2, 2, 1, 2, 2, 3, 2, 2, 4,
4, 2, 1, 5, 4, 1, 0, 1, 3, 0,
1, 3, 1, 1, 1, 1, 4, 4, 4, 4,
4, 3, 4, 4, 4, 4, 3, 1, 3, 1,
3, 2, 1, 6, 0, 2, 1, 2, 0, 2,
4, 4, 2, 4, 3, 3, 2, 2, 3, 1,
1, 2, 1, 1, 2, 2, 4, 4, 3, 3,
2, 1, 3, 3, 2, 2, 3, 1, 3, 3,
2, 2, 3, 1, 4, 3, 4, 3, 1, 2,
2, 2, 2, 2, 1, 2, 4, 4, 2, 1,
1, 1, 1, 2, 4, 2, 2, 2, 2, 1,
2, 2, 2, 2, 3, 1, 2, 3, 4, 2,
2, 2, 2, 2, 2, 4, 2, 1, 2, 2,
3, 1, 3, 2, 3, 2, 2, 3, 1, 3,
4, 3, 2, 2, 1, 3, 2, 2, 1, 2,
3, 1, 3, 1, 6, 4, 4, 3, 5, 3,
3, 3, 2, 1, 1, 2, 2, 2, 0, 1,
1, 2, 3, 1, 2, 0, 3, 0, 0, 5,
1, 0, 2, 1, 1, 1, 2, 0, 4, 1,
0, 0, 5, 0, 0, 7, 0, 0, 0, 0,
12, 0, 0, 7, 0, 5, 0, 7, 0, 4,
2, 2, 2, 3, 6, 8, 10, 12, 4, 3,
2, 2, 1, 1, 0, 0, 6, 0, 0, 5,
1, 2, 0, 0, 5, 1, 1, 3, 3, 2,
2, 2, 2, 2, 1, 2, 0, 1, 0, 1,
1, 0, 1, 1, 3, 4, 1, 3, 0, 1,
1, 1, 2, 2, 2, 1, 1, 2, 2, 2,
2, 0, 3, 1, 1, 1, 2, 2, 2, 4,
2, 2, 2, 2, 2, 2, 1, 2, 1, 2,
1, 1, 0, 0, 1, 0, 4, 2, 1, 1,
3, 0, 3, 3, 3, 1, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 3,
2, 2, 2, 2, 3, 2, 2, 4, 4, 3,
2
};
static const short yydefact[] = { 3,
13, 13, 5, 0, 4, 0, 256, 600, 601, 0,
358, 370, 547, 0, 11, 12, 0, 0, 0, 10,
456, 806, 0, 0, 0, 149, 632, 257, 258, 65,
0, 0, 793, 0, 37, 0, 0, 14, 0, 8,
0, 17, 16, 71, 92, 68, 0, 602, 153, 275,
254, 276, 578, 0, 345, 0, 344, 363, 0, 383,
362, 400, 369, 0, 469, 468, 475, 474, 473, 451,
357, 563, 371, 564, 90, 274, 589, 561, 0, 603,
545, 0, 0, 255, 63, 64, 157, 606, 157, 607,
157, 259, 149, 122, 123, 124, 125, 126, 442, 445,
0, 628, 0, 446, 0, 0, 0, 0, 123, 124,
125, 126, 24, 0, 0, 0, 0, 0, 0, 0,
447, 610, 0, 616, 0, 0, 0, 0, 0, 0,
30, 0, 0, 39, 0, 157, 608, 0, 0, 576,
0, 0, 0, 575, 0, 0, 0, 0, 275, 0,
549, 0, 274, 545, 29, 0, 27, 3, 38, 0,
56, 55, 72, 15, 0, 398, 0, 0, 416, 69,
61, 609, 549, 0, 545, 62, 0, 0, 0, 88,
0, 379, 335, 560, 336, 572, 0, 545, 360, 359,
60, 91, 346, 0, 381, 361, 89, 352, 376, 377,
347, 365, 367, 356, 378, 0, 57, 401, 457, 458,
459, 460, 472, 131, 130, 132, 461, 462, 466, 0,
0, 475, 793, 471, 490, 491, 548, 364, 0, 395,
601, 0, 630, 153, 593, 594, 590, 566, 604, 0,
565, 562, 0, 841, 837, 836, 834, 816, 821, 822,
0, 828, 827, 813, 814, 812, 831, 820, 817, 818,
819, 823, 824, 810, 811, 807, 808, 809, 833, 825,
826, 815, 832, 0, 829, 736, 363, 737, 802, 259,
256, 547, 279, 324, 0, 0, 0, 0, 320, 318,
292, 322, 323, 0, 0, 0, 0, 0, 258, 251,
0, 0, 164, 163, 0, 165, 166, 0, 0, 167,
0, 0, 158, 159, 0, 225, 0, 228, 162, 278,
193, 0, 0, 280, 281, 0, 161, 342, 363, 343,
595, 303, 294, 0, 0, 0, 0, 157, 0, 444,
0, 439, 0, 629, 627, 0, 168, 169, 0, 0,
0, 405, 3, 22, 0, 624, 620, 621, 623, 625,
622, 122, 123, 124, 0, 125, 126, 612, 613, 617,
614, 611, 266, 267, 0, 265, 33, 34, 0, 592,
591, 32, 31, 41, 0, 358, 139, 0, 0, 363,
137, 0, 0, 574, 0, 573, 253, 270, 0, 582,
269, 0, 581, 0, 277, 586, 0, 0, 13, 0,
149, 9, 9, 0, 397, 399, 104, 75, 109, 725,
0, 67, 66, 74, 107, 0, 0, 105, 70, 588,
0, 0, 553, 0, 796, 0, 558, 0, 557, 0,
0, 0, 0, 545, 398, 0, 59, 549, 545, 571,
0, 349, 350, 0, 58, 398, 354, 353, 355, 348,
368, 385, 384, 463, 467, 465, 0, 470, 476, 0,
0, 366, 398, 545, 76, 0, 0, 0, 0, 545,
82, 546, 577, 601, 631, 153, 0, 0, 830, 835,
365, 545, 545, 0, 545, 840, 157, 0, 0, 0,
200, 0, 0, 202, 215, 216, 0, 0, 0, 0,
0, 252, 199, 196, 195, 197, 0, 0, 0, 0,
0, 278, 0, 0, 0, 194, 155, 156, 272, 0,
198, 0, 0, 226, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 288, 290, 291, 328,
327, 0, 0, 0, 0, 0, 204, 543, 0, 212,
325, 317, 0, 0, 793, 306, 309, 310, 0, 0,
337, 649, 645, 654, 0, 549, 545, 545, 545, 339,
652, 0, 599, 341, 0, 0, 340, 305, 0, 301,
319, 321, 596, 0, 302, 152, 154, 0, 147, 0,
363, 145, 540, 454, 538, 441, 0, 0, 372, 0,
0, 373, 374, 375, 411, 412, 413, 410, 0, 403,
406, 0, 3, 0, 615, 157, 618, 28, 36, 35,
45, 0, 0, 0, 49, 53, 42, 792, 787, 0,
342, 363, 45, 343, 791, 51, 150, 135, 133, 150,
151, 273, 580, 579, 277, 583, 0, 19, 21, 71,
0, 110, 326, 0, 676, 73, 674, 422, 0, 418,
417, 192, 0, 191, 550, 587, 0, 766, 767, 0,
761, 363, 0, 760, 762, 794, 776, 0, 0, 585,
556, 555, 0, 0, 570, 0, 393, 392, 380, 569,
0, 796, 559, 351, 382, 394, 398, 464, 600, 601,
793, 0, 793, 602, 477, 478, 480, 793, 483, 482,
0, 513, 601, 0, 504, 0, 0, 516, 0, 103,
98, 0, 153, 517, 520, 0, 496, 0, 101, 0,
398, 396, 796, 759, 157, 157, 605, 157, 796, 759,
545, 79, 545, 85, 839, 838, 802, 802, 802, 0,
0, 0, 0, 599, 0, 0, 0, 0, 363, 0,
0, 0, 284, 0, 282, 283, 0, 223, 160, 256,
600, 601, 257, 258, 0, 0, 423, 452, 0, 250,
249, 751, 750, 0, 247, 246, 244, 245, 243, 242,
241, 238, 239, 240, 236, 237, 231, 232, 233, 234,
235, 229, 230, 0, 0, 0, 0, 0, 0, 206,
220, 0, 0, 205, 545, 545, 0, 545, 542, 639,
0, 0, 0, 0, 0, 308, 0, 312, 0, 314,
0, 648, 647, 644, 643, 792, 0, 0, 663, 0,
0, 796, 338, 796, 650, 545, 759, 549, 649, 645,
0, 0, 545, 0, 0, 0, 0, 0, 260, 150,
143, 141, 150, 0, 455, 0, 454, 190, 189, 188,
187, 405, 0, 0, 25, 0, 26, 619, 0, 47,
44, 45, 0, 40, 0, 0, 649, 645, 0, 783,
545, 786, 788, 0, 784, 785, 46, 461, 0, 140,
150, 150, 138, 18, 20, 386, 127, 115, 128, 129,
0, 108, 111, 0, 0, 0, 0, 675, 669, 419,
0, 106, 554, 551, 765, 782, 771, 769, 0, 552,
764, 781, 770, 768, 763, 795, 778, 789, 779, 772,
777, 798, 0, 390, 568, 567, 389, 487, 0, 486,
793, 793, 793, 0, 545, 759, 512, 505, 517, 506,
398, 398, 502, 503, 500, 501, 545, 759, 256, 600,
0, 385, 99, 508, 518, 523, 524, 385, 385, 0,
0, 385, 97, 509, 521, 385, 497, 498, 499, 398,
0, 448, 78, 0, 0, 0, 0, 84, 0, 796,
759, 796, 759, 804, 803, 805, 261, 293, 201, 203,
299, 300, 0, 0, 0, 0, 283, 286, 0, 0,
0, 0, 224, 0, 287, 289, 218, 217, 208, 0,
207, 222, 0, 0, 636, 634, 0, 637, 549, 213,
0, 0, 157, 315, 0, 0, 0, 646, 642, 653,
545, 662, 660, 661, 651, 796, 0, 658, 0, 597,
598, 0, 304, 148, 150, 150, 146, 541, 539, 443,
0, 404, 402, 256, 0, 23, 626, 48, 43, 50,
54, 648, 644, 649, 645, 0, 561, 0, 545, 650,
52, 136, 134, 0, 113, 0, 117, 0, 119, 0,
121, 0, 726, 0, 180, 677, 0, 670, 671, 0,
420, 649, 645, 0, 278, 0, 595, 790, 0, 0,
799, 800, 0, 0, 387, 0, 0, 0, 489, 488,
481, 796, 0, 507, 416, 416, 796, 0, 0, 0,
398, 398, 0, 398, 398, 0, 398, 0, 416, 0,
436, 545, 263, 262, 264, 545, 81, 0, 87, 0,
0, 0, 0, 0, 0, 426, 0, 424, 227, 248,
0, 209, 210, 219, 221, 635, 633, 640, 638, 0,
214, 0, 0, 307, 311, 313, 796, 656, 545, 657,
144, 142, 440, 0, 407, 409, 648, 644, 566, 650,
114, 112, 0, 0, 0, 0, 414, 0, 0, 256,
600, 601, 678, 691, 694, 697, 702, 0, 0, 0,
0, 0, 0, 257, 723, 728, 0, 747, 0, 686,
0, 0, 363, 0, 665, 684, 690, 664, 685, 724,
0, 672, 421, 0, 598, 780, 774, 775, 773, 0,
797, 391, 0, 484, 485, 479, 94, 545, 511, 515,
96, 545, 398, 398, 532, 416, 256, 600, 0, 519,
525, 526, 385, 385, 416, 416, 0, 416, 522, 510,
0, 796, 796, 545, 545, 0, 0, 0, 0, 425,
0, 0, 211, 641, 316, 262, 659, 796, 0, 116,
118, 120, 733, 727, 731, 0, 673, 668, 183, 740,
742, 743, 0, 0, 682, 0, 0, 0, 709, 711,
712, 713, 0, 0, 0, 741, 0, 334, 748, 0,
687, 332, 385, 0, 333, 0, 385, 0, 0, 0,
181, 667, 666, 688, 722, 721, 283, 801, 388, 796,
796, 531, 528, 530, 0, 0, 398, 398, 398, 527,
529, 514, 438, 0, 437, 432, 77, 83, 796, 796,
295, 296, 297, 298, 427, 544, 655, 408, 0, 732,
415, 172, 0, 679, 692, 681, 0, 0, 0, 0,
0, 705, 0, 714, 0, 720, 729, 0, 330, 331,
0, 0, 0, 329, 182, 682, 93, 95, 398, 398,
537, 416, 416, 0, 0, 450, 80, 86, 0, 734,
179, 0, 363, 0, 682, 0, 695, 683, 669, 745,
698, 0, 0, 0, 0, 710, 719, 0, 0, 689,
536, 534, 533, 535, 435, 434, 428, 68, 71, 0,
0, 0, 173, 385, 680, 184, 693, 186, 0, 746,
0, 744, 703, 707, 706, 730, 752, 0, 0, 433,
738, 739, 735, 398, 669, 170, 0, 0, 176, 0,
175, 682, 0, 0, 0, 753, 754, 715, 431, 0,
430, 0, 185, 0, 696, 699, 704, 708, 0, 752,
0, 0, 429, 177, 171, 0, 0, 0, 716, 755,
0, 0, 756, 0, 0, 178, 700, 757, 0, 717,
0, 0, 0, 701, 758, 718, 0, 0, 0
};
static const short yydefgoto[] = { 1547,
409, 2, 410, 160, 669, 311, 165, 3, 4, 38,
633, 353, 738, 375, 40, 739, 385, 644, 900, 645,
646, 647, 42, 43, 421, 168, 164, 44, 740, 754,
1021, 760, 1023, 46, 741, 742, 169, 170, 422, 672,
932, 933, 613, 934, 218, 47, 922, 921, 660, 657,
1086, 1085, 883, 880, 135, 920, 48, 49, 529, 312,
313, 314, 315, 1249, 1498, 1404, 1500, 1442, 1531, 1126,
1477, 1495, 347, 872, 316, 566, 834, 317, 318, 348,
320, 338, 51, 236, 377, 398, 52, 53, 321, 524,
322, 323, 324, 325, 423, 326, 1250, 462, 588, 327,
1251, 55, 201, 650, 328, 202, 502, 203, 181, 194,
59, 445, 463, 1273, 707, 1144, 182, 195, 60, 473,
708, 61, 62, 629, 630, 631, 1228, 428, 797, 798,
1468, 1469, 1436, 1385, 1301, 63, 617, 341, 1171, 1386,
1042, 886, 64, 65, 66, 67, 222, 68, 69, 70,
224, 725, 726, 727, 728, 226, 470, 471, 746, 747,
748, 994, 1004, 995, 1290, 996, 997, 1291, 1292, 614,
615, 567, 862, 330, 431, 432, 175, 183, 72, 73,
74, 184, 185, 152, 76, 131, 331, 332, 333, 78,
334, 80, 730, 122, 123, 124, 478, 104, 81, 335,
839, 840, 857, 591, 1254, 1255, 1127, 1128, 1129, 676,
1256, 939, 1257, 1333, 1445, 1407, 1408, 1258, 1259, 1426,
1334, 1446, 1335, 1479, 1336, 1481, 1526, 1541, 1337, 1502,
1455, 1503, 1413, 424, 673, 1226, 1260, 1347, 1458, 1324,
1325, 1399, 1472, 1444, 1440, 1261, 1451, 1350, 804, 1505,
1506, 1507, 1539, 693, 694, 961, 1140, 1269, 695, 696,
697, 957, 698, 145, 959, 700, 1142, 1143, 496, 83,
84
};
static const short yypact[] = { 125,
130,-32768,-32768, 3240,-32768, 195, 72, 188, 284, 151,
102,-32768,-32768, 1117,-32768,-32768, 136, 176, 198,-32768,
-32768,-32768, 1085, 1187, 1489, 256,-32768, 304, 367,-32768,
2407, 2407,-32768, 4859,-32768, 3240, 294,-32768, 352, 91,
5970,-32768,-32768, 208, 1265, 379, 356, 372,-32768,-32768,
-32768,-32768, 330, 2553,-32768, 10199,-32768, 1350, 498,-32768,
423,-32768,-32768, 1046,-32768,-32768, 399,-32768,-32768, 417,
4154,-32768,-32768,-32768, 784,-32768,-32768,-32768, 849,-32768,
-32768, 508, 5609, 408,-32768,-32768, 9052,-32768, 9052,-32768,
9052,-32768,-32768,-32768, 188, 284, 304, 445, 453, 492,
372,-32768, 1409,-32768, 508, 9052, 9052, 480,-32768,-32768,
-32768,-32768,-32768, 64, 528, 368, 383, 478, 538, 553,
-32768,-32768, 564,-32768, 572, 188, 284, 1112, 304, 445,
-32768, 855, 467, 509, 10350, 9052,-32768, 9052, 2926,-32768,
1285, 543, 2926,-32768, 1090, 3033, 3033, 4859, 524, 547,
517, 552, 555,-32768,-32768, 627,-32768, 556,-32768, 10084,
195,-32768,-32768,-32768, 582, 423, 691, 145, 179, 624,
-32768,-32768, 592, 250,-32768,-32768, 3416, 3416, 4989, 784,
591,-32768,-32768, 387,-32768,-32768, 2806,-32768,-32768,-32768,
-32768,-32768, 1350, 641,-32768, 423, 784,-32768,-32768,-32768,
1578, 1350,-32768, 423,-32768, 5186,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 372, 988,
1434, 399,-32768,-32768,-32768,-32768,-32768, 682, 508,-32768,
497, 963,-32768, 271,-32768,-32768,-32768,-32768,-32768, 3988,
-32768,-32768, 590,-32768, 617, 620,-32768,-32768,-32768,-32768,
658,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768, 616,-32768,-32768, 682, 4154, 1158,-32768,
-32768, 646,-32768,-32768, 9667, 9754, 9841, 9841,-32768,-32768,
-32768,-32768,-32768, 668, 701, 711, 721, 732, 445, 9139,
1090, 9841,-32768,-32768, 9841,-32768,-32768, 9841, 7165,-32768,
9841, 223, 683,-32768, 9841,-32768, 9226,-32768, 10446,-32768,
1514, 1785, 9313,-32768, 799, 2426,-32768, 953, 3686, 4007,
-32768, 307,-32768, 1524, 1858, 223, 223, 9052, 10350,-32768,
1090, 703, 1090,-32768,-32768, 708, 768, 10596, 724, 733,
738, 945, 556,-32768, 1112,-32768,-32768,-32768,-32768,-32768,
-32768, 528, 368, 383, 1090, 478, 538, 793, 553,-32768,
776,-32768, 188, 284, 814,-32768,-32768,-32768, 467,-32768,
-32768,-32768,-32768,-32768, 4967,-32768,-32768, 5186, 5373, 1679,
-32768, 223, 809,-32768, 775,-32768,-32768,-32768, 2926,-32768,
-32768, 2926,-32768, 760,-32768,-32768, 3988, 87, 761, 777,
-32768,-32768,-32768, 627,-32768, 423,-32768,-32768,-32768,-32768,
148,-32768,-32768,-32768,-32768, 7257, 9139,-32768,-32768,-32768,
9139, 779,-32768, 6493, 100, 4306,-32768, 4306,-32768, 4584,
4584, 4989, 790,-32768, 423, 5186,-32768, 783,-32768,-32768,
4619, 1578, 1350, 5186,-32768, 423,-32768,-32768, 423, 1578,
-32768, 811,-32768,-32768, 372,-32768, 988,-32768, 1220, 1675,
57, 682, 423,-32768,-32768, 836, 852, 876, 858,-32768,
-32768,-32768,-32768, 532,-32768, 338, 821, 826,-32768,-32768,
682,-32768,-32768, 822,-32768,-32768, 9052, 9139, 646, 7165,
-32768, 437, 7165,-32768,-32768,-32768, 9052, 5977, 5977, 5977,
5977, 10641,-32768,-32768,-32768,-32768, 832, 9928, 9928, 7165,
851, 524, 863, 887, 867,-32768,-32768,-32768,-32768, 9052,
-32768, 6790, 7165,-32768, 9139, 9139, 7349, 9139, 9139, 9139,
9139, 9139, 9139, 9139, 9139, 9139, 9139, 9139, 9139, 9139,
9139, 9139, 9139, 9139, 9139, 9139,-32768,-32768,-32768,-32768,
-32768, 9139, 9139, 9139, 9052, 2857, 366, 440, 7988,-32768,
-32768,-32768, 880, 963, 972, 444, 523, 530, 2780, 543,
-32768, 1687, 1687,-32768, 4837, 868, 877, 948,-32768,-32768,
502, 8495, 725,-32768, 860, 508,-32768,-32768, 9139,-32768,
-32768,-32768,-32768, 249,-32768,-32768,-32768, 223,-32768, 5186,
1998,-32768, 933, 939,-32768,-32768, 1090, 793,-32768, 7717,
7809,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 79,-32768,
906, 895, 556, 951, 961, 9052,-32768,-32768,-32768,-32768,
1386, 256, 990, 206, 970, 971,-32768,-32768, 2152, 10406,
2152, 4432, 1046, 10143,-32768, 973,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768, 929,-32768, 979,-32768,-32768, 208,
89, 460, 993, 887,-32768,-32768,-32768,-32768, 6695, 10641,
-32768, 768, 947, 10596,-32768,-32768, 952,-32768,-32768, 967,
160, 5318, 969,-32768, 169, 5796, 996, 1015, 561,-32768,
-32768,-32768, 4306, 4306,-32768, 4619,-32768, 1016,-32768,-32768,
995, 100,-32768, 1578,-32768,-32768, 423,-32768, 368, 383,
-32768, 964,-32768, 553, 1022,-32768,-32768, 120,-32768,-32768,
1492,-32768, 589, 669,-32768, 9139, 5517,-32768, 5517, 335,
335, 217, 585, 2595, 10244, 2284,-32768, 225, 335, 1043,
423,-32768, 100, 2575, 9052, 9052,-32768, 9052, 100, 2575,
-32768,-32768,-32768,-32768,-32768,-32768, 649, 649, 649, 223,
975, 1000, 9406, 948, 1004, 1014, 1019, 1059, 4066, 1060,
1074, 1079,-32768, 1058,-32768,-32768, 1068,-32768,-32768, 1118,
787, 900, 65, 431, 9139, 1120,-32768, 1124, 1070, 10641,
10641,-32768,-32768, 1123, 5412, 5667, 3513, 5693, 4244, 3542,
3712, 1983, 1983, 1983, 1691, 1691, 1237, 1237, 756, 756,
756,-32768,-32768, 1084, 1082, 1086, 1095, 1097, 5977, 366,
-32768, 7257, 9139,-32768,-32768,-32768, 9139,-32768,-32768, 1105,
9841, 1099, 1119, 1136, 1166,-32768, 9139,-32768, 9139,-32768,
9139, 2683,-32768, 2683,-32768, 140, 1109, 1110,-32768, 1113,
5977, 100,-32768, 100, 4679,-32768, 2575, 1125, 8687, 8687,
6301, 1121, 9226, 1122, 3050, 1858, 984, 1130,-32768,-32768,
-32768,-32768,-32768, 9139, 1090, 1138, 939,-32768, 10641,-32768,
10641, 945, 1137, 9493,-32768, 1141,-32768,-32768, 223,-32768,
-32768, 1364, 4967,-32768, 5977, 9052, 2037, 2037, 3864,-32768,
-32768,-32768,-32768, 2806,-32768,-32768,-32768, 61, 9139,-32768,
-32768,-32768,-32768,-32768,-32768,-32768, 528,-32768, 478, 538,
9139, 1170,-32768, 587, 601, 622, 887,-32768, 71,-32768,
55,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 8591,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768, 1015, 1168,-32768,
-32768,-32768, 5977,-32768,-32768,-32768, 1190,-32768, 9052,-32768,
-32768,-32768,-32768, 1345,-32768, 2575, 10641,-32768, 1904,-32768,
423, 423,-32768,-32768,-32768,-32768,-32768, 2575, 232, 915,
9139, 811,-32768, 1196,-32768,-32768,-32768, 343, 391, 849,
543, 686, 335, 1199,-32768, 901,-32768,-32768,-32768, 423,
4219,-32768,-32768, 1154, 223, 223, 223,-32768, 1157, 100,
2575, 100, 2575,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768, 1175, 1176, 1177, 1179, 929,-32768, 10528, 7257,
6885, 1163,-32768, 9139,-32768,-32768,-32768,-32768, 825, 1172,
-32768,-32768, 1173, 66, 285, 285, 1167, 285,-32768,-32768,
9841, 1268, 9052,-32768, 1185, 1186, 1188,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768, 100, 1191,-32768, 1192,-32768,
-32768, 3120,-32768,-32768,-32768,-32768,-32768, 10641,-32768,-32768,
1189,-32768,-32768, 227, 1197,-32768,-32768,-32768,-32768,-32768,
-32768, 2938, 2938, 3140, 3140, 3864,-32768, 2806,-32768, 3487,
10446,-32768,-32768, 1200,-32768, 460,-32768, 9139,-32768, 9139,
-32768, 9139,-32768, 1090,-32768,-32768, 6207, 1275,-32768, 6977,
-32768, 8780, 8780, 6397, 183, 1205, 254,-32768, 7257, 7069,
-32768,-32768, 240, 7257,-32768, 1214, 1218, 1220,-32768,-32768,
-32768, 100, 1219,-32768, 1266, 1266, 100, 1222, 9139, 9139,
10506, 423, 3309, 423, 423, 1160, 423, 4478, 1266, 5125,
-32768,-32768,-32768, 1278,-32768,-32768,-32768, 1225,-32768, 1226,
9139, 9139, 9139, 9139, 7257,-32768, 1276,-32768,-32768, 10641,
9139,-32768, 825,-32768,-32768,-32768,-32768,-32768,-32768, 1228,
-32768, 1290, 223,-32768,-32768,-32768, 100,-32768,-32768,-32768,
-32768,-32768,-32768, 9139,-32768,-32768, 2938, 2938,-32768, 3487,
-32768,-32768, 1234, 1236, 1244, 1250,-32768, 786, 242, 1297,
1021, 1023,-32768,-32768,-32768,-32768,-32768, 9139, 1300, 1304,
1309, 8873, 257, 415,-32768,-32768, 8965, 1366, 1316,-32768,
4706, 10305, 10451, 6095,-32768,-32768, 1362,-32768,-32768,-32768,
8099,-32768,-32768, 1273, 1916,-32768,-32768,-32768,-32768, 5977,
-32768,-32768, 7257,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768, 10506, 10506,-32768, 1266, 695, 1083, 9139,-32768,
-32768,-32768, 811, 811, 1266, 1266, 532, 1266,-32768,-32768,
5854, 100, 100,-32768,-32768, 1282, 1284, 1298, 1308,-32768,
7257, 1310,-32768,-32768,-32768,-32768,-32768, 100, 1314,-32768,
-32768,-32768,-32768, 1250,-32768, 1090,-32768,-32768,-32768,-32768,
-32768,-32768, 629, 629, 887, 1292, 1294, 10484,-32768,-32768,
-32768,-32768, 1334, 9139, 1369,-32768, 887,-32768,-32768, 1338,
-32768,-32768, 811, 823,-32768, 861, 811, 9580, 864, 266,
-32768,-32768,-32768,-32768,-32768,-32768, 339,-32768,-32768, 100,
100,-32768,-32768,-32768, 9139, 9139, 10506, 423, 423,-32768,
-32768,-32768,-32768, 7901,-32768,-32768,-32768,-32768, 100, 100,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 1339,-32768,
-32768,-32768, 9052,-32768,-32768,-32768, 1435, 8401, 6603, 9052,
9139,-32768, 8209,-32768, 1394,-32768,-32768, 627,-32768,-32768,
10015, 10015, 7441,-32768,-32768, 887,-32768,-32768, 10506, 10506,
-32768, 1266, 1266, 1347, 10550, 1358,-32768,-32768, 5257,-32768,
-32768, 1349, 443, 5186, 887, 8305,-32768,-32768, 71,-32768,
-32768, 1402, 1359, 10619, 8209,-32768,-32768, 1250, 78,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768, 379, 208, 1360,
1361, 887,-32768, 811,-32768,-32768,-32768,-32768, 638,-32768,
7533,-32768,-32768,-32768,-32768, 1250, 1457, 1411, 156,-32768,
-32768,-32768,-32768, 423, 71,-32768, 9139, 1413,-32768, 1414,
-32768, 887, 8209, 1382, 53, 1418,-32768,-32768,-32768, 148,
-32768, 1415,-32768, 1371,-32768,-32768,-32768,-32768, 9139, 1457,
1421, 1457,-32768,-32768,-32768, 7625, 1373, 158,-32768,-32768,
7257, 1377,-32768, 1479, 1439,-32768,-32768,-32768, 301,-32768,
8305, 1490, 1442,-32768,-32768,-32768, 1508, 1509,-32768
};
static const short yypgoto[] = {-32768,
1511,-32768, -303,-32768, 1101, 18, -1, 1515,-32768, 192,
-32768,-32768, 519, 1161,-32768, 5,-32768,-32768, -623,-32768,
-32768, 615,-32768, 1363, -668, 83, -664, 1392, 30,-32768,
-32768,-32768,-32768,-32768, 774,-32768,-32768,-32768,-32768,-32768,
-32768, 404, 661,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768, 1440, -611, 5315, 32, -317, 44,
1416, -503,-32768, 103,-32768, 222,-32768, -1302,-32768, -756,
17,-32768, 1320, 1586, -262,-32768, -794, 1774, -110, 1098,
3500, 1281,-32768, -87, -55, 1580, -77, 27,-32768,-32768,
-32768, -319,-32768, -155,-32768,-32768, -1156, -47, -316, 2413,
58, -240, -120, 52, 76, -181, -4, -144, -610, 312,
-32768, 68, 73,-32768, -337,-32768,-32768,-32768,-32768,-32768,
374, 1115, 20,-32768, 673,-32768,-32768, -1049, -422, 890,
-32768,-32768,-32768,-32768,-32768, -32,-32768,-32768,-32768,-32768,
-32768, 685, -360,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
1348,-32768, 426, 602,-32768,-32768,-32768,-32768, 566, -686,
-32768,-32768,-32768,-32768,-32768,-32768, 833,-32768, 412, 966,
704, 1024, 3968, 7, 51, -431, 1407, 3322, -438,-32768,
19,-32768, 3079, -118, 247, -59, 3948, 1271,-32768, 4653,
1794, 1660, -16, -115,-32768, 1471, -81,-32768, 4369, 2696,
-290,-32768, 2504,-32768,-32768, 344,-32768,-32768, 471, 93,
-353,-32768,-32768,-32768,-32768, -1262,-32768, -1191, -1324,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768, 115,-32768,-32768,-32768,-32768,-32768, 153,
-1232,-32768,-32768, -65,-32768,-32768,-32768,-32768, -1312, 92,
-32768, 94,-32768, -616, -520, 660,-32768,-32768,-32768,-32768,
-371,-32768, -364, -179,-32768, 681, 349,-32768, -394,-32768,
-217
};
#define YYLAST 10726
static const short yytable[] = { 58,
408, 237, 37, 681, 937, 925, 180, 121, 41, 372,
71, 453, 593, 655, 479, 602, 711, 279, 606, 607,
656, 36, 501, 504, 653, 205, 789, 400, 403, 917,
729, 58, 102, 45, 37, 1051, 58, 139, 143, 37,
41, 371, 71, 469, 380, 41, 472, 71, 923, 632,
978, 193, 980, 36, 534, 56, 458, 461, 36, 1007,
151, 54, 1363, 237, 858, 45, 228, 677, 378, 1366,
45, 858, 452, 383, 661, 662, 381, 382, 277, 57,
208, 460, 329, 1448, 329, 192, 329, 56, 571, 278,
1348, 1400, 56, 54, 750, 491, 1452, 571, 54, 571,
241, 329, 329, 174, 1124, 1279, 1280, 1453, 482, 237,
234, 57, 166, 581, 1130, 1520, 57, 605, 716, 1300,
-44, 1478, 354, 344, -1, -44, 972, -125, 355, -2,
390, 329, 336, 329, 337, 752, -44, 1014, 892, 136,
1487, 71, 230, 1019, 649, 418, 87, 491, 674, 158,
93, 945, 399, 402, 860, 58, 1509, 973, 276, 773,
205, 699, 1521, 1460, 387, 1131, 71, 751, 205, 205,
787, 945, 151, 151, 151, 1195, 505, 506, 1501, 392,
951, 1125, 1475, 436, 438, 774, 389, 1488, 893, 45,
159, 514, 388, 649, 515, 205, 667, 516, 926, 946,
526, 174, 947, -326, 531, 151, 675, 419, 346, 350,
57, 56, 570, 1532, -326, 208, 1478, 54, 419, 946,
1534, 1456, 947, 208, -792, 92, 425, 155, 952, 106,
-275, 953, 162, 935, 174, 57, 1374, 948, 576, 1517,
420, 983, 88, 426, 205, 1380, 1381, 241, 1382, 788,
1077, 420, 1450, 1400, 1192, 85, 568, 948, 671, 94,
109, 110, 89, 1485, 456, 903, 954, 1535, 1084, 107,
577, 1087, 427, 228, 486, 984, -275, -275, 1098, 985,
153, 904, 902, 635, 602, 1008, 1214, 289, 126, 127,
879, 108, -268, 482, 1159, 378, 205, 433, 527, 1270,
528, -589, 1328, 27, 329, 86, 87, 458, 461, 1112,
1113, 1518, 986, 111, 112, 458, 163, 277, 480, 640,
938, 400, 403, 639, 655, 228, 1328, 461, 278, 896,
134, 958, 714, 329, 611, 1009, 1215, 1344, 90, 27,
658, 129, 130, 434, 649, 71, 461, -589, -589, 1271,
858, 649, 1329, 241, 598, 835, 479, 205, 91, 1153,
1542, 15, 16, -589, 481, 836, -385, -335, 609, 15,
16, 1158, 1024, 1025, 1026, 593, 1425, -549, 136, 837,
652, 608, 1463, 1464, 193, 763, -277, 156, 858, 643,
389, 654, 153, 153, 153, -385, 610, 276, 1313, -385,
599, -335, 1101, 167, 1178, -335, 1180, 514, 515, 1052,
1543, 521, 157, 831, 57, -336, 171, 15, 16, 205,
205, 137, 357, -549, 173, 153, 172, 205, 858, 692,
832, 764, -277, -277, -549, 208, 1079, 358, -335, 205,
654, 138, 89, 126, 127, -385, 703, 704, -271, -336,
199, 200, 1027, -336, 19, 649, 14, 91, 205, 833,
651, 223, 927, 719, 720, 58, 151, 151, 151, 281,
373, 374, 10, 1211, 1212, 225, 71, 1346, 208, 21,
-549, 448, 280, 1007, 581, 137, -336, 737, 24, 136,
581, 846, 329, -126, 27, 329, 129, 130, 329, 137,
568, 743, 329, 779, 779, 779, 779, 928, 22, 651,
835, 8, 9, 649, 27, 329, 929, 930, 709, 649,
836, 745, 39, 28, 299, 329, 715, 744, 329, 717,
773, 655, 359, 685, 837, 729, 773, 847, 656, 415,
770, 968, 653, 970, 474, 57, 126, 127, 974, 866,
342, 90, 136, 931, 39, 33, 602, 206, 207, 39,
329, 277, 881, 340, 129, 130, 362, 363, 364, 458,
848, 91, 278, 352, 115, 116, 117, 850, 205, 761,
652, 1097, 356, 1123, 384, 858, 90, 692, 852, 854,
475, 654, 360, 8, 484, 867, 868, 491, 654, 129,
130, 910, 521, 915, 916, 521, 91, 361, 962, 776,
534, 173, 365, 858, 241, 372, 849, 1186, 1188, 205,
366, 367, 521, 851, 121, 762, 649, 1200, 118, 119,
649, 329, 987, -268, 1117, 521, 975, 284, 343, 803,
1354, 276, 1359, 90, 916, 193, 129, 130, 1119, 228,
446, 447, 126, 127, 963, 936, 405, 482, 605, 205,
651, 406, 649, 91, -584, 825, -7, 651, 649, 1121,
485, 842, 126, 127, 100, 414, 1402, 935, 988, 899,
1118, 205, 976, 114, 429, 1496, 153, 153, 153, 199,
200, 652, 1480, 417, 1120, 14, 993, 1173, 1174, 1175,
454, 455, 654, 27, 430, 129, 130, 1188, 649, 729,
-102, 487, 15, 16, 488, 1122, 1266, 1268, 21, 492,
489, 1272, 1403, 27, 217, 129, 130, 24, 490, 493,
1060, 1497, 58, -545, 58, 649, -545, 774, 1513, 498,
193, 58, 530, 71, -102, 71, 205, 649, -102, 652,
329, 329, 71, 329, 737, 652, 737, 1375, 514, 515,
654, 507, 1310, 737, 1196, 1197, 654, 1199, 743, 87,
743, 651, 863, 992, 1002, 508, 743, 743, 126, 127,
649, -102, 649, 368, -545, 509, -545, -545, 745, -545,
745, 1148, 1149, 1150, 744, 510, 979, 745, 1015, 1016,
-545, 1017, -545, 744, 1490, 397, 511, 981, 982, 571,
15, 16, 57, 616, 57, -385, 1010, 619, -545, -545,
1510, 57, -545, 343, 779, 126, 127, 620, 1054, 651,
637, 129, 130, 622, -545, 651, 237, 15, 16, 555,
556, 88, 623, -385, -385, 1326, 1327, 624, -385, -123,
1369, 7, 8, 231, 10, 485, 779, 281, 373, 374,
10, 89, 652, 8, 9, 649, 692, 636, 530, 665,
343, -6, 831, 654, 638, 852, 854, 654, 129, 130,
464, 466, 446, 1419, 527, 1316, 528, 668, 1395, 832,
22, 686, 477, 649, 241, 710, 22, 232, 652, 705,
779, 329, 233, 232, 652, 28, 29, 643, 343, 654,
755, 28, 299, 1102, 1103, 654, 129, 130, 833, 1191,
454, 1420, 237, 446, 1424, -100, 756, 15, 16, 233,
757, 993, 758, 765, 843, 151, 774, 33, 766, 1057,
233, 783, 651, 33, 692, 675, 651, 94, 109, 110,
1201, 625, 626, 627, 90, 654, 126, 127, 779, -100,
785, 513, -124, -100, 329, 94, 109, 110, 476, 88,
861, 652, 786, 521, 91, 151, 788, 1160, 651, 845,
859, 1406, 654, 652, 651, 400, 403, 8, 9, 89,
94, 95, 96, 1417, 654, 863, -100, 884, 885, 894,
581, 111, 112, 618, 22, 895, 58, 27, 992, 129,
130, 897, 628, 400, 403, 898, 652, 71, 652, 111,
112, 514, 515, 582, 651, 618, 21, 654, 737, 654,
237, 234, 343, 583, 905, 906, 343, 919, -271, 924,
129, 130, 743, 584, 97, 98, 585, 586, 94, 95,
96, 651, 209, 210, 211, 419, 942, 969, 329, 1162,
-791, 943, 745, 651, 485, 1164, 1165, 655, 744, 1162,
1167, 1146, 1406, 1165, 1471, 88, 944, 90, 950, 960,
964, 971, 212, 1331, 1028, 1332, 57, 94, 109, 110,
967, 1406, 94, 109, 110, 89, 651, 91, 651, 936,
27, 652, 97, 98, 213, 1011, 1203, 965, 1536, 1029,
1217, 1218, 654, 1030, 281, 373, 374, 10, 1493, 94,
95, 96, 1253, 1031, 1012, 1248, 774, 718, 1032, 692,
151, 151, 151, 71, 1033, 1034, 526, 88, 1217, 1218,
654, 111, 112, 113, 1247, 1376, 111, 112, 1406, 1035,
214, 215, 216, 22, 1036, 153, 677, 89, 151, 151,
151, 126, 127, 126, 1297, 58, 27, 1037, 28, 299,
196, 27, 204, 97, 98, 99, 71, 1038, 1252, 1043,
-122, 651, 1040, 1041, 319, 1044, 319, 737, 319, 115,
116, 117, 796, 1045, 1046, 153, 1047, 486, 649, 1059,
33, 743, 57, 1353, 1048, 1353, 1049, 1062, 343, 651,
1063, 1061, 27, 1064, 129, 130, 129, 130, 1070, 1071,
205, 745, 115, 719, 720, 1072, 721, 744, 492, 1116,
1080, 1081, 1139, 319, 844, 319, 521, 1078, 493, 1083,
485, 27, 1253, 118, 119, 57, 1093, 193, 1090, 1253,
722, 1096, 1248, 71, 1145, 1163, 1253, 723, 1168, 1248,
71, 491, 1459, 1172, 1247, 779, 1176, 71, 1181, 1182,
1183, 1247, 1184, 1189, 27, 1202, 118, 119, 1247, 1198,
416, 1193, 1194, 1306, 1307, 1308, 1309, 7, 126, 127,
10, 15, 16, 1312, 1204, 1205, -385, 1206, 1252, 1213,
1209, 901, 400, 403, 1210, 1252, 1216, 204, 1124, 1221,
514, 515, 1252, 918, 1265, 459, 204, 552, 553, 554,
555, 556, 57, 1274, -385, -385, 22, 1275, 1278, 57,
426, 1282, -626, 232, 1304, 1305, 57, 1315, 1311, 796,
1314, 28, 29, 1320, 1343, 1321, 1323, 115, 719, 720,
153, 153, 153, 1322, 1155, 1156, 198, 199, 200, 1330,
1378, 1379, 1339, 14, 1340, 233, 94, 109, 110, 1341,
209, 210, 211, 33, 1349, 722, 1351, 1364, 153, 153,
153, 19, 1367, 1169, 151, 1409, 21, 1410, 362, 363,
364, 1391, 966, 1392, 1414, 24, 1474, 512, 1443, 27,
212, 118, 119, 1253, 1253, 1443, 1248, 1393, 1253, 278,
205, 1248, 8, 9, 71, 71, 278, 1394, 329, 71,
111, 112, 1396, 1398, 456, 1247, 1247, 703, 704, 1416,
1247, 1418, 1439, 1013, 652, 319, 94, 95, 96, 1018,
27, 1253, 366, 367, 1248, 654, 1415, 151, 151, 151,
1253, 1447, 71, 1248, 1457, 1465, 1467, 343, 1473, 1252,
1252, 71, 1482, 1247, 1252, 129, 130, 1504, 1483, 1491,
1492, 1508, 1247, 1515, 1516, 1519, 1443, 1522, 276, 1524,
1525, 1529, 1533, 57, 57, 276, 1537, 278, 57, 1538,
97, 98, 126, 127, 115, 719, 720, 1252, 1253, 1540,
1545, 1248, 1546, 196, 204, 1441, 1252, 1548, 1549, 71,
1, 803, 1441, 670, 651, 634, 5, 1099, 1003, 1222,
1247, 57, 412, 680, 684, 521, 281, 8, 9, 10,
57, 684, 339, 128, 1285, 1286, 1253, 1295, 1296, 1248,
1298, 1494, 1073, 27, 1074, 129, 130, 71, 118, 119,
1489, 413, 628, 393, 1252, 1405, 276, 1544, 1247, 416,
497, 557, 901, 1356, 1092, 22, 459, 204, 941, 468,
416, 1091, 232, 1276, 459, 1151, 1170, 1005, 57, 1299,
28, 299, 887, 1441, 457, 199, 200, 416, 1089, 830,
449, 14, 1252, 370, 319, 684, 578, 1362, 1262, 1514,
558, 559, 1523, 1511, 153, 560, 561, 562, 563, 19,
1486, 1528, 33, 150, 21, 1530, 57, 1138, 1368, 0,
0, 1527, 0, 24, 0, 0, 0, 319, 803, 680,
0, 0, 800, 801, 0, 805, 806, 807, 808, 809,
810, 811, 812, 813, 814, 815, 816, 817, 818, 819,
820, 821, 822, 823, 0, 0, 1372, 1373, 0, 684,
0, 684, 684, 0, 0, 0, 0, 153, 153, 153,
0, 0, 0, 0, 0, 732, 0, 7, 8, 733,
10, 386, 12, 13, 0, 198, 199, 200, 14, 684,
126, 127, 14, 0, 0, 13, 684, 0, 0, 0,
1177, 1187, 1179, 17, 0, 18, 19, 20, 0, 0,
19, 21, -492, 0, 0, 21, 22, 889, 891, 0,
24, 734, 0, 642, 24, 204, 401, 404, 0, 27,
0, 28, 29, 319, 581, 735, 0, 736, 239, 659,
0, 27, 0, 129, 130, 31, 682, 0, 0, 0,
1431, 1432, 1433, 682, 0, 32, 1208, 582, 150, 0,
0, 0, 239, 33, 196, 0, 204, 583, 34, 550,
551, 552, 553, 554, 555, 556, 680, 584, 0, 0,
585, 586, 0, 0, 1227, -492, 0, 0, 8, 9,
1187, 239, 12, 13, 0, 0, 0, 79, 14, 0,
239, 0, 1461, 1462, 0, 0, 204, 103, 0, 0,
0, 0, 0, 17, 0, 18, 0, 682, 132, 0,
0, 21, 0, 0, 141, 141, 0, 141, 459, 79,
24, 416, 1277, 977, 79, 0, 0, 1281, 0, 27,
0, 129, 130, 564, 0, 0, 239, 187, 0, 79,
0, 0, 319, 319, 0, 319, 0, 220, 0, 196,
600, 8, 9, 0, 103, 416, 0, 1512, 0, 0,
684, 0, 0, 0, 0, 243, 103, 0, 565, 239,
0, 682, 0, 682, 682, 0, 0, 1317, 523, 0,
0, 0, 1039, 0, 0, 0, 289, 601, 103, 22,
0, 0, 239, 1345, 0, 0, 989, 990, 9, 10,
0, 682, 27, 0, 129, 130, 0, 0, 682, 0,
0, 132, 0, 0, 0, 0, 132, -277, 79, 680,
684, 0, 141, 0, 0, 395, 141, 0, 0, 141,
141, 141, -277, -277, 684, 22, 684, -277, 684, 0,
0, 0, 0, 79, 0, 0, 0, 0, 27, 0,
28, 29, 0, -277, 1154, 0, 991, 0, 0, 0,
187, 187, 187, 0, 177, -277, -277, 0, -277, 0,
-277, 1088, 1387, 1388, 178, 0, 1401, 0, 0, 0,
0, 684, 33, 239, 0, 0, 0, 179, 1397, 187,
0, 0, 0, 319, 198, 199, 200, 0, 0, -277,
-277, 14, 683, -277, 467, 0, 1111, 0, 0, 690,
401, 404, 103, 0, 0, -277, 0, 0, 684, 19,
0, 0, 0, 141, 21, 0, 0, 0, 0, 7,
8, 9, 10, 24, 0, 13, 684, 0, 0, 0,
1427, 1428, 0, 0, 239, 0, 0, 0, 882, 548,
549, 550, 551, 552, 553, 554, 555, 556, 0, 1437,
1438, 103, 494, 0, 0, 0, 0, 0, 22, 523,
0, 0, 523, 771, 581, 0, 0, 0, 1161, 0,
0, 27, 682, 28, 29, 416, 416, 0, 401, 784,
0, 587, 587, 587, 0, 0, 0, 907, 0, 0,
0, 0, 523, 0, 0, 103, 0, 908, 0, 579,
0, 494, 494, 595, 416, 33, 239, 584, 0, 0,
909, 586, 79, 0, 0, 0, 0, 680, 680, 0,
0, 1190, 0, 0, 0, 0, 0, 824, 132, 826,
827, 0, 682, 239, 7, 8, 9, 10, 0, 0,
319, 0, 0, 0, 0, 0, 682, 0, 682, 0,
682, 874, 132, 0, 0, 0, 0, 0, 103, 0,
0, 187, 103, 0, 878, 0, 0, 0, 0, 0,
0, 0, 141, 22, 0, 141, 0, 0, 0, 581,
141, 0, 0, 0, 0, 0, 27, 0, 28, 29,
0, 0, 0, 682, 0, 684, 0, 684, 0, 684,
0, 0, 907, 0, 0, 0, 0, 680, 0, 187,
0, 187, 908, 187, 187, 187, 680, 680, 239, 187,
33, 680, 584, 0, 187, 909, 586, 187, 0, 0,
682, 0, 0, 0, 239, 0, 1283, 1284, 0, 0,
0, 0, 0, 79, 0, 0, 0, 0, 682, 0,
0, 0, 0, 0, 0, 416, 416, 0, 416, 416,
0, 416, 680, 0, 732, 0, 7, 8, 733, 10,
386, 12, 13, 0, 0, 0, 0, 14, 0, 0,
0, 103, 103, 103, 103, 0, 0, 0, 0, 0,
0, 684, 17, 0, 18, 19, 20, 0, 0, 0,
21, -493, 0, 0, 0, 22, 0, 0, 0, 24,
734, 0, 642, 0, 0, 1338, 0, 0, 27, 0,
28, 29, 0, 0, 735, 0, 736, 0, 0, 0,
0, 0, 874, 0, 31, 587, 587, 0, 587, 103,
0, 494, 0, 0, 32, 873, 196, 204, 0, 0,
680, 0, 33, 579, 0, 494, 494, 34, 595, 0,
0, 0, 0, 0, 0, 875, 1377, 0, 0, 877,
0, 0, 0, 0, -493, 0, 0, 416, 416, 0,
0, 0, 0, 187, 0, 0, 0, 0, 680, 7,
126, 127, 10, 0, 0, 13, 0, 0, 1053, 0,
0, 0, 587, 0, 587, 587, 572, 587, 281, 373,
374, 10, 1065, 573, 1066, 0, 1067, 682, 0, 682,
0, 682, 187, 914, 187, 187, 220, 595, 22, 401,
784, 0, 0, 0, 0, 684, 0, 0, 0, 0,
0, 27, 0, 28, 29, 587, 0, 22, 0, 0,
0, 0, 1429, 1430, 574, 0, 0, 31, 0, 1095,
27, 1435, 28, 299, 0, 187, 0, 32, 150, 914,
0, 416, 416, 416, 0, 33, 187, 187, 0, 187,
34, 0, 0, 0, 0, 0, 0, 0, 1454, 0,
0, 0, 0, 0, 575, 0, 1114, 0, 349, 351,
0, 0, 0, 0, 0, 0, 0, 132, 1136, 0,
79, 0, 79, 682, 239, 0, 239, 1000, 79, 79,
0, 0, 0, 416, 416, 0, 0, 103, 0, 0,
0, 0, 587, 103, 0, 7, 8, 9, 10, 0,
494, 494, 494, 0, 0, 0, 0, 0, 0, 0,
0, 0, 494, 239, 0, 0, 0, 0, 8, 9,
0, 386, 12, 13, 0, 0, 688, 0, 14, 0,
0, 0, 0, 0, 22, 0, 0, 989, 990, 9,
10, 0, 0, 17, 0, 18, 19, 27, 416, 28,
29, 21, 0, 176, 0, 0, 0, 0, 0, 0,
24, 0, 103, 177, 0, 587, 0, 587, 680, 27,
0, 129, 130, 178, 0, 0, 22, 0, 587, 0,
0, 33, 873, 873, 873, 494, 179, 494, 0, 27,
0, 28, 29, 0, 103, 0, 0, 991, 494, 239,
103, 0, 875, 875, 875, 177, 0, 0, 0, 1082,
0, 0, 689, 0, 0, 178, 0, 682, 0, 0,
587, 587, 587, 33, 401, 404, 126, 127, 179, 0,
0, 227, 0, 0, 0, 0, 103, 0, 103, 82,
187, 187, 1108, 1223, 0, 1224, 0, 1225, 0, 105,
0, 0, 401, 1264, 0, 0, 0, 0, 0, 125,
133, 525, 873, 0, 0, 0, 142, 142, 0, 142,
581, 82, 0, 0, 0, 0, 82, 27, 0, 129,
130, 239, 1108, 0, 0, 0, 0, 0, 0, 142,
0, 82, 0, 582, 0, 0, 103, 0, 0, 221,
0, 0, 0, 583, 0, 0, 229, 239, 0, 103,
0, 0, 1000, 584, 0, 0, 585, 586, 229, 0,
0, 103, 281, 126, 127, 10, 0, 0, 0, 0,
0, 0, 0, 0, 1166, 0, 0, 648, 0, 1319,
0, 0, 0, 0, 79, 0, 0, 0, 7, 8,
9, 10, 0, 0, 103, 0, 103, 0, 0, 0,
0, 22, 0, 379, 0, 239, 0, 0, 232, 0,
82, 590, 594, 597, 142, 0, 28, 299, 142, 0,
0, 142, 142, 142, 0, 0, 691, 22, 494, 494,
0, 494, 0, 0, 232, 82, 0, 0, 0, 0,
8, 9, 28, 29, 12, 13, 0, 0, 33, 0,
14, 0, 142, 142, 142, 587, 587, 587, 587, 587,
0, 0, 0, 587, 0, 17, 233, 18, 0, 0,
0, 0, 0, 21, 33, 187, 187, 187, 187, 1108,
0, 142, 24, 187, 0, 873, 873, 873, 0, 0,
0, 27, 772, 129, 130, 775, 0, 0, 0, 777,
778, 780, 781, 782, 0, 1108, 1108, 1108, 7, 126,
127, 10, 525, 0, 227, 142, 0, 1136, 0, 0,
7, 8, 9, 10, 0, 799, 227, 0, 0, 0,
829, 0, 0, 0, 0, 0, 187, 0, 0, 0,
0, 141, 0, 79, 0, 0, 0, 22, 0, 0,
0, 0, 0, 229, 142, 0, 0, 828, 0, 22,
27, 0, 28, 29, 0, 581, 0, 0, 0, 0,
587, 587, 27, 587, 28, 29, 31, 856, 0, 0,
0, 401, 1264, 0, 856, 0, 32, 0, 907, 0,
187, 187, 0, 187, 33, 0, 0, 229, 908, 34,
0, 580, 0, 142, 142, 596, 33, 0, 584, 0,
604, 909, 586, 0, 82, 7, 126, 127, 10, 0,
0, 13, 0, 0, 187, 914, 187, 0, 0, 0,
379, 0, 281, 8, 9, 10, 0, 0, 0, 0,
0, 0, 0, 103, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 22, 0, 0, 0, 0, 0,
229, 0, 75, 142, 229, 853, 855, 27, 0, 28,
29, 22, 0, 0, 142, 0, 0, 142, 232, 0,
0, 0, 142, 146, 0, 0, 28, 299, 648, 140,
144, 0, 0, 147, 75, 0, 0, 0, 0, 75,
0, 33, 281, 8, 9, 10, 148, 0, 0, 0,
233, 142, 0, 142, 197, 142, 142, 142, 33, 0,
0, 142, 7, 8, 9, 10, 142, 0, 13, 142,
0, 1108, 912, 0, 590, 594, 0, 597, 0, 0,
0, 22, 0, 0, 731, 82, 691, 0, 232, 0,
0, 0, 691, 0, 0, 0, 28, 299, 0, 0,
0, 22, 0, 0, 0, 0, 0, 581, 0, 0,
0, 0, 0, 0, 27, 594, 28, 29, 0, 0,
485, 0, 0, 229, 229, 229, 229, 0, 33, 0,
1104, 0, 0, 391, 1108, 1108, 1108, 394, 0, 0,
1105, 396, 0, 0, 0, 0, 0, 0, 33, 0,
584, 0, 103, 1106, 586, 0, 0, 187, 75, 0,
6, 1050, 7, 8, 9, 10, 11, 12, 13, 0,
0, 0, 0, 14, 0, 140, 144, 0, 0, 0,
0, 229, 0, 142, 0, 0, 15, 16, 17, 0,
18, 19, 20, 799, 0, 0, 21, 142, 142, 691,
596, 22, 594, 856, 23, 24, 25, 876, 26, 0,
0, 0, 0, 0, 27, 0, 28, 29, 0, 604,
30, 0, 0, 0, 0, 142, 0, 0, 0, 0,
31, 1287, 1288, 9, 10, 648, 0, 1100, 483, 0,
32, 856, 0, 0, 0, 0, 0, 0, 33, 0,
0, 0, 0, 34, 0, 0, 125, 0, 0, 35,
0, 0, 0, 0, 142, 596, 142, 142, 221, 596,
22, 0, 0, 0, 0, 1068, 0, 1069, 0, 0,
0, 856, 0, 27, 0, 28, 29, 731, 1075, 0,
0, 1289, 853, 855, 0, 1141, 0, 0, 0, 177,
0, 1147, 0, 0, 0, 0, 0, 142, 691, 178,
0, 596, 0, 0, 0, 0, 0, 33, 142, 142,
691, 142, 179, 0, 0, 0, 0, 0, 0, 0,
853, 855, 0, 0, 0, 0, 0, 612, 7, 8,
9, 10, 0, 0, 13, 0, 0, 0, 0, 133,
0, 0, 82, 691, 82, 691, 0, 0, 0, 1001,
82, 82, 0, 0, 0, 0, 0, 0, 0, 229,
0, 0, 0, 0, 0, 229, 0, 22, 0, 0,
0, 0, 142, 142, 142, 0, 0, 0, 0, 0,
27, 0, 28, 29, 142, 0, 0, 663, 0, 0,
664, 0, 0, 0, 0, 666, 177, 0, 0, 7,
8, 9, 10, 0, 0, 482, 178, 0, 437, 439,
443, 0, 0, 50, 33, 0, 0, 0, 0, 179,
0, 0, 0, 0, 394, 0, 396, 0, 856, 0,
0, 0, 0, 0, 229, 0, 0, 0, 22, 483,
50, 50, 0, 149, 581, 50, 0, 0, 0, 0,
50, 27, 0, 28, 29, 0, 856, 142, 749, 142,
0, 0, 0, 50, 0, 50, 229, 907, 0, 0,
142, 0, 229, 0, 876, 876, 876, 908, 0, 0,
0, 604, 0, 0, 0, 33, 0, 584, 235, 0,
909, 586, 541, 542, 543, 544, 545, 546, 547, 548,
549, 550, 551, 552, 553, 554, 555, 556, 229, 0,
229, 0, 142, 142, 596, 1068, 1069, 853, 855, 0,
0, 0, 0, 1075, 544, 545, 546, 547, 548, 549,
550, 551, 552, 553, 554, 555, 556, 376, 0, 0,
0, 376, 376, 0, 50, 853, 855, 0, 50, 0,
235, 0, 50, 0, 876, 149, 149, 149, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 229, 50,
0, 0, 0, 0, 0, 0, 0, 0, 0, 731,
0, 229, 0, 0, 1001, 0, 50, 50, 149, 0,
0, 0, 1141, 229, 0, 0, 235, 0, 0, 126,
127, 0, 0, 199, 200, 0, 0, 0, 0, 14,
0, 0, 0, 0, 0, 50, 82, 0, 0, 0,
0, 0, 0, 0, 0, 0, 229, 0, 229, 0,
1068, 1069, 21, 1075, 0, 0, 0, 0, 913, 0,
0, 24, 0, 581, 0, 0, 0, 0, 0, 50,
27, 0, 129, 130, 0, 0, 0, 0, 0, 0,
142, 142, 0, 142, 0, 0, 582, 701, 0, 702,
0, 437, 439, 443, 0, 0, 583, 0, 0, 0,
0, 0, 713, 0, 956, 0, 584, 0, 0, 592,
586, 663, 664, 0, 666, 545, 546, 547, 548, 549,
550, 551, 552, 553, 554, 555, 556, 142, 142, 142,
142, 596, 0, 0, 0, 142, 0, 0, 522, 0,
0, 731, 0, 0, 0, 749, 0, 749, 0, 0,
0, 0, 999, 1006, 749, 376, 0, 876, 876, 876,
0, 0, 0, 235, 0, 525, 0, 0, 50, 0,
0, 0, 0, 731, 0, 0, 0, 0, 0, 0,
0, 648, 0, 0, 376, 0, 0, 0, 142, 0,
0, 0, 0, 142, 0, 82, 7, 8, 9, 10,
386, 12, 13, 0, 0, 688, 0, 14, 376, 0,
0, 0, 0, 0, 0, 0, 0, 50, 0, 0,
0, 0, 17, 0, 18, 19, 0, 0, 50, 0,
21, 50, 0, 0, 0, 22, 50, 0, 0, 24,
0, 581, 142, 142, 0, 142, 0, 0, 27, 0,
28, 29, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1104, 50, 0, 50, 0, 149,
149, 149, 0, 0, 1105, 50, 142, 596, 142, 0,
50, 77, 33, 50, 584, 0, 0, 1106, 586, 0,
0, 689, 0, 0, 0, 229, 0, 0, 0, 50,
0, 0, 0, 0, 0, 0, 0, 0, 77, 77,
0, 77, 0, 77, 0, 140, 144, 0, 77, 0,
7, 126, 127, 10, 0, 0, 482, 0, 0, 522,
0, 77, 522, 77, 0, 0, 0, 0, 0, 0,
8, 9, 0, 0, 12, 227, 0, 522, 522, 522,
14, 0, 0, 0, 701, 702, 0, 713, 0, 22,
0, 0, 522, 0, 0, 17, 0, 18, 0, 0,
0, 0, 27, 21, 28, 29, 0, 0, 240, 0,
0, 0, 24, 876, 581, 0, 0, 999, 31, 0,
0, 27, 0, 129, 130, 998, 0, 0, 32, 126,
127, 0, 0, 199, 200, 0, 33, 582, 235, 14,
0, 34, 77, 0, 0, 0, 77, 583, 0, 749,
77, 522, 0, 77, 77, 77, 0, 584, 0, 0,
585, 586, 21, 0, 0, 0, 0, 77, 0, 50,
0, 24, 0, 581, 0, 0, 876, 876, 876, 0,
27, 407, 129, 130, 77, 77, 77, 0, 0, 0,
0, 0, 0, 0, 229, 0, 582, 0, 0, 142,
0, 0, 435, 0, 0, 0, 583, 0, 50, 50,
50, 50, 0, 77, 0, 451, 584, 8, 9, 585,
586, 12, 227, 0, 0, 0, 0, 14, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
394, 396, 17, 0, 18, 0, 0, 77, 483, 0,
21, 50, 0, 0, 0, 50, 0, 0, 0, 24,
0, 0, 50, 50, 0, 50, 0, 0, 27, 0,
129, 130, 0, 0, 0, 0, 0, 0, 0, 732,
0, 7, 8, 733, 10, 386, 12, 13, 437, 439,
443, 0, 14, 0, 0, 0, 50, 0, 50, 0,
0, 1294, 0, 50, 50, 50, 1294, 17, 749, 18,
19, 20, 0, 0, 0, 21, -495, 0, 0, 0,
22, 0, 0, 0, 24, 734, 0, 642, 0, 0,
443, 0, 522, 27, 0, 28, 29, 0, 0, 735,
0, 736, 603, 0, 0, 0, 77, 0, 0, 31,
0, 0, 0, 0, 0, 663, 664, 0, 666, 32,
998, 0, 0, 0, 0, 0, 0, 33, 7, 8,
9, 10, 34, 0, 227, 543, 544, 545, 546, 547,
548, 549, 550, 551, 552, 553, 554, 555, 556, -495,
1357, 0, 0, 0, 0, 77, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 77, 22, 0, 77,
0, 0, 0, 0, 77, 0, 0, 0, 0, 0,
27, 0, 28, 29, 0, 0, 0, 0, 522, 522,
522, 0, 0, 0, 235, 0, 177, 0, 0, 0,
0, 0, 0, 77, 0, 77, 178, 77, 77, 77,
0, 0, 0, 77, 33, 0, 0, 0, 77, 179,
0, 77, 154, 0, 0, 0, 50, 50, 149, 0,
0, 706, 0, 235, 0, 0, 712, 77, 0, 0,
0, 0, 188, 701, 702, 437, 439, 443, 0, 0,
0, 713, 0, 0, 7, 8, 9, 10, 198, 199,
200, 753, 0, 0, 0, 14, 0, 759, 1135, 0,
0, 0, 0, 437, 439, 443, 0, 0, 0, 767,
768, 0, 769, 19, 0, 0, 0, 0, 21, 0,
0, 0, 0, 22, 0, 0, 0, 24, 50, 581,
1287, 126, 127, 10, 1293, 0, 27, 0, 28, 29,
0, 0, 0, 0, 0, 0, 0, 0, 0, 235,
0, 0, 907, 0, 0, 0, 0, 0, 0, 0,
50, 0, 908, 0, 154, 154, 154, 0, 0, 22,
33, 0, 584, 0, 0, 909, 586, 603, 0, 0,
0, 0, 27, 0, 28, 29, 0, 0, 701, 702,
1289, 713, 0, 0, 0, 188, 188, 444, 31, 0,
0, 0, 0, 0, 0, 864, 865, 77, 32, 0,
864, 0, 0, 0, 0, 0, 33, 0, 0, 0,
0, 34, 0, 0, 188, 0, 0, 0, 0, 0,
0, 235, 0, 0, 0, 0, 7, 8, 9, 10,
0, 0, 13, 0, 0, 0, 77, 77, 77, 77,
0, 50, 50, 149, 149, 149, 0, 235, 0, 50,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 7, 8, 9, 10, 22, 0, 482, 0, 0,
0, 1135, 1135, 1135, 0, 0, 0, 0, 27, 77,
28, 29, 0, 77, 0, 0, 0, 495, 0, 0,
77, 77, 0, 77, 440, 0, 0, 0, 0, 0,
22, 0, 50, 0, 441, 0, 0, 50, 0, 50,
0, 0, 33, 27, 0, 28, 29, 442, 0, 443,
0, 0, 126, 127, 77, 0, 77, 482, 0, 177,
0, 77, 77, 77, 0, 0, 589, 589, 589, 178,
0, 0, 0, 0, 0, 0, 186, 33, 7, 8,
9, 10, 179, 0, 0, 0, 50, 50, 0, 50,
0, 0, 0, 0, 0, 0, 581, 0, 1020, 0,
1022, 238, 0, 27, 242, 129, 130, 0, 0, 0,
0, 0, 437, 439, 443, 0, 0, 22, 0, 582,
50, 50, 50, 0, 0, 238, 188, 345, 0, 583,
27, 0, 28, 29, 0, 0, 1352, 0, 0, 584,
0, 0, 585, 586, 0, 0, 177, 0, 0, 0,
0, 0, 0, 0, 0, 0, 178, 0, 0, 0,
0, 0, 0, 0, 33, 0, 0, 0, 0, 179,
0, 0, 1055, 1056, 188, 1058, 188, 0, 444, 444,
444, 0, 0, 0, 188, 0, 0, 0, 0, 188,
0, 0, 188, 603, 0, 0, 0, 0, 0, 186,
186, 186, 0, 1076, 0, 0, 0, 0, 0, 450,
8, 9, 0, 386, 12, 13, 0, 0, 688, 0,
14, 0, 0, 0, 77, 77, 77, 1135, 186, 0,
0, 7, 126, 127, 10, 17, 0, 18, 19, 0,
0, 0, 0, 21, 0, 0, 0, 0, 1110, 0,
0, 242, 24, 0, 581, 0, 0, 0, 0, 0,
0, 27, 0, 129, 130, 238, 1137, 0, 0, 0,
22, 0, 0, 0, 0, 0, 0, 582, 0, 0,
0, 0, 0, 27, 0, 28, 29, 583, 0, 0,
1135, 1135, 1135, 0, 0, 0, 77, 584, 0, 146,
585, 586, 0, 0, 689, 0, 838, 0, 0, 147,
0, 0, 1152, 50, 0, 0, 0, 33, 0, 0,
589, 589, 148, 589, 1157, 0, 0, 0, 77, 0,
589, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8, 9, 0, 386, 12, 13, 0, 0, 188, 0,
14, 0, 0, 0, 0, 0, 238, 242, 0, 0,
0, 7, 8, 9, 10, 17, 0, 18, 19, 0,
0, 0, 0, 21, 0, 0, 0, 0, 0, 0,
0, 0, 641, 0, 0, 642, 0, 911, 0, 911,
911, 27, 589, 129, 130, 0, 0, 0, 0, 0,
22, 0, 0, 0, 0, 0, 0, 0, 1207, 0,
186, 0, 0, 27, 0, 28, 29, 0, 0, 77,
77, 77, 77, 77, 0, 0, 0, 77, 0, 440,
911, 0, 0, 0, 0, 0, 0, 0, 0, 441,
0, 188, 188, 0, 188, 0, 1220, 33, 0, 1137,
1137, 1137, 442, 0, 0, 0, 0, 0, 186, 0,
186, 0, 186, 186, 186, 0, 0, 0, 186, 0,
0, 0, 0, 186, 0, 0, 186, 0, 0, 0,
77, 0, 188, 0, 0, 77, 0, 77, 0, 0,
0, 0, 0, 0, 0, 732, 0, 7, 8, 733,
10, 386, 12, 13, 0, 495, 495, 495, 14, 1302,
0, 0, 0, 1303, 0, 0, 0, 589, 0, 0,
0, 0, 0, 17, 0, 18, 19, 20, 0, 0,
0, 21, -494, 0, 77, 77, 22, 77, 0, 0,
24, 734, 0, 642, 0, 0, 1318, 0, 0, 27,
0, 28, 29, 0, 0, 735, 0, 736, 7, 8,
9, 10, 0, 0, 0, 31, 0, 0, 77, 77,
77, 0, 0, 0, 0, 32, 0, 0, 0, 0,
0, 0, 0, 33, 0, 0, 0, 0, 34, 0,
589, 0, 589, 0, 0, 0, 0, 22, 0, 0,
0, 0, 0, 589, 0, -494, 0, 589, 589, 589,
27, 0, 28, 29, 0, 1370, 0, 238, 242, 1371,
0, 0, 0, 0, 0, 0, 177, 0, 0, 0,
8, 9, 186, 386, 12, 13, 178, 0, 1470, 0,
14, 1389, 1390, 0, 33, 911, 911, 1109, 0, 179,
0, 0, 0, 0, 0, 17, 0, 18, 19, 0,
0, 0, 0, 21, 0, 0, 0, 0, 0, 0,
0, 186, 24, 186, 186, 1137, 0, 0, 0, 0,
0, 27, 0, 129, 130, 0, 0, 1109, 0, 0,
7, 8, 9, 10, 198, 199, 200, 0, 101, 0,
0, 14, 0, 0, 0, 0, 0, 0, 120, 101,
0, 0, 0, 0, 186, 101, 101, 188, 101, 19,
0, 0, 0, 0, 21, 186, 186, 0, 186, 22,
0, 0, 0, 24, 0, 581, 0, 0, 1137, 1137,
1137, 0, 27, 0, 28, 29, 8, 9, 219, 189,
12, 190, 0, 242, 0, 0, 14, 0, 907, 0,
0, 77, 0, 0, 0, 0, 186, 0, 908, 0,
0, 17, 0, 18, 19, 0, 33, 0, 584, 21,
0, 949, 586, 0, 0, 0, 0, 0, 24, 0,
0, 0, 0, 838, 838, 0, 838, 27, 0, 129,
130, 0, 0, 0, 0, 0, 0, 369, 0, 120,
0, 0, 101, 0, 0, 0, 101, 101, 0, 0,
0, 0, 0, 101, 0, 101, 101, 101, 0, 0,
101, 101, 101, 0, 0, 0, 0, 0, 0, 0,
911, 911, 1109, 1109, 1109, 0, 0, 0, 911, 539,
540, 541, 542, 543, 544, 545, 546, 547, 548, 549,
550, 551, 552, 553, 554, 555, 556, 0, 0, 0,
1109, 1109, 1109, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 732, 0, 7,
8, 733, 10, 386, 12, 13, 0, 238, 242, 238,
14, 188, 0, 0, 465, 101, 0, 0, 0, 0,
0, 0, 0, 0, 0, 17, 0, 18, 19, 20,
0, 0, 0, 21, 101, 0, 0, 0, 22, 186,
186, 1107, 24, 734, 0, 642, 238, 0, 0, 0,
0, 27, 0, 28, 29, 0, 0, 735, 0, 736,
0, 0, 0, 0, 0, 911, 911, 31, 911, 0,
0, 0, 0, 101, 0, 0, 0, 32, 0, 0,
0, 1107, 0, 0, 0, 33, 0, 0, 0, 244,
34, 0, 8, 9, 0, 0, 12, 13, 0, 188,
0, 188, 14, 0, 0, 0, 0, 0, 0, 0,
0, 186, 0, 0, 0, 0, 0, 17, 0, 18,
101, 0, 101, 101, 0, 21, 0, 245, 246, 0,
0, 0, 450, 0, 24, 0, 247, 0, 0, 0,
0, 0, 0, 27, 0, 129, 130, 0, 248, 101,
0, 0, 249, 250, 251, 252, 253, 254, 255, 256,
257, 258, 259, 260, 261, 262, 263, 264, 265, 266,
267, 268, 269, 101, 0, 270, 271, 272, 0, 0,
273, 0, 0, 274, 0, 0, 0, 0, 0, 101,
0, 0, 0, 101, 0, 0, 101, 0, 0, 0,
275, 101, 0, 0, 0, 0, 444, 0, 0, 0,
0, 0, 0, 0, 238, 540, 541, 542, 543, 544,
545, 546, 547, 548, 549, 550, 551, 552, 553, 554,
555, 556, 0, 0, 186, 186, 186, 186, 1107, 0,
1219, 0, 186, 542, 543, 544, 545, 546, 547, 548,
549, 550, 551, 552, 553, 554, 555, 556, 0, 0,
0, 101, 0, 724, 1107, 1107, 1107, 0, 0, 444,
444, 444, 0, 0, 0, 0, 0, 0, 7, 8,
9, 10, 386, 12, 13, 0, 0, 955, 101, 14,
0, 0, 188, 0, 0, 186, 0, 0, 0, 0,
0, 0, 0, 0, 17, 0, 18, 19, 0, 0,
0, 0, 21, 0, 0, 0, 0, 22, 0, 0,
0, 24, 0, 0, 0, 0, 0, 0, 0, 0,
27, 0, 28, 29, 1383, 0, -449, -449, -449, -449,
-449, -449, -449, 0, 0, -449, 31, -449, 0, 186,
186, 0, 186, 0, 0, 0, 32, 0, -449, 0,
-449, -449, 101, 0, 33, -449, 0, 0, 0, 34,
-449, 0, 0, 101, 101, -449, 101, 101, 0, -449,
0, -449, 0, 186, 0, 186, 0, 0, -449, 0,
-449, -449, -449, -449, -449, 0, -449, -449, -449, -449,
-449, -449, -449, -449, -449, -449, -449, -449, -449, -449,
-449, -449, -449, -449, -449, -449, -449, -449, -449, 0,
-449, -449, -449, 0, -449, -449, -449, -449, -449, -449,
0, -449, -449, 0, 0, 120, 0, 1384, 0, 0,
0, 0, -449, -449, -449, 0, -449, 219, 0, 0,
161, 0, 7, 8, 9, 10, 11, 12, 13, 0,
8, 9, 0, 14, 12, 13, 724, 0, 0, 0,
14, 0, 0, 0, 0, 0, 15, 16, 17, 0,
18, 19, 20, 0, 0, 17, 21, 18, 0, 0,
1107, 22, 0, 21, 23, 24, 25, 0, 26, 0,
0, 0, 24, 0, 27, 0, 28, 29, 0, 0,
30, 27, 0, 129, 130, 0, 0, 0, 0, 0,
31, 0, 0, 0, 0, 724, 0, 0, 101, 0,
32, 0, 0, 0, 0, 0, 0, 0, 33, 0,
0, 0, 0, 34, 0, 0, 0, 0, 0, 35,
0, 0, 0, 1107, 1107, 1107, 0, 0, 0, 0,
0, 101, 101, 101, 0, 0, 0, 0, 0, 0,
0, 0, 0, 101, 0, 1360, 186, 1230, 1231, 1232,
10, 386, 12, 282, 283, 284, 0, 285, 14, 1233,
0, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242,
1243, 15, 16, 17, 286, 18, 19, 20, 0, 287,
288, 21, 0, 289, 290, 291, 22, 292, 293, 0,
24, 0, 0, 0, 294, 295, 296, 297, 298, 27,
0, 1244, 299, 675, 0, 1245, 300, 0, 0, 0,
0, 0, 301, 0, 0, 302, 101, 0, 101, 0,
0, 0, 0, 303, 304, 305, 0, 0, 0, 101,
0, 306, 307, 308, 0, 0, 0, 0, 309, 0,
1246, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1361, 310, 1229, 0, 1230,
1231, 1232, 10, 386, 12, 282, 283, 284, 0, 285,
14, 1233, 0, 1234, 1235, 1236, 1237, 1238, 1239, 1240,
1241, 1242, 1243, 15, 16, 17, 286, 18, 19, 20,
0, 287, 288, 21, 0, 289, 290, 291, 22, 292,
293, 0, 24, 0, 0, 0, 294, 295, 296, 297,
298, 27, 0, 1244, 299, 675, 0, 1245, 300, 0,
0, 0, 0, 0, 301, 0, 0, 302, 0, 0,
0, 0, 0, 0, 0, 303, 304, 305, 724, 0,
0, 0, 0, 306, 307, 308, 0, 0, 0, 0,
309, 517, 1246, 281, 8, 9, 10, 386, 12, 282,
283, 284, 688, 285, 14, 101, 0, 0, 310, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 17,
286, 18, 19, 20, 0, 287, 288, 21, 0, 289,
290, 291, 22, 292, 293, 0, 24, 0, 581, 0,
294, 295, 296, 297, 298, 27, 0, 28, 299, -285,
0, 0, 300, 0, 0, 0, 0, 0, 301, 101,
101, 869, 101, 0, 0, 0, 0, 0, 0, 303,
304, 870, 0, 0, 0, 0, 0, 306, 307, 308,
0, 584, 0, 0, 871, 586, 0, 517, 689, 7,
8, 9, 10, 386, 12, 282, 283, 284, 688, 285,
14, 0, 310, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 17, 286, 18, 19, 20,
724, 287, 288, 21, 0, 289, 290, 291, 22, 292,
293, 0, 24, 0, 581, 0, 294, 295, 296, 297,
298, 27, 0, 28, 29, -285, 0, 0, 300, 0,
0, 0, 724, 0, 301, 0, 0, 1132, 0, 0,
0, 0, 0, 0, 0, 303, 304, 1133, 0, 0,
101, 0, 101, 306, 307, 308, 0, 584, 0, 0,
1134, 586, 0, 687, 689, 281, 8, 9, 10, 386,
12, 282, 283, 284, 688, 285, 14, 0, 310, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 17, 286, 18, 19, 20, 0, 287, 288, 21,
0, 289, 290, 291, 22, 292, 293, 0, 24, 0,
0, 0, 294, 295, 296, 297, 298, 27, 0, 28,
299, 0, 0, 0, 300, 0, 0, 0, 0, 0,
301, 0, 0, 302, 0, 0, 0, 0, 0, 0,
0, 303, 304, 305, 0, 0, 0, 0, 0, 306,
307, 308, 0, 0, 0, 0, 309, 0, 0, 0,
689, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -759, 802, 310, 281, 8, 9, 10, 386,
12, 282, 283, 284, 0, 285, 14, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 17, 286, 18, 19, 20, 0, 287, 288, 21,
0, 289, 290, 291, 22, 292, 293, 0, 24, 0,
0, 0, 294, 295, 296, 297, 298, 27, 0, 28,
299, 1449, 0, -749, 300, 0, 0, 0, 0, 0,
301, 0, 0, 302, 0, 0, 0, 0, 0, 0,
0, 303, 304, 305, 0, 0, 0, 0, 0, 306,
307, 308, 0, 0, 0, 678, 309, 790, 791, 792,
10, 0, 12, 499, 283, 284, 0, 285, 14, 0,
0, 0, 0, 0, 310, 0, 0, 0, 0, 0,
0, 0, 0, 17, 286, 18, 0, 20, 0, 287,
288, 21, 0, 289, 290, 291, 22, 292, 293, 0,
24, 0, 0, 0, 294, 295, 296, 297, 298, 27,
0, 793, 794, 679, 0, 0, 300, 0, 0, 0,
0, 0, 301, 0, 0, 302, 0, 0, 0, 0,
0, 0, 0, 303, 304, 305, 0, 0, 0, 0,
0, 306, 307, 308, 0, 0, 0, 0, 309, 795,
678, 0, 790, 791, 792, 10, 0, 12, 499, 283,
284, 0, 285, 14, 0, 940, 310, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 17, 286,
18, 0, 20, 0, 287, 288, 21, 0, 289, 290,
291, 22, 292, 293, 0, 24, 0, 0, 0, 294,
295, 296, 297, 298, 27, 0, 793, 794, 679, 0,
0, 300, 0, 0, 0, 0, 0, 301, 0, 0,
302, 0, 0, 0, 0, 0, 0, 0, 303, 304,
305, 0, 0, 0, 0, 0, 306, 307, 308, 0,
0, 0, 0, 309, 795, 678, 0, 790, 791, 792,
10, 0, 12, 499, 283, 284, 0, 285, 14, 0,
0, 310, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 17, 286, 18, 0, 20, 0, 287,
288, 21, 0, 289, 290, 291, 22, 292, 293, 0,
24, 0, 0, 0, 294, 295, 296, 297, 298, 27,
0, 793, 794, 679, 0, 0, 300, 0, 0, 0,
0, 0, 301, 0, 0, 302, 0, 0, 0, 0,
0, 0, 0, 303, 304, 305, 0, 0, 0, 0,
0, 306, 307, 308, 0, 0, 0, 678, 309, 790,
791, 792, 10, 0, 12, 499, 283, 284, 0, 285,
14, 0, 0, 0, 0, -453, 310, 0, 0, 0,
0, 0, 0, 0, 0, 17, 286, 18, 0, 20,
0, 287, 288, 21, 0, 289, 290, 291, 22, 292,
293, 0, 24, 0, 0, 0, 294, 295, 296, 297,
298, 27, 0, 793, 794, 679, 0, 0, 300, 0,
0, 0, 0, 0, 301, 0, 0, 302, 0, 0,
0, 0, 0, 0, 0, 303, 304, 305, 0, 0,
0, 0, 0, 306, 307, 308, 0, 0, 0, 678,
309, 281, 8, 9, 10, 0, 12, 499, 283, 284,
0, 285, 14, 0, 0, 0, 0, 1263, 310, 0,
0, 0, 0, 0, 0, 0, 0, 17, 286, 18,
0, 20, 0, 287, 288, 21, 0, 289, 290, 291,
22, 292, 293, 0, 24, 0, 0, 0, 294, 295,
296, 297, 298, 27, 0, 28, 299, 679, 0, 0,
300, 0, 0, 0, 0, 0, 301, 0, 0, 302,
0, 0, 0, 0, 0, 0, 0, 303, 304, 305,
0, 0, 0, 0, 0, 306, 307, 308, 0, 0,
0, 0, 309, 0, 0, 517, 0, 281, 8, 9,
10, 1267, 12, 282, 283, 284, 0, 285, 14, 0,
310, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 17, 286, 18, 0, 20, 0, 287,
288, 21, 0, 289, 290, 291, 22, 292, 293, 0,
24, 0, 0, 0, 294, 295, 296, 297, 298, 27,
0, 28, 299, -285, 0, 0, 300, 0, 0, 0,
0, 0, 301, 0, 0, 518, 0, 0, 0, 0,
0, 0, 0, 303, 304, 519, 0, 0, 0, 0,
0, 306, 307, 308, 0, 0, 0, 678, 520, 281,
8, 9, 10, 0, 12, 499, 283, 284, 0, 285,
14, 0, 0, 0, 0, 0, 310, 0, 0, 0,
0, 0, 0, 0, 0, 17, 286, 18, 0, 20,
0, 287, 288, 21, 0, 289, 290, 291, 22, 292,
293, 0, 24, 0, 0, 0, 294, 295, 296, 297,
298, 27, 0, 28, 299, 679, 0, 0, 300, 0,
0, 0, 0, 0, 301, 0, 0, 302, 0, 0,
0, 0, 0, 0, 0, 303, 304, 305, 0, 0,
0, 0, 0, 306, 307, 308, 0, 0, 0, 802,
309, 281, 8, 9, 10, 0, 12, 499, 283, 284,
0, 285, 14, 0, 0, 0, 0, 0, 310, 0,
0, 0, 0, 0, 0, 0, 0, 17, 286, 18,
0, 20, 0, 287, 288, 21, 0, 289, 290, 291,
22, 292, 293, 0, 24, 0, 0, 0, 294, 295,
296, 297, 298, 27, 0, 28, 299, 0, 0, 0,
300, -749, 0, 0, 0, 0, 301, 0, 0, 302,
0, 0, 0, 0, 0, 0, 0, 303, 304, 305,
0, 0, 0, 0, 0, 306, 307, 308, 0, 0,
0, 517, 309, 7, 8, 9, 10, 0, 12, 282,
283, 284, 0, 285, 14, 0, 0, 0, 0, 0,
310, 0, 0, 0, 0, 0, 0, 0, 0, 17,
286, 18, 0, 20, 0, 287, 288, 21, 0, 289,
290, 291, 22, 292, 293, 0, 24, 0, 0, 0,
294, 295, 296, 297, 298, 27, 0, 28, 29, -285,
0, 0, 300, 0, 0, 0, 0, 0, 301, 0,
0, 1421, 0, 0, 0, 0, 0, 0, 0, 303,
304, 1422, 0, 0, 0, 0, 0, 306, 307, 308,
0, 0, 0, 1499, 1423, 281, 8, 9, 10, 0,
12, 282, 283, 284, 0, 285, 14, 0, 0, 0,
0, 0, 310, 0, 0, 0, 0, 0, 0, 0,
0, 17, 286, 18, 0, 20, 0, 287, 288, 21,
0, 289, 290, 291, 22, 292, 293, 0, 24, 0,
0, 0, 294, 295, 296, 297, 298, 27, 0, 28,
299, 0, 0, -174, 300, 0, 0, 0, 0, 0,
301, 0, 0, 302, 0, 0, 0, 0, 0, 0,
0, 303, 304, 305, 0, 0, 0, 0, 0, 306,
307, 308, 0, 0, 0, 802, 309, 281, 8, 9,
10, 0, 12, 499, 283, 284, 0, 285, 14, 0,
0, 0, 0, 0, 310, 0, 0, 0, 0, 0,
0, 0, 0, 17, 286, 18, 0, 20, 0, 287,
288, 21, 0, 289, 290, 291, 22, 292, 293, 0,
24, 0, 0, 0, 294, 295, 296, 297, 298, 27,
0, 28, 299, 0, 0, 0, 300, 0, 0, 0,
0, 0, 301, 0, 0, 302, 0, 0, 0, 0,
0, 0, 0, 303, 304, 305, 0, 0, 0, 0,
0, 306, 307, 308, 0, 0, 0, 888, 309, 281,
8, 9, 10, 0, 12, 499, 283, 284, 0, 285,
14, 0, 0, 0, -749, 0, 310, 0, 0, 0,
0, 0, 0, 0, 0, 17, 286, 18, 0, 20,
0, 287, 288, 21, 0, 289, 290, 291, 22, 292,
293, 0, 24, 0, 0, 0, 294, 295, 296, 297,
298, 27, 0, 28, 299, 0, 0, 0, 300, 0,
0, 0, 0, 0, 301, 0, 0, 302, 0, 0,
0, 0, 0, 0, 0, 303, 304, 305, 0, 0,
0, 0, 0, 306, 307, 308, 0, 0, 0, 890,
309, 281, 8, 9, 10, 0, 12, 499, 283, 284,
0, 285, 14, 0, 0, 0, 0, 0, 310, 0,
0, 0, 0, 0, 0, 0, 0, 17, 286, 18,
0, 20, 0, 287, 288, 21, 0, 289, 290, 291,
22, 292, 293, 0, 24, 0, 0, 0, 294, 295,
296, 297, 298, 27, 0, 28, 299, 0, 0, 0,
300, 0, 0, 0, 0, 0, 301, 0, 0, 302,
0, 0, 0, 0, 0, 0, 0, 303, 304, 305,
0, 0, 0, 0, 0, 306, 307, 308, 0, 0,
0, 1434, 309, 281, 8, 9, 10, 0, 12, 499,
283, 284, 0, 285, 14, 0, 0, 0, 0, 0,
310, 0, 0, 0, 0, 0, 0, 0, 0, 17,
286, 18, 0, 20, 0, 287, 288, 21, 0, 289,
290, 291, 22, 292, 293, 0, 24, 0, 0, 0,
294, 295, 296, 297, 298, 27, 0, 28, 299, 0,
0, 0, 300, 0, 0, 0, 0, 0, 301, 0,
0, 302, 0, 0, 0, 0, 0, 0, 0, 303,
304, 305, 0, 0, 0, 0, 0, 306, 307, 308,
281, 8, 9, 10, 309, 12, 499, 283, 284, 0,
285, 14, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 310, 0, 0, 0, 17, 286, 18, 0,
20, 0, 287, 288, 21, 0, 289, 290, 291, 22,
292, 293, 0, 24, 0, 0, 0, 294, 295, 296,
297, 298, 27, 0, 28, 299, 0, 0, 0, 300,
0, 0, 0, 0, 0, 301, 0, 0, 302, 0,
0, 0, 0, 0, 0, 0, 303, 304, 305, 0,
0, 0, 0, 0, 306, 307, 308, 0, 0, 0,
0, 309, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 310,
841, 1230, 1231, 1232, 10, 386, 12, 282, 283, 284,
0, 285, 14, 1233, 0, 1234, 1235, 1236, 1237, 1238,
1239, 1240, 1241, 1242, 1243, 15, 16, 17, 286, 18,
19, 20, 0, 287, 288, 21, 0, 289, 290, 291,
22, 292, 293, 0, 24, 0, 0, 0, 294, 295,
296, 297, 298, 27, 0, 1244, 299, 675, 0, 1245,
300, 0, 0, 0, 0, 0, 301, 0, 0, 302,
0, 0, 0, 0, 0, 0, 0, 303, 304, 305,
0, 0, 0, 0, 0, 306, 307, 308, 0, 0,
0, 0, 309, 0, 1246, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1365,
310, 1230, 1231, 1232, 10, 386, 12, 282, 283, 284,
0, 285, 14, 1233, 0, 1234, 1235, 1236, 1237, 1238,
1239, 1240, 1241, 1242, 1243, 15, 16, 17, 286, 18,
19, 20, 0, 287, 288, 21, 0, 289, 290, 291,
22, 292, 293, 0, 24, 0, 0, 0, 294, 295,
296, 297, 298, 27, 0, 1244, 299, 675, 0, 1245,
300, 0, 0, 0, 0, 0, 301, 0, 0, 302,
0, 0, 0, 0, 0, 0, 0, 303, 304, 305,
0, 0, 0, 0, 0, 306, 307, 308, 0, 0,
0, 0, 309, 0, 1246, 0, 0, 1230, 1231, 1232,
10, 386, 12, 282, 283, 284, 0, 285, 14, 1233,
310, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242,
1243, 15, 16, 17, 286, 18, 19, 20, 0, 287,
288, 21, 0, 289, 290, 291, 22, 292, 293, 0,
24, 0, 0, 0, 294, 295, 296, 297, 298, 27,
0, 1244, 299, 1476, 0, 1245, 300, 0, 0, 0,
0, 0, 301, 0, 0, 302, 0, 0, 0, 0,
0, 0, 0, 303, 304, 305, 0, 0, 0, 0,
0, 306, 307, 308, 0, 0, 0, 0, 309, 0,
1246, 0, 0, 1230, 1231, 1232, 10, 386, 12, 282,
283, 284, 0, 285, 14, 1233, 310, 1234, 1235, 1236,
1237, 1238, 1239, 1240, 1241, 1242, 1243, 15, 16, 17,
286, 18, 19, 20, 0, 287, 288, 21, 0, 289,
290, 291, 22, 292, 293, 0, 24, 0, 0, 0,
294, 295, 296, 297, 298, 27, 0, 1244, 299, 0,
0, 1245, 300, 0, 0, 0, 0, 0, 301, 0,
0, 302, 0, 0, 0, 0, 0, 0, 0, 303,
304, 305, 0, 0, 0, 0, 0, 306, 307, 308,
0, 0, 0, 0, 309, 0, 1246, 281, 8, 9,
10, 386, 12, 282, 283, 284, 688, 285, 14, 0,
0, 0, 310, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 17, 286, 18, 19, 20, 0, 287,
288, 21, 0, 289, 290, 291, 22, 292, 293, 0,
24, 0, 581, 0, 294, 295, 296, 297, 298, 27,
0, 28, 299, 0, 0, 0, 300, 0, 0, 0,
0, 0, 301, 0, 0, 869, 0, 0, 0, 0,
0, 0, 0, 303, 304, 870, 0, 0, 0, 0,
0, 306, 307, 308, 0, 584, 0, 0, 871, 586,
0, 0, 689, 7, 8, 9, 10, 386, 12, 282,
283, 284, 688, 285, 14, 0, 310, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 17,
286, 18, 19, 20, 0, 287, 288, 21, 0, 289,
290, 291, 22, 292, 293, 0, 24, 0, 581, 0,
294, 295, 296, 297, 298, 27, 0, 28, 29, 0,
0, 0, 300, 0, 0, 0, 0, 0, 301, 0,
0, 1132, 0, 0, 0, 0, 0, 0, 0, 303,
304, 1133, 0, 0, 0, 0, 0, 306, 307, 308,
0, 584, 0, 0, 1134, 586, 0, 0, 689, 281,
8, 9, 10, 0, 12, 282, 283, 284, 0, 285,
14, 0, 310, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 17, 286, 18, 0, 20,
0, 287, 288, 21, 0, 289, 290, 291, 22, 292,
293, 0, 24, 0, 581, 0, 294, 295, 296, 297,
298, 27, 0, 28, 299, 0, 0, 0, 0, 0,
0, 0, 0, 0, 301, 0, 0, 869, 0, 0,
0, 0, 0, 0, 0, 303, 304, 870, 0, 0,
0, 0, 0, 306, 307, 308, 0, 584, 0, 0,
871, 586, 7, 8, 9, 10, 0, 12, 282, 283,
284, 0, 285, 14, 0, 0, 0, 0, 310, 0,
0, 0, 0, 0, 0, 0, 0, 0, 17, 286,
18, 0, 20, 0, 287, 288, 21, 0, 289, 290,
291, 22, 292, 293, 0, 24, 0, 581, 0, 294,
295, 296, 297, 298, 27, 0, 28, 29, 0, 0,
0, 0, 0, 0, 0, 0, 0, 301, 0, 0,
1132, 0, 0, 0, 0, 0, 0, 0, 303, 304,
1133, 0, 0, 0, 0, 0, 306, 307, 308, 0,
584, 0, 0, 1134, 586, 281, 8, 9, 10, 0,
12, 499, 283, 284, 0, 285, 14, 0, 0, 0,
0, 310, 0, 0, 0, 0, 0, 0, 0, 0,
0, 17, 286, 18, 0, 20, 0, 287, 288, 21,
0, 289, 290, 291, 22, 292, 293, 0, 24, 0,
0, 0, 294, 295, 296, 297, 298, 27, 0, 28,
299, 0, 0, 1342, 300, 0, 0, 0, 0, 0,
301, 0, 0, 302, 0, 0, 0, 0, 0, 0,
0, 303, 304, 305, 0, 0, 0, 0, 0, 306,
307, 308, 0, 0, 0, 0, 309, 281, 8, 9,
10, 386, 12, 282, 283, 284, 0, 285, 14, 0,
0, 0, 0, 0, 310, 0, 0, 0, 0, 0,
0, 0, 0, 17, 286, 18, 19, 20, 0, 287,
288, 21, 0, 289, 290, 291, 22, 292, 293, 0,
24, 0, 0, 0, 294, 295, 296, 297, 298, 27,
0, 28, 299, 0, 0, 0, 0, 0, 0, 0,
0, 0, 301, 0, 0, 302, 0, 0, 0, 0,
0, 0, 0, 303, 304, 305, 0, 0, 0, 0,
0, 306, 307, 308, 281, 8, 9, 10, 309, 12,
282, 283, 284, 0, 285, 14, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 310, 0, 0, 0,
17, 286, 18, 0, 20, 0, 287, 288, 21, 0,
289, 290, 291, 22, 292, 293, 0, 24, 0, 0,
0, 294, 295, 296, 297, 298, 27, 0, 28, 299,
0, 0, 0, 300, 0, 0, 0, 0, 0, 301,
0, 0, 302, 0, 0, 0, 0, 0, 0, 0,
303, 304, 305, 0, 0, 0, 0, 0, 306, 307,
308, 281, 8, 9, 10, 309, 12, 499, 283, 284,
0, 285, 14, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 310, 0, 0, 0, 17, 286, 18,
0, 20, 0, 287, 288, 21, 0, 289, 290, 291,
22, 292, 293, 0, 24, 0, 0, 0, 294, 295,
296, 297, 298, 27, 0, 28, 299, 0, 0, 0,
300, 0, 0, 0, 0, 0, 301, 0, 0, 302,
0, 0, 0, 0, 0, 0, 0, 303, 304, 305,
0, 0, 0, 0, 0, 306, 307, 308, 281, 8,
9, 10, 309, 12, 499, 283, 284, 0, 285, 14,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
310, 0, 0, 0, 17, 286, 18, 0, 20, 0,
287, 288, 21, 0, 289, 290, 291, 22, 292, 293,
0, 24, 0, 0, 0, 294, 295, 296, 297, 298,
27, 0, 28, 299, 532, 0, 0, 0, 0, 0,
0, 0, 0, 301, 0, 0, 302, 0, 0, 0,
0, 0, 0, 0, 303, 304, 305, 0, 0, 0,
0, 0, 306, 307, 308, 281, 8, 9, 10, 533,
12, 499, 283, 284, 0, 285, 14, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 310, 0, 0,
0, 17, 286, 18, 0, 20, 0, 287, 288, 21,
0, 289, 290, 291, 22, 292, 293, 0, 24, 0,
0, 0, 294, 295, 296, 297, 298, 27, 0, 28,
299, 0, 0, 0, 0, 0, 0, 0, 0, 0,
301, 0, 0, 302, 0, 0, 0, 0, 0, 0,
0, 303, 304, 305, 0, 0, 0, 0, 0, 306,
307, 308, 0, 0, 0, 0, 309, 569, 281, 8,
9, 10, 0, 12, 499, 283, 284, 0, 285, 14,
0, 0, 0, 0, 310, 0, 0, 0, 0, 0,
0, 0, 0, 0, 17, 286, 18, 0, 20, 0,
287, 288, 21, 0, 289, 290, 291, 22, 292, 293,
0, 24, 0, 0, 0, 294, 295, 296, 297, 298,
27, 0, 28, 299, 0, 0, 0, 300, 0, 0,
0, 0, 0, 301, 0, 0, 518, 0, 0, 0,
0, 0, 0, 0, 303, 304, 519, 0, 0, 0,
0, 0, 306, 307, 308, 1094, 8, 9, 10, 520,
12, 499, 283, 284, 0, 285, 14, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 310, 0, 0,
0, 17, 286, 18, 0, 20, 0, 287, 288, 21,
0, 289, 290, 291, 22, 292, 293, 0, 24, 0,
0, 0, 294, 295, 296, 297, 298, 27, 0, 28,
299, 0, 0, 0, 300, 0, 0, 0, 0, 0,
301, 0, 0, 302, 0, 0, 0, 0, 0, 0,
0, 303, 304, 305, 0, 0, 0, 0, 0, 306,
307, 308, 7, 8, 9, 10, 309, 12, 499, 283,
284, 0, 285, 14, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 310, 0, 0, 0, 17, 286,
18, 0, 20, 0, 287, 288, 21, 0, 289, 290,
291, 22, 292, 293, 0, 24, 0, 0, 0, 294,
295, 296, 297, 298, 27, 0, 28, 29, 0, 0,
0, 300, 0, 0, 0, 0, 0, 301, 0, 0,
1421, 0, 0, 0, 0, 0, 0, 0, 303, 304,
1422, 0, 0, 0, 0, 0, 306, 307, 308, 281,
8, 9, 10, 1423, 12, 499, 283, 284, 0, 285,
14, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 310, 0, 0, 0, 17, 286, 18, 0, 20,
0, 287, 288, 21, 0, 289, 290, 291, 22, 292,
293, 0, 24, 0, 0, 0, 294, 295, 296, 297,
298, 27, 0, 28, 299, 0, 0, 0, 0, 0,
0, 0, 0, 0, 301, 0, 0, 302, 0, 0,
0, 0, 0, 0, 0, 303, 304, 305, 0, 0,
0, 0, 0, 306, 307, 308, 281, 8, 9, 10,
500, 12, 499, 283, 284, 0, 285, 14, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 310, 0,
0, 0, 17, 286, 18, 0, 20, 0, 287, 288,
21, 0, 289, 290, 291, 22, 292, 293, 0, 24,
0, 0, 0, 294, 295, 296, 297, 298, 27, 0,
28, 299, 0, 0, 0, 0, 0, 0, 0, 0,
0, 301, 0, 0, 302, 0, 0, 0, 0, 0,
0, 0, 303, 304, 305, 0, 0, 0, 0, 0,
306, 307, 308, 281, 8, 9, 10, 503, 12, 499,
283, 284, 0, 285, 14, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 310, 0, 0, 0, 17,
286, 18, 0, 20, 0, 287, 288, 21, 0, 289,
290, 291, 22, 292, 293, 0, 24, 0, 0, 0,
294, 295, 296, 297, 298, 27, 0, 28, 299, 0,
0, 0, 0, 0, 0, 0, 0, 0, 301, 0,
0, 302, 0, 0, 0, 0, 0, 0, 0, 303,
304, 305, 0, 0, 0, 0, 0, 306, 307, 308,
281, 8, 9, 10, 309, 12, 499, 283, 284, 0,
285, 14, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 310, 0, 0, 0, 17, 286, 18, 0,
20, 0, 287, 288, 21, 0, 289, 290, 291, 22,
292, 293, 0, 24, 0, 0, 0, 294, 295, 296,
297, 298, 27, 0, 28, 299, 0, 0, 0, 0,
0, 0, 0, 0, 0, 301, 0, 0, 518, 0,
0, 0, 0, 0, 0, 0, 303, 304, 519, 0,
0, 0, 0, 0, 306, 307, 308, 7, 8, 9,
10, 520, 12, 282, 283, 284, 0, 285, 14, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 310,
0, 0, 0, 17, 286, 18, 0, 20, 0, 287,
288, 21, 0, 289, 290, 291, 22, 292, 293, 0,
24, 0, 0, 0, 294, 295, 296, 297, 298, 27,
0, 28, 29, 0, 0, 0, 0, 0, 0, 0,
0, 0, 301, 0, 6, 1421, 7, 8, 9, 10,
11, 12, 13, 303, 304, 1422, 0, 14, 0, 0,
0, 306, 307, 308, 0, 0, 0, 0, 1423, 0,
0, 0, 17, 0, 18, 19, 0, 0, 0, 0,
21, 0, 0, 0, 0, 22, 310, 0, 0, 24,
0, 0, 411, 0, 0, 0, 0, 0, 27, 0,
28, 29, 0, 0, 30, -357, 8, 9, -357, -357,
12, 227, 0, 0, 31, 0, 14, 0, 0, 0,
0, 0, 0, 0, 32, 0, 0, 0, 0, 0,
0, 17, 33, 18, -357, 0, 0, 34, 0, 21,
0, 0, 0, 0, -357, 0, 0, 0, 24, 0,
581, 0, 0, 0, 0, 0, 0, 27, 0, 129,
130, 7, 8, 9, 10, 189, 12, 190, 0, 0,
0, 0, 14, 582, 0, 0, 0, 0, 0, 0,
0, 0, 0, 583, 0, 0, 0, 17, 0, 18,
19, -357, 0, 584, 0, 21, 585, 586, 0, 0,
22, 0, 0, 0, 24, 0, 989, 8, 733, 10,
189, 12, 190, 27, 0, 28, 29, 14, 0, 191,
0, 0, 0, 0, 0, 0, 0, 0, 0, 31,
0, 0, 17, 0, 18, 19, 0, 0, 0, 32,
21, 0, 0, 0, 0, 22, 0, 33, 0, 24,
0, 0, 34, 0, 0, 0, 0, 0, 27, 0,
28, 29, 0, 0, 0, 0, 991, 7, 8, 9,
10, 189, 12, 190, 31, 0, 0, 0, 14, 0,
0, 0, 0, 0, 32, 0, 0, 0, 0, 0,
0, 0, 33, 17, 0, 18, 19, 34, 0, 0,
0, 21, 0, 0, 0, 0, 22, 0, 0, 0,
24, 0, 7, 8, 9, 10, 386, 12, 13, 27,
0, 28, 29, 14, 0, 1355, 0, 0, 0, 0,
0, 0, 0, 0, 0, 31, 0, 0, 17, 0,
18, 19, 0, 0, 0, 32, 21, 0, 0, 0,
0, 22, 0, 33, 0, 24, 0, 0, 34, 0,
0, 0, 0, 0, 27, 0, 28, 29, 7, 8,
9, 10, 189, 12, 190, 0, 0, 0, 0, 14,
31, 0, 0, 0, 0, 0, 0, 0, 0, 0,
32, 0, 0, 0, 17, 0, 18, 19, 33, 0,
0, 0, 21, 34, 0, 0, 0, 22, 0, 0,
0, 24, 0, 7, 8, 9, 10, 198, 199, 200,
27, 0, 28, 29, 14, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 31, 0, 0, 0,
0, 0, 19, 0, 0, 0, 32, 21, 0, 0,
0, 0, 22, 0, 33, 1411, 24, 0, 581, 34,
0, 0, 0, 0, 0, 27, 0, 28, 29, 535,
536, 537, 538, 539, 540, 541, 542, 543, 544, 545,
546, 177, 548, 549, 550, 551, 552, 553, 554, 555,
556, 178, 0, 0, 0, 0, 0, 19, 0, 33,
0, 0, 0, 0, 1358, 0, 1412, 535, 536, 537,
538, 539, 540, 541, 542, 543, 544, 545, 546, 547,
548, 549, 550, 551, 552, 553, 554, 555, 556, 535,
536, 537, 538, 539, 540, 541, 542, 543, 544, 545,
546, 547, 548, 549, 550, 551, 552, 553, 554, 555,
556, 535, 536, 537, 538, 539, 540, 541, 542, 543,
544, 545, 546, 547, 548, 549, 550, 551, 552, 553,
554, 555, 556, 535, 536, 537, 538, 539, 540, 541,
542, 543, 544, 545, 546, 547, 548, 549, 550, 551,
552, 553, 554, 555, 556, 0, 0, 0, 0, 0,
1185, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 621, 0, 0, 1466, 535,
536, 537, 538, 539, 540, 541, 542, 543, 544, 545,
546, 547, 548, 549, 550, 551, 552, 553, 554, 555,
556, 1484, 535, 536, 537, 538, 539, 540, 541, 542,
543, 544, 545, 546, 547, 548, 549, 550, 551, 552,
553, 554, 555, 556, 535, 536, 537, 538, 539, 540,
541, 542, 543, 544, 545, 546, 547, 548, 549, 550,
551, 552, 553, 554, 555, 556
};
static const short yycheck[] = { 4,
156, 79, 4, 426, 673, 670, 54, 24, 4, 125,
4, 193, 329, 385, 232, 335, 448, 83, 336, 337,
385, 4, 285, 286, 385, 58, 530, 146, 147, 653,
469, 36, 14, 4, 36, 830, 41, 31, 32, 41,
36, 123, 36, 223, 132, 41, 228, 41, 660, 353,
737, 56, 739, 36, 317, 4, 201, 202, 41, 746,
34, 4, 1254, 141, 585, 36, 71, 421, 128, 1261,
41, 592, 193, 133, 392, 393, 132, 133, 83, 4,
61, 202, 87, 1408, 89, 56, 91, 36, 11, 83,
1247, 1324, 41, 36, 38, 277, 1409, 11, 41, 11,
82, 106, 107, 53, 34, 1155, 1156, 1410, 9, 187,
79, 36, 45, 48, 60, 63, 41, 335, 456, 1169,
60, 1446, 59, 105, 0, 65, 7, 63, 65, 0,
135, 136, 89, 138, 91, 473, 76, 754, 60, 75,
63, 135, 75, 760, 385, 1, 75, 329, 1, 59,
49, 12, 146, 147, 586, 160, 1, 38, 83, 94,
193, 62, 110, 1426, 135, 111, 160, 111, 201, 202,
524, 12, 146, 147, 148, 110, 287, 288, 1481, 136,
12, 111, 1445, 177, 178, 502, 135, 110, 110, 160,
100, 302, 135, 434, 305, 228, 110, 308, 110, 60,
311, 151, 63, 59, 315, 179, 59, 63, 106, 107,
135, 160, 323, 1526, 59, 196, 1541, 160, 63, 60,
63, 1413, 63, 204, 65, 75, 48, 36, 60, 94,
48, 63, 41, 672, 184, 160, 1286, 98, 326, 1502,
96, 25, 55, 65, 277, 1295, 1296, 229, 1298, 110,
867, 96, 1409, 1486, 1049, 61, 322, 98, 414, 3,
4, 5, 75, 1455, 197, 60, 98, 110, 880, 94,
326, 883, 94, 278, 243, 59, 94, 95, 902, 63,
34, 76, 643, 365, 604, 61, 60, 39, 4, 5,
608, 94, 110, 9, 63, 355, 329, 48, 76, 60,
78, 48, 61, 55, 309, 111, 75, 452, 453, 921,
922, 1503, 96, 57, 58, 460, 109, 322, 48, 379,
674, 440, 441, 379, 696, 330, 61, 472, 322, 633,
75, 696, 453, 338, 339, 111, 110, 81, 55, 55,
388, 57, 58, 94, 585, 339, 491, 94, 95, 110,
871, 592, 111, 335, 48, 71, 574, 390, 75, 976,
60, 27, 28, 110, 94, 81, 32, 25, 339, 27,
28, 988, 767, 768, 769, 692, 111, 48, 75, 95,
385, 338, 1432, 1433, 389, 48, 48, 94, 909, 385,
339, 385, 146, 147, 148, 61, 339, 322, 1193, 65,
94, 59, 906, 25, 1021, 63, 1023, 518, 519, 832,
110, 309, 61, 48, 339, 25, 61, 27, 28, 452,
453, 55, 55, 94, 95, 179, 55, 460, 949, 434,
65, 94, 94, 95, 48, 416, 868, 55, 96, 472,
434, 75, 75, 4, 5, 111, 440, 441, 110, 59,
8, 9, 770, 63, 32, 696, 14, 75, 491, 94,
385, 63, 3, 4, 5, 470, 440, 441, 442, 3,
4, 5, 6, 1085, 1086, 59, 470, 63, 459, 37,
94, 95, 75, 1170, 48, 55, 96, 470, 46, 75,
48, 48, 497, 63, 55, 500, 57, 58, 503, 55,
566, 470, 507, 508, 509, 510, 511, 48, 42, 434,
71, 4, 5, 754, 55, 520, 57, 58, 446, 760,
81, 470, 4, 57, 58, 530, 454, 470, 533, 462,
94, 903, 55, 431, 95, 974, 94, 94, 903, 166,
497, 721, 903, 723, 48, 470, 4, 5, 728, 48,
59, 55, 75, 94, 36, 89, 876, 60, 61, 41,
565, 566, 610, 111, 57, 58, 3, 4, 5, 714,
48, 75, 566, 94, 3, 4, 5, 48, 611, 48,
585, 899, 55, 937, 76, 1106, 55, 592, 582, 583,
94, 585, 55, 4, 5, 94, 95, 779, 592, 57,
58, 649, 500, 651, 652, 503, 75, 55, 48, 507,
873, 95, 49, 1134, 596, 731, 94, 1040, 1041, 652,
57, 58, 520, 94, 641, 94, 867, 1059, 57, 58,
871, 636, 48, 110, 48, 533, 48, 11, 49, 537,
1251, 566, 1253, 55, 692, 650, 57, 58, 48, 654,
60, 61, 4, 5, 94, 672, 110, 9, 876, 692,
585, 110, 903, 75, 110, 563, 111, 592, 909, 48,
81, 569, 4, 5, 14, 94, 48, 1116, 94, 636,
94, 714, 94, 23, 61, 48, 440, 441, 442, 8,
9, 696, 1449, 3, 94, 14, 744, 1015, 1016, 1017,
60, 61, 696, 55, 113, 57, 58, 1130, 949, 1148,
25, 95, 27, 28, 95, 94, 1139, 1140, 37, 71,
63, 1144, 94, 55, 64, 57, 58, 46, 113, 81,
841, 94, 737, 9, 739, 976, 12, 1054, 1495, 94,
745, 746, 60, 737, 59, 739, 779, 988, 63, 754,
755, 756, 746, 758, 737, 760, 739, 63, 869, 870,
754, 94, 1185, 746, 1055, 1056, 760, 1058, 737, 75,
739, 696, 48, 744, 745, 75, 745, 746, 4, 5,
1021, 96, 1023, 123, 60, 75, 62, 63, 737, 65,
739, 971, 972, 973, 737, 75, 739, 746, 755, 756,
76, 758, 78, 746, 1469, 145, 75, 740, 741, 11,
27, 28, 737, 111, 739, 32, 749, 110, 94, 95,
1489, 746, 98, 49, 829, 4, 5, 60, 833, 754,
55, 57, 58, 110, 110, 760, 914, 27, 28, 84,
85, 55, 110, 60, 61, 60, 61, 110, 65, 63,
1273, 3, 4, 5, 6, 81, 861, 3, 4, 5,
6, 75, 867, 4, 5, 1106, 871, 75, 60, 110,
49, 111, 48, 867, 61, 869, 870, 871, 57, 58,
220, 221, 60, 61, 76, 1203, 78, 111, 1311, 65,
42, 113, 232, 1134, 876, 113, 42, 49, 903, 110,
905, 906, 81, 49, 909, 57, 58, 903, 49, 903,
75, 57, 58, 907, 908, 909, 57, 58, 94, 95,
60, 61, 1000, 60, 61, 25, 75, 27, 28, 81,
55, 979, 75, 113, 55, 909, 1253, 89, 113, 837,
81, 110, 867, 89, 949, 59, 871, 3, 4, 5,
1061, 7, 8, 9, 55, 949, 4, 5, 963, 59,
110, 301, 63, 63, 969, 3, 4, 5, 6, 55,
94, 976, 110, 871, 75, 949, 110, 63, 903, 8,
113, 1335, 976, 988, 909, 1104, 1105, 4, 5, 75,
3, 4, 5, 1347, 988, 48, 96, 65, 60, 94,
48, 57, 58, 343, 42, 111, 1011, 55, 979, 57,
58, 61, 352, 1132, 1133, 55, 1021, 1011, 1023, 57,
58, 1132, 1133, 71, 949, 365, 37, 1021, 1011, 1023,
1108, 1000, 49, 81, 65, 65, 49, 65, 110, 61,
57, 58, 1011, 91, 57, 58, 94, 95, 3, 4,
5, 976, 7, 8, 9, 63, 110, 94, 1063, 992,
65, 110, 1011, 988, 81, 998, 999, 1439, 1011, 1002,
1003, 969, 1426, 1006, 1439, 55, 110, 55, 110, 65,
65, 60, 37, 63, 110, 63, 1011, 3, 4, 5,
717, 1445, 3, 4, 5, 75, 1021, 75, 1023, 1116,
55, 1106, 57, 58, 59, 63, 1063, 113, 1531, 110,
1104, 1105, 1106, 110, 3, 4, 5, 6, 1472, 3,
4, 5, 1127, 110, 751, 1127, 1443, 467, 110, 1134,
1104, 1105, 1106, 1127, 76, 76, 1247, 55, 1132, 1133,
1134, 57, 58, 59, 1127, 63, 57, 58, 1502, 76,
105, 106, 107, 42, 76, 909, 1510, 75, 1132, 1133,
1134, 4, 5, 4, 5, 1170, 55, 110, 57, 58,
56, 55, 58, 57, 58, 59, 1170, 110, 1127, 110,
63, 1106, 63, 60, 87, 63, 89, 1170, 91, 3,
4, 5, 532, 110, 113, 949, 111, 1166, 1439, 95,
89, 1170, 1127, 1251, 110, 1253, 110, 89, 49, 1134,
75, 113, 55, 48, 57, 58, 57, 58, 110, 110,
1253, 1170, 3, 4, 5, 113, 7, 1170, 71, 60,
110, 110, 65, 136, 574, 138, 1134, 113, 81, 110,
81, 55, 1247, 57, 58, 1170, 110, 1252, 111, 1254,
31, 111, 1254, 1247, 65, 60, 1261, 38, 60, 1261,
1254, 1443, 1418, 110, 1247, 1270, 110, 1261, 94, 94,
94, 1254, 94, 111, 55, 8, 57, 58, 1261, 113,
166, 110, 110, 1181, 1182, 1183, 1184, 3, 4, 5,
6, 27, 28, 1191, 110, 110, 32, 110, 1247, 111,
110, 641, 1421, 1422, 113, 1254, 110, 193, 34, 110,
1421, 1422, 1261, 653, 110, 201, 202, 81, 82, 83,
84, 85, 1247, 110, 60, 61, 42, 110, 110, 1254,
65, 110, 55, 49, 110, 110, 1261, 48, 63, 679,
113, 57, 58, 110, 1242, 110, 97, 3, 4, 5,
1104, 1105, 1106, 110, 981, 982, 7, 8, 9, 63,
1293, 1294, 63, 14, 61, 81, 3, 4, 5, 61,
7, 8, 9, 89, 9, 31, 61, 16, 1132, 1133,
1134, 32, 110, 1010, 1358, 94, 37, 94, 3, 4,
5, 110, 712, 110, 61, 46, 1444, 300, 1403, 55,
37, 57, 58, 1408, 1409, 1410, 1408, 110, 1413, 1403,
1443, 1413, 4, 5, 1408, 1409, 1410, 110, 1423, 1413,
57, 58, 113, 110, 1357, 1408, 1409, 1421, 1422, 61,
1413, 94, 94, 753, 1439, 338, 3, 4, 5, 759,
55, 1446, 57, 58, 1446, 1439, 1344, 1421, 1422, 1423,
1455, 17, 1446, 1455, 61, 109, 99, 49, 110, 1408,
1409, 1455, 61, 1446, 1413, 57, 58, 11, 110, 110,
110, 61, 1455, 61, 61, 94, 1481, 60, 1403, 65,
110, 61, 110, 1408, 1409, 1410, 110, 1481, 1413, 11,
57, 58, 4, 5, 3, 4, 5, 1446, 1503, 61,
11, 1503, 61, 389, 390, 1403, 1455, 0, 0, 1503,
0, 1409, 1410, 413, 1439, 355, 2, 903, 745, 1116,
1503, 1446, 160, 426, 427, 1423, 3, 4, 5, 6,
1455, 434, 93, 45, 1161, 1162, 1541, 1164, 1165, 1541,
1167, 1474, 862, 55, 864, 57, 58, 1541, 57, 58,
1468, 160, 892, 138, 1503, 1334, 1481, 1541, 1541, 445,
280, 48, 902, 1252, 892, 42, 452, 453, 679, 222,
456, 887, 49, 1148, 460, 974, 1011, 745, 1503, 1168,
57, 58, 617, 1481, 7, 8, 9, 473, 885, 566,
184, 14, 1541, 123, 497, 498, 326, 1254, 1128, 1497,
87, 88, 1510, 1489, 1358, 92, 93, 94, 95, 32,
1458, 1520, 89, 34, 37, 1522, 1541, 958, 1270, -1,
-1, 1519, -1, 46, -1, -1, -1, 530, 1526, 532,
-1, -1, 535, 536, -1, 538, 539, 540, 541, 542,
543, 544, 545, 546, 547, 548, 549, 550, 551, 552,
553, 554, 555, 556, -1, -1, 1283, 1284, -1, 562,
-1, 564, 565, -1, -1, -1, -1, 1421, 1422, 1423,
-1, -1, -1, -1, -1, 1, -1, 3, 4, 5,
6, 7, 8, 9, -1, 7, 8, 9, 14, 592,
4, 5, 14, -1, -1, 9, 599, -1, -1, -1,
1020, 1041, 1022, 29, -1, 31, 32, 33, -1, -1,
32, 37, 38, -1, -1, 37, 42, 620, 621, -1,
46, 47, -1, 49, 46, 611, 147, 148, -1, 55,
-1, 57, 58, 636, 48, 61, -1, 63, 79, 61,
-1, 55, -1, 57, 58, 71, 427, -1, -1, -1,
1377, 1378, 1379, 434, -1, 81, 1076, 71, 179, -1,
-1, -1, 103, 89, 650, -1, 652, 81, 94, 79,
80, 81, 82, 83, 84, 85, 679, 91, -1, -1,
94, 95, -1, -1, 1124, 111, -1, -1, 4, 5,
1130, 132, 8, 9, -1, -1, -1, 4, 14, -1,
141, -1, 1429, 1430, -1, -1, 692, 14, -1, -1,
-1, -1, -1, 29, -1, 31, -1, 498, 25, -1,
-1, 37, -1, -1, 31, 32, -1, 34, 714, 36,
46, 717, 1152, 736, 41, -1, -1, 1157, -1, 55,
-1, 57, 58, 59, -1, -1, 187, 54, -1, 56,
-1, -1, 755, 756, -1, 758, -1, 64, -1, 745,
3, 4, 5, -1, 71, 751, -1, 1494, -1, -1,
773, -1, -1, -1, -1, 82, 83, -1, 94, 220,
-1, 562, -1, 564, 565, -1, -1, 1207, 309, -1,
-1, -1, 795, -1, -1, -1, 39, 40, 105, 42,
-1, -1, 243, 1243, -1, -1, 3, 4, 5, 6,
-1, 592, 55, -1, 57, 58, -1, -1, 599, -1,
-1, 128, -1, -1, -1, -1, 133, 12, 135, 832,
833, -1, 139, -1, -1, 142, 143, -1, -1, 146,
147, 148, 27, 28, 847, 42, 849, 32, 851, -1,
-1, -1, -1, 160, -1, -1, -1, -1, 55, -1,
57, 58, -1, 48, 61, -1, 63, -1, -1, -1,
177, 178, 179, -1, 71, 60, 61, -1, 63, -1,
65, 884, 1302, 1303, 81, -1, 1326, -1, -1, -1,
-1, 894, 89, 334, -1, -1, -1, 94, 1318, 206,
-1, -1, -1, 906, 7, 8, 9, -1, -1, 94,
95, 14, 427, 98, 221, -1, 919, -1, -1, 434,
441, 442, 229, -1, -1, 110, -1, -1, 931, 32,
-1, -1, -1, 240, 37, -1, -1, -1, -1, 3,
4, 5, 6, 46, -1, 9, 949, -1, -1, -1,
1370, 1371, -1, -1, 395, -1, -1, -1, 61, 77,
78, 79, 80, 81, 82, 83, 84, 85, -1, 1389,
1390, 278, 279, -1, -1, -1, -1, -1, 42, 500,
-1, -1, 503, 498, 48, -1, -1, -1, 991, -1,
-1, 55, 773, 57, 58, 981, 982, -1, 519, 520,
-1, 328, 329, 330, -1, -1, -1, 71, -1, -1,
-1, -1, 533, -1, -1, 322, -1, 81, -1, 326,
-1, 328, 329, 330, 1010, 89, 467, 91, -1, -1,
94, 95, 339, -1, -1, -1, -1, 1040, 1041, -1,
-1, 1044, -1, -1, -1, -1, -1, 562, 355, 564,
565, -1, 833, 494, 3, 4, 5, 6, -1, -1,
1063, -1, -1, -1, -1, -1, 847, -1, 849, -1,
851, 592, 379, -1, -1, -1, -1, -1, 385, -1,
-1, 388, 389, -1, 599, -1, -1, -1, -1, -1,
-1, -1, 399, 42, -1, 402, -1, -1, -1, 48,
407, -1, -1, -1, -1, -1, 55, -1, 57, 58,
-1, -1, -1, 894, -1, 1118, -1, 1120, -1, 1122,
-1, -1, 71, -1, -1, -1, -1, 1130, -1, 436,
-1, 438, 81, 440, 441, 442, 1139, 1140, 579, 446,
89, 1144, 91, -1, 451, 94, 95, 454, -1, -1,
931, -1, -1, -1, 595, -1, 1159, 1160, -1, -1,
-1, -1, -1, 470, -1, -1, -1, -1, 949, -1,
-1, -1, -1, -1, -1, 1161, 1162, -1, 1164, 1165,
-1, 1167, 1185, -1, 1, -1, 3, 4, 5, 6,
7, 8, 9, -1, -1, -1, -1, 14, -1, -1,
-1, 508, 509, 510, 511, -1, -1, -1, -1, -1,
-1, 1214, 29, -1, 31, 32, 33, -1, -1, -1,
37, 38, -1, -1, -1, 42, -1, -1, -1, 46,
47, -1, 49, -1, -1, 1238, -1, -1, 55, -1,
57, 58, -1, -1, 61, -1, 63, -1, -1, -1,
-1, -1, 773, -1, 71, 582, 583, -1, 585, 566,
-1, 568, -1, -1, 81, 592, 1252, 1253, -1, -1,
1273, -1, 89, 580, -1, 582, 583, 94, 585, -1,
-1, -1, -1, -1, -1, 592, 1289, -1, -1, 596,
-1, -1, -1, -1, 111, -1, -1, 1283, 1284, -1,
-1, -1, -1, 610, -1, -1, -1, -1, 1311, 3,
4, 5, 6, -1, -1, 9, -1, -1, 833, -1,
-1, -1, 649, -1, 651, 652, 1, 654, 3, 4,
5, 6, 847, 8, 849, -1, 851, 1118, -1, 1120,
-1, 1122, 649, 650, 651, 652, 653, 654, 42, 870,
871, -1, -1, -1, -1, 1358, -1, -1, -1, -1,
-1, 55, -1, 57, 58, 692, -1, 42, -1, -1,
-1, -1, 1375, 1376, 49, -1, -1, 71, -1, 894,
55, 1384, 57, 58, -1, 692, -1, 81, 909, 696,
-1, 1377, 1378, 1379, -1, 89, 703, 704, -1, 706,
94, -1, -1, -1, -1, -1, -1, -1, 1411, -1,
-1, -1, -1, -1, 89, -1, 931, -1, 106, 107,
-1, -1, -1, -1, -1, -1, -1, 734, 949, -1,
737, -1, 739, 1214, 875, -1, 877, 744, 745, 746,
-1, -1, -1, 1429, 1430, -1, -1, 754, -1, -1,
-1, -1, 779, 760, -1, 3, 4, 5, 6, -1,
767, 768, 769, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 779, 914, -1, -1, -1, -1, 4, 5,
-1, 7, 8, 9, -1, -1, 12, -1, 14, -1,
-1, -1, -1, -1, 42, -1, -1, 3, 4, 5,
6, -1, -1, 29, -1, 31, 32, 55, 1494, 57,
58, 37, -1, 61, -1, -1, -1, -1, -1, -1,
46, -1, 829, 71, -1, 852, -1, 854, 1531, 55,
-1, 57, 58, 81, -1, -1, 42, -1, 865, -1,
-1, 89, 869, 870, 871, 852, 94, 854, -1, 55,
-1, 57, 58, -1, 861, -1, -1, 63, 865, 1000,
867, -1, 869, 870, 871, 71, -1, -1, -1, 876,
-1, -1, 98, -1, -1, 81, -1, 1358, -1, -1,
907, 908, 909, 89, 1105, 1106, 4, 5, 94, -1,
-1, 9, -1, -1, -1, -1, 903, -1, 905, 4,
907, 908, 909, 1118, -1, 1120, -1, 1122, -1, 14,
-1, -1, 1133, 1134, -1, -1, -1, -1, -1, 24,
25, 309, 949, -1, -1, -1, 31, 32, -1, 34,
48, 36, -1, -1, -1, -1, 41, 55, -1, 57,
58, 1082, 949, -1, -1, -1, -1, -1, -1, 54,
-1, 56, -1, 71, -1, -1, 963, -1, -1, 64,
-1, -1, -1, 81, -1, -1, 71, 1108, -1, 976,
-1, -1, 979, 91, -1, -1, 94, 95, 83, -1,
-1, 988, 3, 4, 5, 6, -1, -1, -1, -1,
-1, -1, -1, -1, 1001, -1, -1, 385, -1, 1214,
-1, -1, -1, -1, 1011, -1, -1, -1, 3, 4,
5, 6, -1, -1, 1021, -1, 1023, -1, -1, -1,
-1, 42, -1, 128, -1, 1166, -1, -1, 49, -1,
135, 328, 329, 330, 139, -1, 57, 58, 143, -1,
-1, 146, 147, 148, -1, -1, 434, 42, 1055, 1056,
-1, 1058, -1, -1, 49, 160, -1, -1, -1, -1,
4, 5, 57, 58, 8, 9, -1, -1, 89, -1,
14, -1, 177, 178, 179, 1102, 1103, 1104, 1105, 1106,
-1, -1, -1, 1110, -1, 29, 81, 31, -1, -1,
-1, -1, -1, 37, 89, 1102, 1103, 1104, 1105, 1106,
-1, 206, 46, 1110, -1, 1132, 1133, 1134, -1, -1,
-1, 55, 500, 57, 58, 503, -1, -1, -1, 507,
508, 509, 510, 511, -1, 1132, 1133, 1134, 3, 4,
5, 6, 520, -1, 9, 240, -1, 1358, -1, -1,
3, 4, 5, 6, -1, 533, 9, -1, -1, -1,
94, -1, -1, -1, -1, -1, 1163, -1, -1, -1,
-1, 1168, -1, 1170, -1, -1, -1, 42, -1, -1,
-1, -1, -1, 278, 279, -1, -1, 565, -1, 42,
55, -1, 57, 58, -1, 48, -1, -1, -1, -1,
1217, 1218, 55, 1220, 57, 58, 71, 585, -1, -1,
-1, 1422, 1423, -1, 592, -1, 81, -1, 71, -1,
1217, 1218, -1, 1220, 89, -1, -1, 322, 81, 94,
-1, 326, -1, 328, 329, 330, 89, -1, 91, -1,
335, 94, 95, -1, 339, 3, 4, 5, 6, -1,
-1, 9, -1, -1, 1251, 1252, 1253, -1, -1, -1,
355, -1, 3, 4, 5, 6, -1, -1, -1, -1,
-1, -1, -1, 1270, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 42, -1, -1, -1, -1, -1,
385, -1, 4, 388, 389, 582, 583, 55, -1, 57,
58, 42, -1, -1, 399, -1, -1, 402, 49, -1,
-1, -1, 407, 71, -1, -1, 57, 58, 696, 31,
32, -1, -1, 81, 36, -1, -1, -1, -1, 41,
-1, 89, 3, 4, 5, 6, 94, -1, -1, -1,
81, 436, -1, 438, 56, 440, 441, 442, 89, -1,
-1, 446, 3, 4, 5, 6, 451, -1, 9, 454,
-1, 1358, 649, -1, 651, 652, -1, 654, -1, -1,
-1, 42, -1, -1, 469, 470, 754, -1, 49, -1,
-1, -1, 760, -1, -1, -1, 57, 58, -1, -1,
-1, 42, -1, -1, -1, -1, -1, 48, -1, -1,
-1, -1, -1, -1, 55, 692, 57, 58, -1, -1,
81, -1, -1, 508, 509, 510, 511, -1, 89, -1,
71, -1, -1, 135, 1421, 1422, 1423, 139, -1, -1,
81, 143, -1, -1, -1, -1, -1, -1, 89, -1,
91, -1, 1439, 94, 95, -1, -1, 1444, 160, -1,
1, 829, 3, 4, 5, 6, 7, 8, 9, -1,
-1, -1, -1, 14, -1, 177, 178, -1, -1, -1,
-1, 566, -1, 568, -1, -1, 27, 28, 29, -1,
31, 32, 33, 861, -1, -1, 37, 582, 583, 867,
585, 42, 779, 871, 45, 46, 47, 592, 49, -1,
-1, -1, -1, -1, 55, -1, 57, 58, -1, 604,
61, -1, -1, -1, -1, 610, -1, -1, -1, -1,
71, 3, 4, 5, 6, 903, -1, 905, 240, -1,
81, 909, -1, -1, -1, -1, -1, -1, 89, -1,
-1, -1, -1, 94, -1, -1, 641, -1, -1, 100,
-1, -1, -1, -1, 649, 650, 651, 652, 653, 654,
42, -1, -1, -1, -1, 852, -1, 854, -1, -1,
-1, 949, -1, 55, -1, 57, 58, 672, 865, -1,
-1, 63, 869, 870, -1, 963, -1, -1, -1, 71,
-1, 969, -1, -1, -1, -1, -1, 692, 976, 81,
-1, 696, -1, -1, -1, -1, -1, 89, 703, 704,
988, 706, 94, -1, -1, -1, -1, -1, -1, -1,
907, 908, -1, -1, -1, -1, -1, 339, 3, 4,
5, 6, -1, -1, 9, -1, -1, -1, -1, 734,
-1, -1, 737, 1021, 739, 1023, -1, -1, -1, 744,
745, 746, -1, -1, -1, -1, -1, -1, -1, 754,
-1, -1, -1, -1, -1, 760, -1, 42, -1, -1,
-1, -1, 767, 768, 769, -1, -1, -1, -1, -1,
55, -1, 57, 58, 779, -1, -1, 399, -1, -1,
402, -1, -1, -1, -1, 407, 71, -1, -1, 3,
4, 5, 6, -1, -1, 9, 81, -1, 177, 178,
179, -1, -1, 4, 89, -1, -1, -1, -1, 94,
-1, -1, -1, -1, 436, -1, 438, -1, 1106, -1,
-1, -1, -1, -1, 829, -1, -1, -1, 42, 451,
31, 32, -1, 34, 48, 36, -1, -1, -1, -1,
41, 55, -1, 57, 58, -1, 1134, 852, 470, 854,
-1, -1, -1, 54, -1, 56, 861, 71, -1, -1,
865, -1, 867, -1, 869, 870, 871, 81, -1, -1,
-1, 876, -1, -1, -1, 89, -1, 91, 79, -1,
94, 95, 70, 71, 72, 73, 74, 75, 76, 77,
78, 79, 80, 81, 82, 83, 84, 85, 903, -1,
905, -1, 907, 908, 909, 1102, 1103, 1104, 1105, -1,
-1, -1, -1, 1110, 73, 74, 75, 76, 77, 78,
79, 80, 81, 82, 83, 84, 85, 128, -1, -1,
-1, 132, 133, -1, 135, 1132, 1133, -1, 139, -1,
141, -1, 143, -1, 949, 146, 147, 148, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 963, 160,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 974,
-1, 976, -1, -1, 979, -1, 177, 178, 179, -1,
-1, -1, 1270, 988, -1, -1, 187, -1, -1, 4,
5, -1, -1, 8, 9, -1, -1, -1, -1, 14,
-1, -1, -1, -1, -1, 206, 1011, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 1021, -1, 1023, -1,
1217, 1218, 37, 1220, -1, -1, -1, -1, 650, -1,
-1, 46, -1, 48, -1, -1, -1, -1, -1, 240,
55, -1, 57, 58, -1, -1, -1, -1, -1, -1,
1055, 1056, -1, 1058, -1, -1, 71, 436, -1, 438,
-1, 440, 441, 442, -1, -1, 81, -1, -1, -1,
-1, -1, 451, -1, 696, -1, 91, -1, -1, 94,
95, 703, 704, -1, 706, 74, 75, 76, 77, 78,
79, 80, 81, 82, 83, 84, 85, 1102, 1103, 1104,
1105, 1106, -1, -1, -1, 1110, -1, -1, 309, -1,
-1, 1116, -1, -1, -1, 737, -1, 739, -1, -1,
-1, -1, 744, 745, 746, 326, -1, 1132, 1133, 1134,
-1, -1, -1, 334, -1, 1423, -1, -1, 339, -1,
-1, -1, -1, 1148, -1, -1, -1, -1, -1, -1,
-1, 1439, -1, -1, 355, -1, -1, -1, 1163, -1,
-1, -1, -1, 1168, -1, 1170, 3, 4, 5, 6,
7, 8, 9, -1, -1, 12, -1, 14, 379, -1,
-1, -1, -1, -1, -1, -1, -1, 388, -1, -1,
-1, -1, 29, -1, 31, 32, -1, -1, 399, -1,
37, 402, -1, -1, -1, 42, 407, -1, -1, 46,
-1, 48, 1217, 1218, -1, 1220, -1, -1, 55, -1,
57, 58, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 71, 436, -1, 438, -1, 440,
441, 442, -1, -1, 81, 446, 1251, 1252, 1253, -1,
451, 4, 89, 454, 91, -1, -1, 94, 95, -1,
-1, 98, -1, -1, -1, 1270, -1, -1, -1, 470,
-1, -1, -1, -1, -1, -1, -1, -1, 31, 32,
-1, 34, -1, 36, -1, 907, 908, -1, 41, -1,
3, 4, 5, 6, -1, -1, 9, -1, -1, 500,
-1, 54, 503, 56, -1, -1, -1, -1, -1, -1,
4, 5, -1, -1, 8, 9, -1, 518, 519, 520,
14, -1, -1, -1, 703, 704, -1, 706, -1, 42,
-1, -1, 533, -1, -1, 29, -1, 31, -1, -1,
-1, -1, 55, 37, 57, 58, -1, -1, 81, -1,
-1, -1, 46, 1358, 48, -1, -1, 979, 71, -1,
-1, 55, -1, 57, 58, 744, -1, -1, 81, 4,
5, -1, -1, 8, 9, -1, 89, 71, 579, 14,
-1, 94, 135, -1, -1, -1, 139, 81, -1, 1011,
143, 592, -1, 146, 147, 148, -1, 91, -1, -1,
94, 95, 37, -1, -1, -1, -1, 160, -1, 610,
-1, 46, -1, 48, -1, -1, 1421, 1422, 1423, -1,
55, 154, 57, 58, 177, 178, 179, -1, -1, -1,
-1, -1, -1, -1, 1439, -1, 71, -1, -1, 1444,
-1, -1, 175, -1, -1, -1, 81, -1, 649, 650,
651, 652, -1, 206, -1, 188, 91, 4, 5, 94,
95, 8, 9, -1, -1, -1, -1, 14, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1102, 1103, 29, -1, 31, -1, -1, 240, 1110, -1,
37, 692, -1, -1, -1, 696, -1, -1, -1, 46,
-1, -1, 703, 704, -1, 706, -1, -1, 55, -1,
57, 58, -1, -1, -1, -1, -1, -1, -1, 1,
-1, 3, 4, 5, 6, 7, 8, 9, 907, 908,
909, -1, 14, -1, -1, -1, 737, -1, 739, -1,
-1, 1163, -1, 744, 745, 746, 1168, 29, 1170, 31,
32, 33, -1, -1, -1, 37, 38, -1, -1, -1,
42, -1, -1, -1, 46, 47, -1, 49, -1, -1,
949, -1, 773, 55, -1, 57, 58, -1, -1, 61,
-1, 63, 335, -1, -1, -1, 339, -1, -1, 71,
-1, -1, -1, -1, -1, 1217, 1218, -1, 1220, 81,
979, -1, -1, -1, -1, -1, -1, 89, 3, 4,
5, 6, 94, -1, 9, 72, 73, 74, 75, 76,
77, 78, 79, 80, 81, 82, 83, 84, 85, 111,
1252, -1, -1, -1, -1, 388, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 399, 42, -1, 402,
-1, -1, -1, -1, 407, -1, -1, -1, -1, -1,
55, -1, 57, 58, -1, -1, -1, -1, 869, 870,
871, -1, -1, -1, 875, -1, 71, -1, -1, -1,
-1, -1, -1, 436, -1, 438, 81, 440, 441, 442,
-1, -1, -1, 446, 89, -1, -1, -1, 451, 94,
-1, 454, 34, -1, -1, -1, 907, 908, 909, -1,
-1, 444, -1, 914, -1, -1, 449, 470, -1, -1,
-1, -1, 54, 1102, 1103, 1104, 1105, 1106, -1, -1,
-1, 1110, -1, -1, 3, 4, 5, 6, 7, 8,
9, 474, -1, -1, -1, 14, -1, 480, 949, -1,
-1, -1, -1, 1132, 1133, 1134, -1, -1, -1, 492,
493, -1, 495, 32, -1, -1, -1, -1, 37, -1,
-1, -1, -1, 42, -1, -1, -1, 46, 979, 48,
3, 4, 5, 6, 1163, -1, 55, -1, 57, 58,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 1000,
-1, -1, 71, -1, -1, -1, -1, -1, -1, -1,
1011, -1, 81, -1, 146, 147, 148, -1, -1, 42,
89, -1, 91, -1, -1, 94, 95, 580, -1, -1,
-1, -1, 55, -1, 57, 58, -1, -1, 1217, 1218,
63, 1220, -1, -1, -1, 177, 178, 179, 71, -1,
-1, -1, -1, -1, -1, 588, 589, 610, 81, -1,
593, -1, -1, -1, -1, -1, 89, -1, -1, -1,
-1, 94, -1, -1, 206, -1, -1, -1, -1, -1,
-1, 1082, -1, -1, -1, -1, 3, 4, 5, 6,
-1, -1, 9, -1, -1, -1, 649, 650, 651, 652,
-1, 1102, 1103, 1104, 1105, 1106, -1, 1108, -1, 1110,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 3, 4, 5, 6, 42, -1, 9, -1, -1,
-1, 1132, 1133, 1134, -1, -1, -1, -1, 55, 692,
57, 58, -1, 696, -1, -1, -1, 279, -1, -1,
703, 704, -1, 706, 71, -1, -1, -1, -1, -1,
42, -1, 1163, -1, 81, -1, -1, 1168, -1, 1170,
-1, -1, 89, 55, -1, 57, 58, 94, -1, 1358,
-1, -1, 4, 5, 737, -1, 739, 9, -1, 71,
-1, 744, 745, 746, -1, -1, 328, 329, 330, 81,
-1, -1, -1, -1, -1, -1, 54, 89, 3, 4,
5, 6, 94, -1, -1, -1, 1217, 1218, -1, 1220,
-1, -1, -1, -1, -1, -1, 48, -1, 761, -1,
763, 79, -1, 55, 82, 57, 58, -1, -1, -1,
-1, -1, 1421, 1422, 1423, -1, -1, 42, -1, 71,
1251, 1252, 1253, -1, -1, 103, 388, 105, -1, 81,
55, -1, 57, 58, -1, -1, 61, -1, -1, 91,
-1, -1, 94, 95, -1, -1, 71, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 81, -1, -1, -1,
-1, -1, -1, -1, 89, -1, -1, -1, -1, 94,
-1, -1, 835, 836, 436, 838, 438, -1, 440, 441,
442, -1, -1, -1, 446, -1, -1, -1, -1, 451,
-1, -1, 454, 876, -1, -1, -1, -1, -1, 177,
178, 179, -1, 866, -1, -1, -1, -1, -1, 187,
4, 5, -1, 7, 8, 9, -1, -1, 12, -1,
14, -1, -1, -1, 907, 908, 909, 1358, 206, -1,
-1, 3, 4, 5, 6, 29, -1, 31, 32, -1,
-1, -1, -1, 37, -1, -1, -1, -1, 911, -1,
-1, 229, 46, -1, 48, -1, -1, -1, -1, -1,
-1, 55, -1, 57, 58, 243, 949, -1, -1, -1,
42, -1, -1, -1, -1, -1, -1, 71, -1, -1,
-1, -1, -1, 55, -1, 57, 58, 81, -1, -1,
1421, 1422, 1423, -1, -1, -1, 979, 91, -1, 71,
94, 95, -1, -1, 98, -1, 568, -1, -1, 81,
-1, -1, 975, 1444, -1, -1, -1, 89, -1, -1,
582, 583, 94, 585, 987, -1, -1, -1, 1011, -1,
592, -1, -1, -1, -1, -1, -1, -1, -1, -1,
4, 5, -1, 7, 8, 9, -1, -1, 610, -1,
14, -1, -1, -1, -1, -1, 334, 335, -1, -1,
-1, 3, 4, 5, 6, 29, -1, 31, 32, -1,
-1, -1, -1, 37, -1, -1, -1, -1, -1, -1,
-1, -1, 46, -1, -1, 49, -1, 649, -1, 651,
652, 55, 654, 57, 58, -1, -1, -1, -1, -1,
42, -1, -1, -1, -1, -1, -1, -1, 1071, -1,
388, -1, -1, 55, -1, 57, 58, -1, -1, 1102,
1103, 1104, 1105, 1106, -1, -1, -1, 1110, -1, 71,
692, -1, -1, -1, -1, -1, -1, -1, -1, 81,
-1, 703, 704, -1, 706, -1, 1109, 89, -1, 1132,
1133, 1134, 94, -1, -1, -1, -1, -1, 436, -1,
438, -1, 440, 441, 442, -1, -1, -1, 446, -1,
-1, -1, -1, 451, -1, -1, 454, -1, -1, -1,
1163, -1, 744, -1, -1, 1168, -1, 1170, -1, -1,
-1, -1, -1, -1, -1, 1, -1, 3, 4, 5,
6, 7, 8, 9, -1, 767, 768, 769, 14, 1172,
-1, -1, -1, 1176, -1, -1, -1, 779, -1, -1,
-1, -1, -1, 29, -1, 31, 32, 33, -1, -1,
-1, 37, 38, -1, 1217, 1218, 42, 1220, -1, -1,
46, 47, -1, 49, -1, -1, 1209, -1, -1, 55,
-1, 57, 58, -1, -1, 61, -1, 63, 3, 4,
5, 6, -1, -1, -1, 71, -1, -1, 1251, 1252,
1253, -1, -1, -1, -1, 81, -1, -1, -1, -1,
-1, -1, -1, 89, -1, -1, -1, -1, 94, -1,
852, -1, 854, -1, -1, -1, -1, 42, -1, -1,
-1, -1, -1, 865, -1, 111, -1, 869, 870, 871,
55, -1, 57, 58, -1, 1278, -1, 595, 596, 1282,
-1, -1, -1, -1, -1, -1, 71, -1, -1, -1,
4, 5, 610, 7, 8, 9, 81, -1, 12, -1,
14, 1304, 1305, -1, 89, 907, 908, 909, -1, 94,
-1, -1, -1, -1, -1, 29, -1, 31, 32, -1,
-1, -1, -1, 37, -1, -1, -1, -1, -1, -1,
-1, 649, 46, 651, 652, 1358, -1, -1, -1, -1,
-1, 55, -1, 57, 58, -1, -1, 949, -1, -1,
3, 4, 5, 6, 7, 8, 9, -1, 14, -1,
-1, 14, -1, -1, -1, -1, -1, -1, 24, 25,
-1, -1, -1, -1, 692, 31, 32, 979, 34, 32,
-1, -1, -1, -1, 37, 703, 704, -1, 706, 42,
-1, -1, -1, 46, -1, 48, -1, -1, 1421, 1422,
1423, -1, 55, -1, 57, 58, 4, 5, 64, 7,
8, 9, -1, 731, -1, -1, 14, -1, 71, -1,
-1, 1444, -1, -1, -1, -1, 744, -1, 81, -1,
-1, 29, -1, 31, 32, -1, 89, -1, 91, 37,
-1, 94, 95, -1, -1, -1, -1, -1, 46, -1,
-1, -1, -1, 1055, 1056, -1, 1058, 55, -1, 57,
58, -1, -1, -1, -1, -1, -1, 123, -1, 125,
-1, -1, 128, -1, -1, -1, 132, 133, -1, -1,
-1, -1, -1, 139, -1, 141, 142, 143, -1, -1,
146, 147, 148, -1, -1, -1, -1, -1, -1, -1,
1102, 1103, 1104, 1105, 1106, -1, -1, -1, 1110, 68,
69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
79, 80, 81, 82, 83, 84, 85, -1, -1, -1,
1132, 1133, 1134, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 1, -1, 3,
4, 5, 6, 7, 8, 9, -1, 875, 876, 877,
14, 1163, -1, -1, 220, 221, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 29, -1, 31, 32, 33,
-1, -1, -1, 37, 240, -1, -1, -1, 42, 907,
908, 909, 46, 47, -1, 49, 914, -1, -1, -1,
-1, 55, -1, 57, 58, -1, -1, 61, -1, 63,
-1, -1, -1, -1, -1, 1217, 1218, 71, 1220, -1,
-1, -1, -1, 279, -1, -1, -1, 81, -1, -1,
-1, 949, -1, -1, -1, 89, -1, -1, -1, 1,
94, -1, 4, 5, -1, -1, 8, 9, -1, 1251,
-1, 1253, 14, -1, -1, -1, -1, -1, -1, -1,
-1, 979, -1, -1, -1, -1, -1, 29, -1, 31,
326, -1, 328, 329, -1, 37, -1, 39, 40, -1,
-1, -1, 1000, -1, 46, -1, 48, -1, -1, -1,
-1, -1, -1, 55, -1, 57, 58, -1, 60, 355,
-1, -1, 64, 65, 66, 67, 68, 69, 70, 71,
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
82, 83, 84, 379, -1, 87, 88, 89, -1, -1,
92, -1, -1, 95, -1, -1, -1, -1, -1, 395,
-1, -1, -1, 399, -1, -1, 402, -1, -1, -1,
112, 407, -1, -1, -1, -1, 1358, -1, -1, -1,
-1, -1, -1, -1, 1082, 69, 70, 71, 72, 73,
74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
84, 85, -1, -1, 1102, 1103, 1104, 1105, 1106, -1,
1108, -1, 1110, 71, 72, 73, 74, 75, 76, 77,
78, 79, 80, 81, 82, 83, 84, 85, -1, -1,
-1, 467, -1, 469, 1132, 1133, 1134, -1, -1, 1421,
1422, 1423, -1, -1, -1, -1, -1, -1, 3, 4,
5, 6, 7, 8, 9, -1, -1, 12, 494, 14,
-1, -1, 1444, -1, -1, 1163, -1, -1, -1, -1,
-1, -1, -1, -1, 29, -1, 31, 32, -1, -1,
-1, -1, 37, -1, -1, -1, -1, 42, -1, -1,
-1, 46, -1, -1, -1, -1, -1, -1, -1, -1,
55, -1, 57, 58, 1, -1, 3, 4, 5, 6,
7, 8, 9, -1, -1, 12, 71, 14, -1, 1217,
1218, -1, 1220, -1, -1, -1, 81, -1, 25, -1,
27, 28, 568, -1, 89, 32, -1, -1, -1, 94,
37, -1, -1, 579, 580, 42, 582, 583, -1, 46,
-1, 48, -1, 1251, -1, 1253, -1, -1, 55, -1,
57, 58, 59, 60, 61, -1, 63, 64, 65, 66,
67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
77, 78, 79, 80, 81, 82, 83, 84, 85, -1,
87, 88, 89, -1, 91, 92, 93, 94, 95, 96,
-1, 98, 99, -1, -1, 641, -1, 104, -1, -1,
-1, -1, 109, 110, 111, -1, 113, 653, -1, -1,
1, -1, 3, 4, 5, 6, 7, 8, 9, -1,
4, 5, -1, 14, 8, 9, 672, -1, -1, -1,
14, -1, -1, -1, -1, -1, 27, 28, 29, -1,
31, 32, 33, -1, -1, 29, 37, 31, -1, -1,
1358, 42, -1, 37, 45, 46, 47, -1, 49, -1,
-1, -1, 46, -1, 55, -1, 57, 58, -1, -1,
61, 55, -1, 57, 58, -1, -1, -1, -1, -1,
71, -1, -1, -1, -1, 731, -1, -1, 734, -1,
81, -1, -1, -1, -1, -1, -1, -1, 89, -1,
-1, -1, -1, 94, -1, -1, -1, -1, -1, 100,
-1, -1, -1, 1421, 1422, 1423, -1, -1, -1, -1,
-1, 767, 768, 769, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 779, -1, 1, 1444, 3, 4, 5,
6, 7, 8, 9, 10, 11, -1, 13, 14, 15,
-1, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, 28, 29, 30, 31, 32, 33, -1, 35,
36, 37, -1, 39, 40, 41, 42, 43, 44, -1,
46, -1, -1, -1, 50, 51, 52, 53, 54, 55,
-1, 57, 58, 59, -1, 61, 62, -1, -1, -1,
-1, -1, 68, -1, -1, 71, 852, -1, 854, -1,
-1, -1, -1, 79, 80, 81, -1, -1, -1, 865,
-1, 87, 88, 89, -1, -1, -1, -1, 94, -1,
96, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 111, 112, 1, -1, 3,
4, 5, 6, 7, 8, 9, 10, 11, -1, 13,
14, 15, -1, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
-1, 35, 36, 37, -1, 39, 40, 41, 42, 43,
44, -1, 46, -1, -1, -1, 50, 51, 52, 53,
54, 55, -1, 57, 58, 59, -1, 61, 62, -1,
-1, -1, -1, -1, 68, -1, -1, 71, -1, -1,
-1, -1, -1, -1, -1, 79, 80, 81, 974, -1,
-1, -1, -1, 87, 88, 89, -1, -1, -1, -1,
94, 1, 96, 3, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 1001, -1, -1, 112, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 29,
30, 31, 32, 33, -1, 35, 36, 37, -1, 39,
40, 41, 42, 43, 44, -1, 46, -1, 48, -1,
50, 51, 52, 53, 54, 55, -1, 57, 58, 59,
-1, -1, 62, -1, -1, -1, -1, -1, 68, 1055,
1056, 71, 1058, -1, -1, -1, -1, -1, -1, 79,
80, 81, -1, -1, -1, -1, -1, 87, 88, 89,
-1, 91, -1, -1, 94, 95, -1, 1, 98, 3,
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
14, -1, 112, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 29, 30, 31, 32, 33,
1116, 35, 36, 37, -1, 39, 40, 41, 42, 43,
44, -1, 46, -1, 48, -1, 50, 51, 52, 53,
54, 55, -1, 57, 58, 59, -1, -1, 62, -1,
-1, -1, 1148, -1, 68, -1, -1, 71, -1, -1,
-1, -1, -1, -1, -1, 79, 80, 81, -1, -1,
1166, -1, 1168, 87, 88, 89, -1, 91, -1, -1,
94, 95, -1, 1, 98, 3, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, -1, 112, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 29, 30, 31, 32, 33, -1, 35, 36, 37,
-1, 39, 40, 41, 42, 43, 44, -1, 46, -1,
-1, -1, 50, 51, 52, 53, 54, 55, -1, 57,
58, -1, -1, -1, 62, -1, -1, -1, -1, -1,
68, -1, -1, 71, -1, -1, -1, -1, -1, -1,
-1, 79, 80, 81, -1, -1, -1, -1, -1, 87,
88, 89, -1, -1, -1, -1, 94, -1, -1, -1,
98, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 110, 1, 112, 3, 4, 5, 6, 7,
8, 9, 10, 11, -1, 13, 14, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 29, 30, 31, 32, 33, -1, 35, 36, 37,
-1, 39, 40, 41, 42, 43, 44, -1, 46, -1,
-1, -1, 50, 51, 52, 53, 54, 55, -1, 57,
58, 59, -1, 61, 62, -1, -1, -1, -1, -1,
68, -1, -1, 71, -1, -1, -1, -1, -1, -1,
-1, 79, 80, 81, -1, -1, -1, -1, -1, 87,
88, 89, -1, -1, -1, 1, 94, 3, 4, 5,
6, -1, 8, 9, 10, 11, -1, 13, 14, -1,
-1, -1, -1, -1, 112, -1, -1, -1, -1, -1,
-1, -1, -1, 29, 30, 31, -1, 33, -1, 35,
36, 37, -1, 39, 40, 41, 42, 43, 44, -1,
46, -1, -1, -1, 50, 51, 52, 53, 54, 55,
-1, 57, 58, 59, -1, -1, 62, -1, -1, -1,
-1, -1, 68, -1, -1, 71, -1, -1, -1, -1,
-1, -1, -1, 79, 80, 81, -1, -1, -1, -1,
-1, 87, 88, 89, -1, -1, -1, -1, 94, 95,
1, -1, 3, 4, 5, 6, -1, 8, 9, 10,
11, -1, 13, 14, -1, 111, 112, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 29, 30,
31, -1, 33, -1, 35, 36, 37, -1, 39, 40,
41, 42, 43, 44, -1, 46, -1, -1, -1, 50,
51, 52, 53, 54, 55, -1, 57, 58, 59, -1,
-1, 62, -1, -1, -1, -1, -1, 68, -1, -1,
71, -1, -1, -1, -1, -1, -1, -1, 79, 80,
81, -1, -1, -1, -1, -1, 87, 88, 89, -1,
-1, -1, -1, 94, 95, 1, -1, 3, 4, 5,
6, -1, 8, 9, 10, 11, -1, 13, 14, -1,
-1, 112, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 29, 30, 31, -1, 33, -1, 35,
36, 37, -1, 39, 40, 41, 42, 43, 44, -1,
46, -1, -1, -1, 50, 51, 52, 53, 54, 55,
-1, 57, 58, 59, -1, -1, 62, -1, -1, -1,
-1, -1, 68, -1, -1, 71, -1, -1, -1, -1,
-1, -1, -1, 79, 80, 81, -1, -1, -1, -1,
-1, 87, 88, 89, -1, -1, -1, 1, 94, 3,
4, 5, 6, -1, 8, 9, 10, 11, -1, 13,
14, -1, -1, -1, -1, 111, 112, -1, -1, -1,
-1, -1, -1, -1, -1, 29, 30, 31, -1, 33,
-1, 35, 36, 37, -1, 39, 40, 41, 42, 43,
44, -1, 46, -1, -1, -1, 50, 51, 52, 53,
54, 55, -1, 57, 58, 59, -1, -1, 62, -1,
-1, -1, -1, -1, 68, -1, -1, 71, -1, -1,
-1, -1, -1, -1, -1, 79, 80, 81, -1, -1,
-1, -1, -1, 87, 88, 89, -1, -1, -1, 1,
94, 3, 4, 5, 6, -1, 8, 9, 10, 11,
-1, 13, 14, -1, -1, -1, -1, 111, 112, -1,
-1, -1, -1, -1, -1, -1, -1, 29, 30, 31,
-1, 33, -1, 35, 36, 37, -1, 39, 40, 41,
42, 43, 44, -1, 46, -1, -1, -1, 50, 51,
52, 53, 54, 55, -1, 57, 58, 59, -1, -1,
62, -1, -1, -1, -1, -1, 68, -1, -1, 71,
-1, -1, -1, -1, -1, -1, -1, 79, 80, 81,
-1, -1, -1, -1, -1, 87, 88, 89, -1, -1,
-1, -1, 94, -1, -1, 1, -1, 3, 4, 5,
6, 103, 8, 9, 10, 11, -1, 13, 14, -1,
112, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 29, 30, 31, -1, 33, -1, 35,
36, 37, -1, 39, 40, 41, 42, 43, 44, -1,
46, -1, -1, -1, 50, 51, 52, 53, 54, 55,
-1, 57, 58, 59, -1, -1, 62, -1, -1, -1,
-1, -1, 68, -1, -1, 71, -1, -1, -1, -1,
-1, -1, -1, 79, 80, 81, -1, -1, -1, -1,
-1, 87, 88, 89, -1, -1, -1, 1, 94, 3,
4, 5, 6, -1, 8, 9, 10, 11, -1, 13,
14, -1, -1, -1, -1, -1, 112, -1, -1, -1,
-1, -1, -1, -1, -1, 29, 30, 31, -1, 33,
-1, 35, 36, 37, -1, 39, 40, 41, 42, 43,
44, -1, 46, -1, -1, -1, 50, 51, 52, 53,
54, 55, -1, 57, 58, 59, -1, -1, 62, -1,
-1, -1, -1, -1, 68, -1, -1, 71, -1, -1,
-1, -1, -1, -1, -1, 79, 80, 81, -1, -1,
-1, -1, -1, 87, 88, 89, -1, -1, -1, 1,
94, 3, 4, 5, 6, -1, 8, 9, 10, 11,
-1, 13, 14, -1, -1, -1, -1, -1, 112, -1,
-1, -1, -1, -1, -1, -1, -1, 29, 30, 31,
-1, 33, -1, 35, 36, 37, -1, 39, 40, 41,
42, 43, 44, -1, 46, -1, -1, -1, 50, 51,
52, 53, 54, 55, -1, 57, 58, -1, -1, -1,
62, 63, -1, -1, -1, -1, 68, -1, -1, 71,
-1, -1, -1, -1, -1, -1, -1, 79, 80, 81,
-1, -1, -1, -1, -1, 87, 88, 89, -1, -1,
-1, 1, 94, 3, 4, 5, 6, -1, 8, 9,
10, 11, -1, 13, 14, -1, -1, -1, -1, -1,
112, -1, -1, -1, -1, -1, -1, -1, -1, 29,
30, 31, -1, 33, -1, 35, 36, 37, -1, 39,
40, 41, 42, 43, 44, -1, 46, -1, -1, -1,
50, 51, 52, 53, 54, 55, -1, 57, 58, 59,
-1, -1, 62, -1, -1, -1, -1, -1, 68, -1,
-1, 71, -1, -1, -1, -1, -1, -1, -1, 79,
80, 81, -1, -1, -1, -1, -1, 87, 88, 89,
-1, -1, -1, 1, 94, 3, 4, 5, 6, -1,
8, 9, 10, 11, -1, 13, 14, -1, -1, -1,
-1, -1, 112, -1, -1, -1, -1, -1, -1, -1,
-1, 29, 30, 31, -1, 33, -1, 35, 36, 37,
-1, 39, 40, 41, 42, 43, 44, -1, 46, -1,
-1, -1, 50, 51, 52, 53, 54, 55, -1, 57,
58, -1, -1, 61, 62, -1, -1, -1, -1, -1,
68, -1, -1, 71, -1, -1, -1, -1, -1, -1,
-1, 79, 80, 81, -1, -1, -1, -1, -1, 87,
88, 89, -1, -1, -1, 1, 94, 3, 4, 5,
6, -1, 8, 9, 10, 11, -1, 13, 14, -1,
-1, -1, -1, -1, 112, -1, -1, -1, -1, -1,
-1, -1, -1, 29, 30, 31, -1, 33, -1, 35,
36, 37, -1, 39, 40, 41, 42, 43, 44, -1,
46, -1, -1, -1, 50, 51, 52, 53, 54, 55,
-1, 57, 58, -1, -1, -1, 62, -1, -1, -1,
-1, -1, 68, -1, -1, 71, -1, -1, -1, -1,
-1, -1, -1, 79, 80, 81, -1, -1, -1, -1,
-1, 87, 88, 89, -1, -1, -1, 1, 94, 3,
4, 5, 6, -1, 8, 9, 10, 11, -1, 13,
14, -1, -1, -1, 110, -1, 112, -1, -1, -1,
-1, -1, -1, -1, -1, 29, 30, 31, -1, 33,
-1, 35, 36, 37, -1, 39, 40, 41, 42, 43,
44, -1, 46, -1, -1, -1, 50, 51, 52, 53,
54, 55, -1, 57, 58, -1, -1, -1, 62, -1,
-1, -1, -1, -1, 68, -1, -1, 71, -1, -1,
-1, -1, -1, -1, -1, 79, 80, 81, -1, -1,
-1, -1, -1, 87, 88, 89, -1, -1, -1, 1,
94, 3, 4, 5, 6, -1, 8, 9, 10, 11,
-1, 13, 14, -1, -1, -1, -1, -1, 112, -1,
-1, -1, -1, -1, -1, -1, -1, 29, 30, 31,
-1, 33, -1, 35, 36, 37, -1, 39, 40, 41,
42, 43, 44, -1, 46, -1, -1, -1, 50, 51,
52, 53, 54, 55, -1, 57, 58, -1, -1, -1,
62, -1, -1, -1, -1, -1, 68, -1, -1, 71,
-1, -1, -1, -1, -1, -1, -1, 79, 80, 81,
-1, -1, -1, -1, -1, 87, 88, 89, -1, -1,
-1, 1, 94, 3, 4, 5, 6, -1, 8, 9,
10, 11, -1, 13, 14, -1, -1, -1, -1, -1,
112, -1, -1, -1, -1, -1, -1, -1, -1, 29,
30, 31, -1, 33, -1, 35, 36, 37, -1, 39,
40, 41, 42, 43, 44, -1, 46, -1, -1, -1,
50, 51, 52, 53, 54, 55, -1, 57, 58, -1,
-1, -1, 62, -1, -1, -1, -1, -1, 68, -1,
-1, 71, -1, -1, -1, -1, -1, -1, -1, 79,
80, 81, -1, -1, -1, -1, -1, 87, 88, 89,
3, 4, 5, 6, 94, 8, 9, 10, 11, -1,
13, 14, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 112, -1, -1, -1, 29, 30, 31, -1,
33, -1, 35, 36, 37, -1, 39, 40, 41, 42,
43, 44, -1, 46, -1, -1, -1, 50, 51, 52,
53, 54, 55, -1, 57, 58, -1, -1, -1, 62,
-1, -1, -1, -1, -1, 68, -1, -1, 71, -1,
-1, -1, -1, -1, -1, -1, 79, 80, 81, -1,
-1, -1, -1, -1, 87, 88, 89, -1, -1, -1,
-1, 94, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 112,
113, 3, 4, 5, 6, 7, 8, 9, 10, 11,
-1, 13, 14, 15, -1, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
32, 33, -1, 35, 36, 37, -1, 39, 40, 41,
42, 43, 44, -1, 46, -1, -1, -1, 50, 51,
52, 53, 54, 55, -1, 57, 58, 59, -1, 61,
62, -1, -1, -1, -1, -1, 68, -1, -1, 71,
-1, -1, -1, -1, -1, -1, -1, 79, 80, 81,
-1, -1, -1, -1, -1, 87, 88, 89, -1, -1,
-1, -1, 94, -1, 96, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 111,
112, 3, 4, 5, 6, 7, 8, 9, 10, 11,
-1, 13, 14, 15, -1, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
32, 33, -1, 35, 36, 37, -1, 39, 40, 41,
42, 43, 44, -1, 46, -1, -1, -1, 50, 51,
52, 53, 54, 55, -1, 57, 58, 59, -1, 61,
62, -1, -1, -1, -1, -1, 68, -1, -1, 71,
-1, -1, -1, -1, -1, -1, -1, 79, 80, 81,
-1, -1, -1, -1, -1, 87, 88, 89, -1, -1,
-1, -1, 94, -1, 96, -1, -1, 3, 4, 5,
6, 7, 8, 9, 10, 11, -1, 13, 14, 15,
112, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, 28, 29, 30, 31, 32, 33, -1, 35,
36, 37, -1, 39, 40, 41, 42, 43, 44, -1,
46, -1, -1, -1, 50, 51, 52, 53, 54, 55,
-1, 57, 58, 59, -1, 61, 62, -1, -1, -1,
-1, -1, 68, -1, -1, 71, -1, -1, -1, -1,
-1, -1, -1, 79, 80, 81, -1, -1, -1, -1,
-1, 87, 88, 89, -1, -1, -1, -1, 94, -1,
96, -1, -1, 3, 4, 5, 6, 7, 8, 9,
10, 11, -1, 13, 14, 15, 112, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
30, 31, 32, 33, -1, 35, 36, 37, -1, 39,
40, 41, 42, 43, 44, -1, 46, -1, -1, -1,
50, 51, 52, 53, 54, 55, -1, 57, 58, -1,
-1, 61, 62, -1, -1, -1, -1, -1, 68, -1,
-1, 71, -1, -1, -1, -1, -1, -1, -1, 79,
80, 81, -1, -1, -1, -1, -1, 87, 88, 89,
-1, -1, -1, -1, 94, -1, 96, 3, 4, 5,
6, 7, 8, 9, 10, 11, 12, 13, 14, -1,
-1, -1, 112, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 29, 30, 31, 32, 33, -1, 35,
36, 37, -1, 39, 40, 41, 42, 43, 44, -1,
46, -1, 48, -1, 50, 51, 52, 53, 54, 55,
-1, 57, 58, -1, -1, -1, 62, -1, -1, -1,
-1, -1, 68, -1, -1, 71, -1, -1, -1, -1,
-1, -1, -1, 79, 80, 81, -1, -1, -1, -1,
-1, 87, 88, 89, -1, 91, -1, -1, 94, 95,
-1, -1, 98, 3, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, -1, 112, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 29,
30, 31, 32, 33, -1, 35, 36, 37, -1, 39,
40, 41, 42, 43, 44, -1, 46, -1, 48, -1,
50, 51, 52, 53, 54, 55, -1, 57, 58, -1,
-1, -1, 62, -1, -1, -1, -1, -1, 68, -1,
-1, 71, -1, -1, -1, -1, -1, -1, -1, 79,
80, 81, -1, -1, -1, -1, -1, 87, 88, 89,
-1, 91, -1, -1, 94, 95, -1, -1, 98, 3,
4, 5, 6, -1, 8, 9, 10, 11, -1, 13,
14, -1, 112, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 29, 30, 31, -1, 33,
-1, 35, 36, 37, -1, 39, 40, 41, 42, 43,
44, -1, 46, -1, 48, -1, 50, 51, 52, 53,
54, 55, -1, 57, 58, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 68, -1, -1, 71, -1, -1,
-1, -1, -1, -1, -1, 79, 80, 81, -1, -1,
-1, -1, -1, 87, 88, 89, -1, 91, -1, -1,
94, 95, 3, 4, 5, 6, -1, 8, 9, 10,
11, -1, 13, 14, -1, -1, -1, -1, 112, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 29, 30,
31, -1, 33, -1, 35, 36, 37, -1, 39, 40,
41, 42, 43, 44, -1, 46, -1, 48, -1, 50,
51, 52, 53, 54, 55, -1, 57, 58, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 68, -1, -1,
71, -1, -1, -1, -1, -1, -1, -1, 79, 80,
81, -1, -1, -1, -1, -1, 87, 88, 89, -1,
91, -1, -1, 94, 95, 3, 4, 5, 6, -1,
8, 9, 10, 11, -1, 13, 14, -1, -1, -1,
-1, 112, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 29, 30, 31, -1, 33, -1, 35, 36, 37,
-1, 39, 40, 41, 42, 43, 44, -1, 46, -1,
-1, -1, 50, 51, 52, 53, 54, 55, -1, 57,
58, -1, -1, 61, 62, -1, -1, -1, -1, -1,
68, -1, -1, 71, -1, -1, -1, -1, -1, -1,
-1, 79, 80, 81, -1, -1, -1, -1, -1, 87,
88, 89, -1, -1, -1, -1, 94, 3, 4, 5,
6, 7, 8, 9, 10, 11, -1, 13, 14, -1,
-1, -1, -1, -1, 112, -1, -1, -1, -1, -1,
-1, -1, -1, 29, 30, 31, 32, 33, -1, 35,
36, 37, -1, 39, 40, 41, 42, 43, 44, -1,
46, -1, -1, -1, 50, 51, 52, 53, 54, 55,
-1, 57, 58, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 68, -1, -1, 71, -1, -1, -1, -1,
-1, -1, -1, 79, 80, 81, -1, -1, -1, -1,
-1, 87, 88, 89, 3, 4, 5, 6, 94, 8,
9, 10, 11, -1, 13, 14, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 112, -1, -1, -1,
29, 30, 31, -1, 33, -1, 35, 36, 37, -1,
39, 40, 41, 42, 43, 44, -1, 46, -1, -1,
-1, 50, 51, 52, 53, 54, 55, -1, 57, 58,
-1, -1, -1, 62, -1, -1, -1, -1, -1, 68,
-1, -1, 71, -1, -1, -1, -1, -1, -1, -1,
79, 80, 81, -1, -1, -1, -1, -1, 87, 88,
89, 3, 4, 5, 6, 94, 8, 9, 10, 11,
-1, 13, 14, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 112, -1, -1, -1, 29, 30, 31,
-1, 33, -1, 35, 36, 37, -1, 39, 40, 41,
42, 43, 44, -1, 46, -1, -1, -1, 50, 51,
52, 53, 54, 55, -1, 57, 58, -1, -1, -1,
62, -1, -1, -1, -1, -1, 68, -1, -1, 71,
-1, -1, -1, -1, -1, -1, -1, 79, 80, 81,
-1, -1, -1, -1, -1, 87, 88, 89, 3, 4,
5, 6, 94, 8, 9, 10, 11, -1, 13, 14,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
112, -1, -1, -1, 29, 30, 31, -1, 33, -1,
35, 36, 37, -1, 39, 40, 41, 42, 43, 44,
-1, 46, -1, -1, -1, 50, 51, 52, 53, 54,
55, -1, 57, 58, 59, -1, -1, -1, -1, -1,
-1, -1, -1, 68, -1, -1, 71, -1, -1, -1,
-1, -1, -1, -1, 79, 80, 81, -1, -1, -1,
-1, -1, 87, 88, 89, 3, 4, 5, 6, 94,
8, 9, 10, 11, -1, 13, 14, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 112, -1, -1,
-1, 29, 30, 31, -1, 33, -1, 35, 36, 37,
-1, 39, 40, 41, 42, 43, 44, -1, 46, -1,
-1, -1, 50, 51, 52, 53, 54, 55, -1, 57,
58, -1, -1, -1, -1, -1, -1, -1, -1, -1,
68, -1, -1, 71, -1, -1, -1, -1, -1, -1,
-1, 79, 80, 81, -1, -1, -1, -1, -1, 87,
88, 89, -1, -1, -1, -1, 94, 95, 3, 4,
5, 6, -1, 8, 9, 10, 11, -1, 13, 14,
-1, -1, -1, -1, 112, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 29, 30, 31, -1, 33, -1,
35, 36, 37, -1, 39, 40, 41, 42, 43, 44,
-1, 46, -1, -1, -1, 50, 51, 52, 53, 54,
55, -1, 57, 58, -1, -1, -1, 62, -1, -1,
-1, -1, -1, 68, -1, -1, 71, -1, -1, -1,
-1, -1, -1, -1, 79, 80, 81, -1, -1, -1,
-1, -1, 87, 88, 89, 3, 4, 5, 6, 94,
8, 9, 10, 11, -1, 13, 14, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 112, -1, -1,
-1, 29, 30, 31, -1, 33, -1, 35, 36, 37,
-1, 39, 40, 41, 42, 43, 44, -1, 46, -1,
-1, -1, 50, 51, 52, 53, 54, 55, -1, 57,
58, -1, -1, -1, 62, -1, -1, -1, -1, -1,
68, -1, -1, 71, -1, -1, -1, -1, -1, -1,
-1, 79, 80, 81, -1, -1, -1, -1, -1, 87,
88, 89, 3, 4, 5, 6, 94, 8, 9, 10,
11, -1, 13, 14, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 112, -1, -1, -1, 29, 30,
31, -1, 33, -1, 35, 36, 37, -1, 39, 40,
41, 42, 43, 44, -1, 46, -1, -1, -1, 50,
51, 52, 53, 54, 55, -1, 57, 58, -1, -1,
-1, 62, -1, -1, -1, -1, -1, 68, -1, -1,
71, -1, -1, -1, -1, -1, -1, -1, 79, 80,
81, -1, -1, -1, -1, -1, 87, 88, 89, 3,
4, 5, 6, 94, 8, 9, 10, 11, -1, 13,
14, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 112, -1, -1, -1, 29, 30, 31, -1, 33,
-1, 35, 36, 37, -1, 39, 40, 41, 42, 43,
44, -1, 46, -1, -1, -1, 50, 51, 52, 53,
54, 55, -1, 57, 58, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 68, -1, -1, 71, -1, -1,
-1, -1, -1, -1, -1, 79, 80, 81, -1, -1,
-1, -1, -1, 87, 88, 89, 3, 4, 5, 6,
94, 8, 9, 10, 11, -1, 13, 14, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 112, -1,
-1, -1, 29, 30, 31, -1, 33, -1, 35, 36,
37, -1, 39, 40, 41, 42, 43, 44, -1, 46,
-1, -1, -1, 50, 51, 52, 53, 54, 55, -1,
57, 58, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 68, -1, -1, 71, -1, -1, -1, -1, -1,
-1, -1, 79, 80, 81, -1, -1, -1, -1, -1,
87, 88, 89, 3, 4, 5, 6, 94, 8, 9,
10, 11, -1, 13, 14, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 112, -1, -1, -1, 29,
30, 31, -1, 33, -1, 35, 36, 37, -1, 39,
40, 41, 42, 43, 44, -1, 46, -1, -1, -1,
50, 51, 52, 53, 54, 55, -1, 57, 58, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 68, -1,
-1, 71, -1, -1, -1, -1, -1, -1, -1, 79,
80, 81, -1, -1, -1, -1, -1, 87, 88, 89,
3, 4, 5, 6, 94, 8, 9, 10, 11, -1,
13, 14, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 112, -1, -1, -1, 29, 30, 31, -1,
33, -1, 35, 36, 37, -1, 39, 40, 41, 42,
43, 44, -1, 46, -1, -1, -1, 50, 51, 52,
53, 54, 55, -1, 57, 58, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 68, -1, -1, 71, -1,
-1, -1, -1, -1, -1, -1, 79, 80, 81, -1,
-1, -1, -1, -1, 87, 88, 89, 3, 4, 5,
6, 94, 8, 9, 10, 11, -1, 13, 14, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 112,
-1, -1, -1, 29, 30, 31, -1, 33, -1, 35,
36, 37, -1, 39, 40, 41, 42, 43, 44, -1,
46, -1, -1, -1, 50, 51, 52, 53, 54, 55,
-1, 57, 58, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 68, -1, 1, 71, 3, 4, 5, 6,
7, 8, 9, 79, 80, 81, -1, 14, -1, -1,
-1, 87, 88, 89, -1, -1, -1, -1, 94, -1,
-1, -1, 29, -1, 31, 32, -1, -1, -1, -1,
37, -1, -1, -1, -1, 42, 112, -1, -1, 46,
-1, -1, 49, -1, -1, -1, -1, -1, 55, -1,
57, 58, -1, -1, 61, 3, 4, 5, 6, 7,
8, 9, -1, -1, 71, -1, 14, -1, -1, -1,
-1, -1, -1, -1, 81, -1, -1, -1, -1, -1,
-1, 29, 89, 31, 32, -1, -1, 94, -1, 37,
-1, -1, -1, -1, 42, -1, -1, -1, 46, -1,
48, -1, -1, -1, -1, -1, -1, 55, -1, 57,
58, 3, 4, 5, 6, 7, 8, 9, -1, -1,
-1, -1, 14, 71, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 81, -1, -1, -1, 29, -1, 31,
32, 89, -1, 91, -1, 37, 94, 95, -1, -1,
42, -1, -1, -1, 46, -1, 3, 4, 5, 6,
7, 8, 9, 55, -1, 57, 58, 14, -1, 61,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 71,
-1, -1, 29, -1, 31, 32, -1, -1, -1, 81,
37, -1, -1, -1, -1, 42, -1, 89, -1, 46,
-1, -1, 94, -1, -1, -1, -1, -1, 55, -1,
57, 58, -1, -1, -1, -1, 63, 3, 4, 5,
6, 7, 8, 9, 71, -1, -1, -1, 14, -1,
-1, -1, -1, -1, 81, -1, -1, -1, -1, -1,
-1, -1, 89, 29, -1, 31, 32, 94, -1, -1,
-1, 37, -1, -1, -1, -1, 42, -1, -1, -1,
46, -1, 3, 4, 5, 6, 7, 8, 9, 55,
-1, 57, 58, 14, -1, 61, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 71, -1, -1, 29, -1,
31, 32, -1, -1, -1, 81, 37, -1, -1, -1,
-1, 42, -1, 89, -1, 46, -1, -1, 94, -1,
-1, -1, -1, -1, 55, -1, 57, 58, 3, 4,
5, 6, 7, 8, 9, -1, -1, -1, -1, 14,
71, -1, -1, -1, -1, -1, -1, -1, -1, -1,
81, -1, -1, -1, 29, -1, 31, 32, 89, -1,
-1, -1, 37, 94, -1, -1, -1, 42, -1, -1,
-1, 46, -1, 3, 4, 5, 6, 7, 8, 9,
55, -1, 57, 58, 14, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 71, -1, -1, -1,
-1, -1, 32, -1, -1, -1, 81, 37, -1, -1,
-1, -1, 42, -1, 89, 12, 46, -1, 48, 94,
-1, -1, -1, -1, -1, 55, -1, 57, 58, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 71, 77, 78, 79, 80, 81, 82, 83, 84,
85, 81, -1, -1, -1, -1, -1, 32, -1, 89,
-1, -1, -1, -1, 94, -1, 63, 64, 65, 66,
67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
77, 78, 79, 80, 81, 82, 83, 84, 85, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
85, 64, 65, 66, 67, 68, 69, 70, 71, 72,
73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
83, 84, 85, 64, 65, 66, 67, 68, 69, 70,
71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
81, 82, 83, 84, 85, -1, -1, -1, -1, -1,
113, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 60, -1, -1, 109, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
85, 63, 64, 65, 66, 67, 68, 69, 70, 71,
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
82, 83, 84, 85, 64, 65, 66, 67, 68, 69,
70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
80, 81, 82, 83, 84, 85
};
/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
#line 3 "/usr/cygnus/latest-940103/share/bison.simple"
/* Skeleton output parser for bison,
Copyright (C) 1984, 1989, 1990 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 2, 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, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* As a special exception, when this file is copied by Bison into a
Bison output file, you may use that output file without restriction.
This special exception was added by the Free Software Foundation
in version 1.24 of Bison. */
#ifndef alloca
#ifdef __GNUC__
#define alloca __builtin_alloca
#else /* not GNU C. */
#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
#include <alloca.h>
#else /* not sparc */
#if defined (MSDOS) && !defined (__TURBOC__)
#include <malloc.h>
#else /* not MSDOS, or __TURBOC__ */
#if defined(_AIX)
#include <malloc.h>
#pragma alloca
#else /* not MSDOS, __TURBOC__, or _AIX */
#ifdef __hpux
#ifdef __cplusplus
extern "C" {
void *alloca (unsigned int);
};
#else /* not __cplusplus */
void *alloca ();
#endif /* not __cplusplus */
#endif /* __hpux */
#endif /* not _AIX */
#endif /* not MSDOS, or __TURBOC__ */
#endif /* not sparc. */
#endif /* not GNU C. */
#endif /* alloca not defined. */
/* This is the parser code that is written into each bison parser
when the %semantic_parser declaration is not specified in the grammar.
It was written by Richard Stallman by simplifying the hairy parser
used when %semantic_parser is specified. */
/* Note: there must be only one dollar sign in this file.
It is replaced by the list of actions, each action
as one case of the switch. */
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYEMPTY -2
#define YYEOF 0
#define YYACCEPT return(0)
#define YYABORT return(1)
#define YYERROR goto yyerrlab1
/* 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. */
#define YYFAIL goto yyerrlab
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(token, value) \
do \
if (yychar == YYEMPTY && yylen == 1) \
{ yychar = (token), yylval = (value); \
yychar1 = YYTRANSLATE (yychar); \
YYPOPSTACK; \
goto yybackup; \
} \
else \
{ yyerror ("syntax error: cannot back up"); YYERROR; } \
while (0)
#define YYTERROR 1
#define YYERRCODE 256
#ifndef YYPURE
#define YYLEX yylex()
#endif
#ifdef YYPURE
#ifdef YYLSP_NEEDED
#ifdef YYLEX_PARAM
#define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM)
#else
#define YYLEX yylex(&yylval, &yylloc)
#endif
#else /* not YYLSP_NEEDED */
#ifdef YYLEX_PARAM
#define YYLEX yylex(&yylval, YYLEX_PARAM)
#else
#define YYLEX yylex(&yylval)
#endif
#endif /* not YYLSP_NEEDED */
#endif
/* If nonreentrant, generate the variables here */
#ifndef YYPURE
int yychar; /* the lookahead symbol */
YYSTYPE yylval; /* the semantic value of the */
/* lookahead symbol */
#ifdef YYLSP_NEEDED
YYLTYPE yylloc; /* location data for the lookahead */
/* symbol */
#endif
int yynerrs; /* number of parse errors so far */
#endif /* not YYPURE */
#if YYDEBUG != 0
int yydebug; /* nonzero means print parse trace */
/* Since this is uninitialized, it does not stop multiple parsers
from coexisting. */
#endif
/* YYINITDEPTH indicates the initial size of the parser's stacks */
#ifndef YYINITDEPTH
#define YYINITDEPTH 200
#endif
/* YYMAXDEPTH is the maximum size the stacks can grow to
(effective only if the built-in stack extension method is used). */
#if YYMAXDEPTH == 0
#undef YYMAXDEPTH
#endif
#ifndef YYMAXDEPTH
#define YYMAXDEPTH 10000
#endif
/* Prevent warning if -Wstrict-prototypes. */
#ifdef __GNUC__
int yyparse (void);
#endif
#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
#define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT)
#else /* not GNU C or C++ */
#ifndef __cplusplus
/* This is the most reliable way to avoid incompatibilities
in available built-in functions on various systems. */
static void
__yy_memcpy (to, from, count)
char *to;
char *from;
int count;
{
register char *f = from;
register char *t = to;
register int i = count;
while (i-- > 0)
*t++ = *f++;
}
#else /* __cplusplus */
/* This is the most reliable way to avoid incompatibilities
in available built-in functions on various systems. */
static void
__yy_memcpy (char *to, char *from, int count)
{
register char *f = from;
register char *t = to;
register int i = count;
while (i-- > 0)
*t++ = *f++;
}
#endif
#endif
#line 196 "/usr/cygnus/latest-940103/share/bison.simple"
/* The user can define YYPARSE_PARAM as the name of an argument to be passed
into yyparse. The argument should have type void *.
It should actually point to an object.
Grammar actions can access the variable by casting it
to the proper pointer type. */
#ifdef YYPARSE_PARAM
#ifdef __cplusplus
#define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
#define YYPARSE_PARAM_DECL
#else /* not __cplusplus */
#define YYPARSE_PARAM_ARG YYPARSE_PARAM
#define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
#endif /* not __cplusplus */
#else /* not YYPARSE_PARAM */
#define YYPARSE_PARAM_ARG
#define YYPARSE_PARAM_DECL
#endif /* not YYPARSE_PARAM */
int
yyparse(YYPARSE_PARAM_ARG)
YYPARSE_PARAM_DECL
{
register int yystate;
register int yyn;
register short *yyssp;
register YYSTYPE *yyvsp;
int yyerrstatus; /* number of tokens to shift before error messages enabled */
int yychar1 = 0; /* lookahead token as an internal (translated) token number */
short yyssa[YYINITDEPTH]; /* the state stack */
YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */
short *yyss = yyssa; /* refer to the stacks thru separate pointers */
YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */
#ifdef YYLSP_NEEDED
YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */
YYLTYPE *yyls = yylsa;
YYLTYPE *yylsp;
#define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
#else
#define YYPOPSTACK (yyvsp--, yyssp--)
#endif
int yystacksize = YYINITDEPTH;
#ifdef YYPURE
int yychar;
YYSTYPE yylval;
int yynerrs;
#ifdef YYLSP_NEEDED
YYLTYPE yylloc;
#endif
#endif
YYSTYPE yyval; /* the variable used to return */
/* semantic values from the action */
/* routines */
int yylen;
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Starting parse\n");
#endif
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 - 1;
yyvsp = yyvs;
#ifdef YYLSP_NEEDED
yylsp = yyls;
#endif
/* Push a new state, which is found in yystate . */
/* In all cases, when you get here, the value and location stacks
have just been pushed. so pushing a state here evens the stacks. */
yynewstate:
*++yyssp = yystate;
if (yyssp >= yyss + yystacksize - 1)
{
/* 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;
short *yyss1 = yyss;
#ifdef YYLSP_NEEDED
YYLTYPE *yyls1 = yyls;
#endif
/* Get the current used size of the three stacks, in elements. */
int size = yyssp - yyss + 1;
#ifdef yyoverflow
/* Each stack pointer address is followed by the size of
the data in use in that stack, in bytes. */
#ifdef YYLSP_NEEDED
/* This used to be a conditional around just the two extra args,
but that might be undefined if yyoverflow is a macro. */
yyoverflow("parser stack overflow",
&yyss1, size * sizeof (*yyssp),
&yyvs1, size * sizeof (*yyvsp),
&yyls1, size * sizeof (*yylsp),
&yystacksize);
#else
yyoverflow("parser stack overflow",
&yyss1, size * sizeof (*yyssp),
&yyvs1, size * sizeof (*yyvsp),
&yystacksize);
#endif
yyss = yyss1; yyvs = yyvs1;
#ifdef YYLSP_NEEDED
yyls = yyls1;
#endif
#else /* no yyoverflow */
/* Extend the stack our own way. */
if (yystacksize >= YYMAXDEPTH)
{
yyerror("parser stack overflow");
return 2;
}
yystacksize *= 2;
if (yystacksize > YYMAXDEPTH)
yystacksize = YYMAXDEPTH;
yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
__yy_memcpy ((char *)yyss, (char *)yyss1, size * sizeof (*yyssp));
yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
__yy_memcpy ((char *)yyvs, (char *)yyvs1, size * sizeof (*yyvsp));
#ifdef YYLSP_NEEDED
yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
__yy_memcpy ((char *)yyls, (char *)yyls1, size * sizeof (*yylsp));
#endif
#endif /* no yyoverflow */
yyssp = yyss + size - 1;
yyvsp = yyvs + size - 1;
#ifdef YYLSP_NEEDED
yylsp = yyls + size - 1;
#endif
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Stack size increased to %d\n", yystacksize);
#endif
if (yyssp >= yyss + yystacksize - 1)
YYABORT;
}
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Entering state %d\n", yystate);
#endif
goto yybackup;
yybackup:
/* Do appropriate processing given the current state. */
/* Read a lookahead token if we need one and don't already have one. */
/* yyresume: */
/* First try to decide what to do without reference to lookahead token. */
yyn = yypact[yystate];
if (yyn == YYFLAG)
goto yydefault;
/* Not known => get a lookahead token if don't already have one. */
/* yychar is either YYEMPTY or YYEOF
or a valid token in external form. */
if (yychar == YYEMPTY)
{
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Reading a token: ");
#endif
yychar = YYLEX;
}
/* Convert token to internal form (in yychar1) for indexing tables with */
if (yychar <= 0) /* This means end of input. */
{
yychar1 = 0;
yychar = YYEOF; /* Don't call YYLEX any more */
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Now at end of input.\n");
#endif
}
else
{
yychar1 = YYTRANSLATE(yychar);
#if YYDEBUG != 0
if (yydebug)
{
fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
/* Give the individual parser a way to print the precise meaning
of a token, for further debugging info. */
#ifdef YYPRINT
YYPRINT (stderr, yychar, yylval);
#endif
fprintf (stderr, ")\n");
}
#endif
}
yyn += yychar1;
if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
goto yydefault;
yyn = yytable[yyn];
/* yyn is what to do for this token type in this state.
Negative => reduce, -yyn is rule number.
Positive => shift, yyn is new state.
New state is final state => don't bother to shift,
just return success.
0, or most negative number => error. */
if (yyn < 0)
{
if (yyn == YYFLAG)
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
else if (yyn == 0)
goto yyerrlab;
if (yyn == YYFINAL)
YYACCEPT;
/* Shift the lookahead token. */
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
#endif
/* Discard the token being shifted unless it is eof. */
if (yychar != YYEOF)
yychar = YYEMPTY;
*++yyvsp = yylval;
#ifdef YYLSP_NEEDED
*++yylsp = yylloc;
#endif
/* count tokens shifted since error; after three, turn off error status. */
if (yyerrstatus) yyerrstatus--;
yystate = yyn;
goto yynewstate;
/* Do the default action for the current state. */
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
/* Do a reduction. yyn is the number of a rule to reduce with. */
yyreduce:
yylen = yyr2[yyn];
if (yylen > 0)
yyval = yyvsp[1-yylen]; /* implement default value of the action */
#if YYDEBUG != 0
if (yydebug)
{
int i;
fprintf (stderr, "Reducing via rule %d (line %d), ",
yyn, yyrline[yyn]);
/* Print the symbols being reduced, and their result. */
for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
fprintf (stderr, "%s ", yytname[yyrhs[i]]);
fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
}
#endif
switch (yyn) {
case 2:
#line 331 "parse.y"
{
/* In case there were missing closebraces,
get us back to the global binding level. */
while (! global_bindings_p ())
poplevel (0, 0, 0);
finish_file ();
;
break;}
case 3:
#line 345 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 4:
#line 347 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 5:
#line 349 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 8:
#line 358 "parse.y"
{ have_extern_spec = 1;
used_extern_spec = 0;
yyval.ttype = NULL_TREE; ;
break;}
case 9:
#line 363 "parse.y"
{ have_extern_spec = 0; ;
break;}
case 10:
#line 368 "parse.y"
{ yyval.itype = pedantic;
pedantic = 0; ;
break;}
case 13:
#line 378 "parse.y"
{ if (pending_lang_change) do_pending_lang_change(); ;
break;}
case 14:
#line 380 "parse.y"
{ if (! toplevel_bindings_p () && ! pseudo_global_level_p())
pop_everything (); ;
break;}
case 15:
#line 386 "parse.y"
{ if (pending_inlines) do_pending_inlines (); ;
break;}
case 16:
#line 388 "parse.y"
{ if (pending_inlines) do_pending_inlines (); ;
break;}
case 17:
#line 390 "parse.y"
{ if (pending_inlines) do_pending_inlines (); ;
break;}
case 18:
#line 392 "parse.y"
{ if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
assemble_asm (yyvsp[-2].ttype); ;
break;}
case 19:
#line 395 "parse.y"
{ pop_lang_context (); ;
break;}
case 20:
#line 397 "parse.y"
{ if (pending_inlines) do_pending_inlines ();
pop_lang_context (); ;
break;}
case 21:
#line 400 "parse.y"
{ if (pending_inlines) do_pending_inlines ();
pop_lang_context (); ;
break;}
case 22:
#line 403 "parse.y"
{ push_namespace (yyvsp[-1].ttype); ;
break;}
case 23:
#line 405 "parse.y"
{ pop_namespace (); ;
break;}
case 24:
#line 407 "parse.y"
{ push_namespace (NULL_TREE); ;
break;}
case 25:
#line 409 "parse.y"
{ pop_namespace (); ;
break;}
case 26:
#line 411 "parse.y"
{ do_namespace_alias (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 27:
#line 413 "parse.y"
{ do_toplevel_using_decl (yyvsp[-1].ttype); ;
break;}
case 28:
#line 415 "parse.y"
{
if (TREE_CODE (yyvsp[-1].ttype) == IDENTIFIER_NODE)
yyvsp[-1].ttype = lastiddecl;
do_using_directive (yyvsp[-1].ttype);
;
break;}
case 29:
#line 421 "parse.y"
{ pedantic = yyvsp[-1].itype; ;
break;}
case 30:
#line 426 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 31:
#line 428 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 32:
#line 430 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 35:
#line 437 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 36:
#line 439 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 37:
#line 444 "parse.y"
{ push_lang_context (yyvsp[0].ttype); ;
break;}
case 38:
#line 446 "parse.y"
{ if (current_lang_name != yyvsp[0].ttype)
cp_error ("use of linkage spec `%D' is different from previous spec `%D'", yyvsp[0].ttype, current_lang_name);
pop_lang_context (); push_lang_context (yyvsp[0].ttype); ;
break;}
case 39:
#line 453 "parse.y"
{ begin_template_parm_list (); ;
break;}
case 40:
#line 455 "parse.y"
{ yyval.ttype = end_template_parm_list (yyvsp[-1].ttype); ;
break;}
case 41:
#line 457 "parse.y"
{ begin_specialization();
yyval.ttype = NULL_TREE; ;
break;}
case 42:
#line 463 "parse.y"
{ yyval.ttype = process_template_parm (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 43:
#line 465 "parse.y"
{ yyval.ttype = process_template_parm (yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 44:
#line 470 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 45:
#line 472 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 46:
#line 476 "parse.y"
{ yyval.ttype = finish_template_type_parm (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 47:
#line 478 "parse.y"
{ yyval.ttype = finish_template_type_parm (class_type_node, yyvsp[0].ttype); ;
break;}
case 48:
#line 483 "parse.y"
{ yyval.ttype = finish_template_template_parm (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 49:
#line 495 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 50:
#line 497 "parse.y"
{ yyval.ttype = build_tree_list (groktypename (yyvsp[0].ftype.t), yyvsp[-2].ttype); ;
break;}
case 51:
#line 499 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ftype.t); ;
break;}
case 52:
#line 501 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[0].ttype, yyvsp[-2].ftype.t); ;
break;}
case 53:
#line 503 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 54:
#line 505 "parse.y"
{
if (TREE_CODE (yyvsp[0].ttype) != TEMPLATE_DECL
&& TREE_CODE (yyvsp[0].ttype) != TEMPLATE_TEMPLATE_PARM
&& TREE_CODE (yyvsp[0].ttype) != TYPE_DECL)
{
error ("invalid default template argument");
yyvsp[0].ttype = error_mark_node;
}
yyval.ttype = build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype);
;
break;}
case 55:
#line 520 "parse.y"
{
if (yyvsp[-1].ttype)
end_template_decl ();
else
end_specialization ();
;
break;}
case 56:
#line 528 "parse.y"
{
if (yyvsp[-1].ttype)
end_template_decl ();
else
end_specialization ();
;
break;}
case 58:
#line 539 "parse.y"
{;
break;}
case 59:
#line 541 "parse.y"
{
note_list_got_semicolon (yyvsp[-2].ftype.t);
;
break;}
case 60:
#line 545 "parse.y"
{ pedwarn ("empty declaration"); ;
break;}
case 62:
#line 548 "parse.y"
{
tree t, attrs;
split_specs_attrs (yyvsp[-1].ftype.t, &t, &attrs);
shadow_tag (t);
note_list_got_semicolon (yyvsp[-1].ftype.t);
;
break;}
case 66:
#line 561 "parse.y"
{ yyval.itype = 0; ;
break;}
case 67:
#line 563 "parse.y"
{ yyval.itype = 1; ;
break;}
case 73:
#line 579 "parse.y"
{ finish_function (lineno, (int)yyvsp[-1].itype, 0); ;
break;}
case 74:
#line 581 "parse.y"
{ ;
break;}
case 75:
#line 583 "parse.y"
{ ;
break;}
case 76:
#line 588 "parse.y"
{ yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
break;}
case 77:
#line 590 "parse.y"
{ yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 78:
#line 592 "parse.y"
{ yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype);
yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype);
;
break;}
case 79:
#line 596 "parse.y"
{ yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
break;}
case 80:
#line 598 "parse.y"
{ yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 81:
#line 600 "parse.y"
{ yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype);
yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype);
;
break;}
case 82:
#line 604 "parse.y"
{ yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
break;}
case 83:
#line 606 "parse.y"
{ yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 84:
#line 608 "parse.y"
{ yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype);
yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype);
;
break;}
case 85:
#line 612 "parse.y"
{ yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
break;}
case 86:
#line 614 "parse.y"
{ yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 87:
#line 616 "parse.y"
{ yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype);
yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype);
;
break;}
case 88:
#line 623 "parse.y"
{ if (!begin_function_definition (yyvsp[-1].ftype.t, yyvsp[0].ttype))
YYERROR1; ;
break;}
case 89:
#line 626 "parse.y"
{ if (!begin_function_definition (yyvsp[-1].ttype, yyvsp[0].ttype))
YYERROR1; ;
break;}
case 90:
#line 629 "parse.y"
{ if (!begin_function_definition (NULL_TREE, yyvsp[0].ttype))
YYERROR1; ;
break;}
case 91:
#line 632 "parse.y"
{ if (!begin_function_definition (yyvsp[-1].ttype, yyvsp[0].ttype))
YYERROR1; ;
break;}
case 92:
#line 635 "parse.y"
{ if (!begin_function_definition (NULL_TREE, yyvsp[0].ttype))
YYERROR1; ;
break;}
case 93:
#line 641 "parse.y"
{ yyval.ttype = make_call_declarator (yyvsp[-5].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 94:
#line 643 "parse.y"
{ yyval.ttype = make_call_declarator (yyvsp[-3].ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 95:
#line 645 "parse.y"
{ yyval.ttype = make_call_declarator (yyvsp[-5].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 96:
#line 647 "parse.y"
{ yyval.ttype = make_call_declarator (yyvsp[-3].ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 97:
#line 654 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ttype);
yyval.ttype = start_method (specs, yyvsp[0].ttype);
rest_of_mdef:
if (! yyval.ttype)
YYERROR1;
if (yychar == YYEMPTY)
yychar = YYLEX;
reinit_parse_for_method (yychar, yyval.ttype); ;
break;}
case 98:
#line 663 "parse.y"
{ yyval.ttype = start_method (NULL_TREE, yyvsp[0].ttype); goto rest_of_mdef; ;
break;}
case 99:
#line 665 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ftype.t);
yyval.ttype = start_method (specs, yyvsp[0].ttype); goto rest_of_mdef; ;
break;}
case 100:
#line 668 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ttype);
yyval.ttype = start_method (specs, yyvsp[0].ttype); goto rest_of_mdef; ;
break;}
case 101:
#line 671 "parse.y"
{ yyval.ttype = start_method (NULL_TREE, yyval.ttype); goto rest_of_mdef; ;
break;}
case 102:
#line 673 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ttype);
yyval.ttype = start_method (specs, yyvsp[0].ttype); goto rest_of_mdef; ;
break;}
case 103:
#line 676 "parse.y"
{ yyval.ttype = start_method (NULL_TREE, yyval.ttype); goto rest_of_mdef; ;
break;}
case 104:
#line 681 "parse.y"
{
if (! current_function_parms_stored)
store_parm_decls ();
yyval.ttype = yyvsp[0].ttype;
;
break;}
case 105:
#line 690 "parse.y"
{ store_return_init (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 106:
#line 692 "parse.y"
{ store_return_init (yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 107:
#line 694 "parse.y"
{ store_return_init (yyval.ttype, NULL_TREE); ;
break;}
case 108:
#line 699 "parse.y"
{
if (yyvsp[0].itype == 0)
error ("no base initializers given following ':'");
setup_vtbl_ptr ();
/* Always keep the BLOCK node associated with the outermost
pair of curley braces of a function. These are needed
for correct operation of dwarfout.c. */
keep_next_level ();
;
break;}
case 109:
#line 712 "parse.y"
{
if (! current_function_parms_stored)
store_parm_decls ();
if (DECL_CONSTRUCTOR_P (current_function_decl))
{
/* Make a contour for the initializer list. */
pushlevel (0);
clear_last_expr ();
expand_start_bindings (0);
}
else if (current_class_type == NULL_TREE)
error ("base initializers not allowed for non-member functions");
else if (! DECL_CONSTRUCTOR_P (current_function_decl))
error ("only constructors take base initializers");
;
break;}
case 110:
#line 732 "parse.y"
{ yyval.itype = 0; ;
break;}
case 111:
#line 734 "parse.y"
{ yyval.itype = 1; ;
break;}
case 114:
#line 741 "parse.y"
{
if (current_class_name)
pedwarn ("anachronistic old style base class initializer");
expand_member_init (current_class_ref, NULL_TREE, yyvsp[-1].ttype);
;
break;}
case 115:
#line 747 "parse.y"
{
if (current_class_name)
pedwarn ("anachronistic old style base class initializer");
expand_member_init (current_class_ref, NULL_TREE, void_type_node);
;
break;}
case 116:
#line 753 "parse.y"
{ expand_member_init (current_class_ref, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 117:
#line 755 "parse.y"
{ expand_member_init (current_class_ref, yyvsp[-1].ttype, void_type_node); ;
break;}
case 118:
#line 757 "parse.y"
{ expand_member_init (current_class_ref, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 119:
#line 759 "parse.y"
{ expand_member_init (current_class_ref, yyvsp[-1].ttype, void_type_node); ;
break;}
case 120:
#line 761 "parse.y"
{ expand_member_init (current_class_ref, TYPE_MAIN_DECL (yyvsp[-3].ttype),
yyvsp[-1].ttype); ;
break;}
case 121:
#line 764 "parse.y"
{ expand_member_init (current_class_ref, TYPE_MAIN_DECL (yyvsp[-1].ttype),
void_type_node); ;
break;}
case 133:
#line 790 "parse.y"
{ do_type_instantiation (yyvsp[-1].ftype.t, NULL_TREE);
yyungetc (';', 1); ;
break;}
case 135:
#line 794 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ftype.t);
do_decl_instantiation (specs, yyvsp[0].ttype, NULL_TREE); ;
break;}
case 137:
#line 798 "parse.y"
{ do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
break;}
case 139:
#line 801 "parse.y"
{ do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
break;}
case 141:
#line 804 "parse.y"
{ do_type_instantiation (yyvsp[-1].ftype.t, yyvsp[-4].ttype);
yyungetc (';', 1); ;
break;}
case 143:
#line 809 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ftype.t);
do_decl_instantiation (specs, yyvsp[0].ttype, yyvsp[-4].ttype); ;
break;}
case 145:
#line 813 "parse.y"
{ do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, yyvsp[-3].ttype); ;
break;}
case 147:
#line 816 "parse.y"
{ do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, yyvsp[-3].ttype); ;
break;}
case 149:
#line 821 "parse.y"
{ begin_explicit_instantiation(); ;
break;}
case 150:
#line 824 "parse.y"
{ end_explicit_instantiation(); ;
break;}
case 151:
#line 832 "parse.y"
{
yyval.ttype = lookup_template_class (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE, NULL_TREE);
if (yyval.ttype != error_mark_node)
yyval.ttype = TYPE_STUB_DECL (yyval.ttype);
;
break;}
case 152:
#line 838 "parse.y"
{
yyval.ttype = lookup_template_class (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE, NULL_TREE);
if (yyval.ttype != error_mark_node)
yyval.ttype = TYPE_STUB_DECL (yyval.ttype);
;
break;}
case 154:
#line 848 "parse.y"
{
yyval.ttype = lookup_template_class (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE, NULL_TREE);
if (yyval.ttype != error_mark_node)
yyval.ttype = TYPE_STUB_DECL (yyval.ttype);
;
break;}
case 156:
#line 858 "parse.y"
{
/* Handle `Class<Class<Type>>' without space in the `>>' */
pedwarn ("`>>' should be `> >' in template class name");
yyungetc ('>', 1);
;
break;}
case 157:
#line 867 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 159:
#line 873 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
break;}
case 160:
#line 875 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
case 161:
#line 880 "parse.y"
{ yyval.ttype = groktypename (yyvsp[0].ftype.t); ;
break;}
case 163:
#line 886 "parse.y"
{ yyval.code = NEGATE_EXPR; ;
break;}
case 164:
#line 888 "parse.y"
{ yyval.code = CONVERT_EXPR; ;
break;}
case 165:
#line 890 "parse.y"
{ yyval.code = PREINCREMENT_EXPR; ;
break;}
case 166:
#line 892 "parse.y"
{ yyval.code = PREDECREMENT_EXPR; ;
break;}
case 167:
#line 894 "parse.y"
{ yyval.code = TRUTH_NOT_EXPR; ;
break;}
case 168:
#line 899 "parse.y"
{ yyval.ttype = build_x_compound_expr (yyval.ttype); ;
break;}
case 170:
#line 905 "parse.y"
{ error ("ANSI C++ forbids an empty condition for `%s'",
cond_stmt_keyword);
yyval.ttype = integer_zero_node; ;
break;}
case 171:
#line 909 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 172:
#line 914 "parse.y"
{ error ("ANSI C++ forbids an empty condition for `%s'",
cond_stmt_keyword);
yyval.ttype = integer_zero_node; ;
break;}
case 173:
#line 918 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 174:
#line 923 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 175:
#line 925 "parse.y"
{ yyval.ttype = condition_conversion (yyval.ttype); ;
break;}
case 176:
#line 927 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 177:
#line 932 "parse.y"
{ {
tree d;
for (d = getdecls (); d; d = TREE_CHAIN (d))
if (TREE_CODE (d) == TYPE_DECL) {
tree s = TREE_TYPE (d);
if (TREE_CODE (s) == RECORD_TYPE)
cp_error ("definition of class `%T' in condition", s);
else if (TREE_CODE (s) == ENUMERAL_TYPE)
cp_error ("definition of enum `%T' in condition", s);
}
}
current_declspecs = yyvsp[-4].ftype.t;
yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
yyvsp[-1].ttype, /*prefix_attributes*/ NULL_TREE);
;
break;}
case 178:
#line 949 "parse.y"
{
cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype, 1, LOOKUP_ONLYCONVERTING);
resume_momentary (yyvsp[-2].itype);
yyval.ttype = yyvsp[-1].ttype;
if (TREE_CODE (TREE_TYPE (yyval.ttype)) == ARRAY_TYPE)
cp_error ("definition of array `%#D' in condition", yyval.ttype);
;
break;}
case 184:
#line 968 "parse.y"
{ yyval.ttype = begin_compound_stmt (1); ;
break;}
case 185:
#line 970 "parse.y"
{ finish_compound_stmt (1, yyvsp[-1].ttype); ;
break;}
case 187:
#line 977 "parse.y"
{ yyval.ttype = expr_tree_cons (NULL_TREE, yyval.ttype,
build_expr_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
case 188:
#line 980 "parse.y"
{ yyval.ttype = expr_tree_cons (NULL_TREE, yyval.ttype,
build_expr_list (NULL_TREE, error_mark_node)); ;
break;}
case 189:
#line 983 "parse.y"
{ chainon (yyval.ttype, build_expr_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
case 190:
#line 985 "parse.y"
{ chainon (yyval.ttype, build_expr_list (NULL_TREE, error_mark_node)); ;
break;}
case 191:
#line 990 "parse.y"
{ yyval.ttype = build_expr_list (NULL_TREE, yyval.ttype); ;
break;}
case 193:
#line 996 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 194:
#line 999 "parse.y"
{ yyval.ttype = yyvsp[0].ttype;
pedantic = yyvsp[-1].itype; ;
break;}
case 195:
#line 1002 "parse.y"
{ yyval.ttype = build_x_indirect_ref (yyvsp[0].ttype, "unary *"); ;
break;}
case 196:
#line 1004 "parse.y"
{ yyval.ttype = build_x_unary_op (ADDR_EXPR, yyvsp[0].ttype); ;
break;}
case 197:
#line 1006 "parse.y"
{ yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, yyvsp[0].ttype); ;
break;}
case 198:
#line 1008 "parse.y"
{ yyval.ttype = build_x_unary_op (yyvsp[-1].code, yyvsp[0].ttype);
if (yyvsp[-1].code == NEGATE_EXPR && TREE_CODE (yyvsp[0].ttype) == INTEGER_CST)
TREE_NEGATED_INT (yyval.ttype) = 1;
overflow_warning (yyval.ttype);
;
break;}
case 199:
#line 1015 "parse.y"
{ if (pedantic)
pedwarn ("ANSI C++ forbids `&&'");
yyval.ttype = finish_label_address_expr (yyvsp[0].ttype); ;
break;}
case 200:
#line 1019 "parse.y"
{ yyval.ttype = expr_sizeof (yyvsp[0].ttype); ;
break;}
case 201:
#line 1021 "parse.y"
{ yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ftype.t)); ;
break;}
case 202:
#line 1023 "parse.y"
{ yyval.ttype = grok_alignof (yyvsp[0].ttype); ;
break;}
case 203:
#line 1025 "parse.y"
{ yyval.ttype = c_alignof (groktypename (yyvsp[-1].ftype.t));
check_for_new_type ("alignof", yyvsp[-1].ftype); ;
break;}
case 204:
#line 1031 "parse.y"
{ yyval.ttype = build_new (NULL_TREE, yyvsp[0].ftype.t, NULL_TREE, yyvsp[-1].itype);
check_for_new_type ("new", yyvsp[0].ftype); ;
break;}
case 205:
#line 1034 "parse.y"
{ yyval.ttype = build_new (NULL_TREE, yyvsp[-1].ftype.t, yyvsp[0].ttype, yyvsp[-2].itype);
check_for_new_type ("new", yyvsp[-1].ftype); ;
break;}
case 206:
#line 1037 "parse.y"
{ yyval.ttype = build_new (yyvsp[-1].ttype, yyvsp[0].ftype.t, NULL_TREE, yyvsp[-2].itype);
check_for_new_type ("new", yyvsp[0].ftype); ;
break;}
case 207:
#line 1040 "parse.y"
{ yyval.ttype = build_new (yyvsp[-2].ttype, yyvsp[-1].ftype.t, yyvsp[0].ttype, yyvsp[-3].itype);
check_for_new_type ("new", yyvsp[-1].ftype); ;
break;}
case 208:
#line 1043 "parse.y"
{ yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-1].ftype.t),
NULL_TREE, yyvsp[-3].itype);
check_for_new_type ("new", yyvsp[-1].ftype); ;
break;}
case 209:
#line 1047 "parse.y"
{ yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-2].ftype.t), yyvsp[0].ttype, yyvsp[-4].itype);
check_for_new_type ("new", yyvsp[-2].ftype); ;
break;}
case 210:
#line 1050 "parse.y"
{ yyval.ttype = build_new (yyvsp[-3].ttype, groktypename(yyvsp[-1].ftype.t), NULL_TREE, yyvsp[-4].itype);
check_for_new_type ("new", yyvsp[-1].ftype); ;
break;}
case 211:
#line 1053 "parse.y"
{ yyval.ttype = build_new (yyvsp[-4].ttype, groktypename(yyvsp[-2].ftype.t), yyvsp[0].ttype, yyvsp[-5].itype);
check_for_new_type ("new", yyvsp[-2].ftype); ;
break;}
case 212:
#line 1057 "parse.y"
{ yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 0, yyvsp[-1].itype); ;
break;}
case 213:
#line 1059 "parse.y"
{ yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 1, yyvsp[-3].itype);
if (yychar == YYEMPTY)
yychar = YYLEX; ;
break;}
case 214:
#line 1063 "parse.y"
{ yyval.ttype = delete_sanity (yyvsp[0].ttype, yyvsp[-2].ttype, 2, yyvsp[-4].itype);
if (yychar == YYEMPTY)
yychar = YYLEX; ;
break;}
case 215:
#line 1067 "parse.y"
{ yyval.ttype = build_x_unary_op (REALPART_EXPR, yyvsp[0].ttype); ;
break;}
case 216:
#line 1069 "parse.y"
{ yyval.ttype = build_x_unary_op (IMAGPART_EXPR, yyvsp[0].ttype); ;
break;}
case 217:
#line 1074 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 218:
#line 1076 "parse.y"
{
yyval.ttype = yyvsp[-1].ttype;
pedwarn ("old style placement syntax, use () instead");
;
break;}
case 219:
#line 1084 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 220:
#line 1086 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 221:
#line 1088 "parse.y"
{
cp_error ("`%T' is not a valid expression", yyvsp[-1].ftype.t);
yyval.ttype = error_mark_node;
;
break;}
case 222:
#line 1096 "parse.y"
{
if (pedantic)
pedwarn ("ANSI C++ forbids initialization of new expression with `='");
if (TREE_CODE (yyvsp[0].ttype) != TREE_LIST
&& TREE_CODE (yyvsp[0].ttype) != CONSTRUCTOR)
yyval.ttype = build_expr_list (NULL_TREE, yyvsp[0].ttype);
else
yyval.ttype = yyvsp[0].ttype;
;
break;}
case 223:
#line 1110 "parse.y"
{ yyvsp[-1].ftype.t = tree_cons (NULL_TREE, yyvsp[-1].ftype.t, void_list_node);
TREE_PARMLIST (yyvsp[-1].ftype.t) = 1;
yyval.ttype = make_call_declarator (NULL_TREE, yyvsp[-1].ftype.t, NULL_TREE, NULL_TREE);
check_for_new_type ("cast", yyvsp[-1].ftype); ;
break;}
case 224:
#line 1115 "parse.y"
{ yyvsp[-1].ftype.t = tree_cons (NULL_TREE, yyvsp[-1].ftype.t, void_list_node);
TREE_PARMLIST (yyvsp[-1].ftype.t) = 1;
yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-1].ftype.t, NULL_TREE, NULL_TREE);
check_for_new_type ("cast", yyvsp[-1].ftype); ;
break;}
case 226:
#line 1124 "parse.y"
{ yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 227:
#line 1126 "parse.y"
{
tree init = build_nt (CONSTRUCTOR, NULL_TREE,
nreverse (yyvsp[-2].ttype));
if (pedantic)
pedwarn ("ANSI C++ forbids constructor-expressions");
/* Indicate that this was a GNU C constructor expression. */
TREE_HAS_CONSTRUCTOR (init) = 1;
yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, init);
;
break;}
case 229:
#line 1142 "parse.y"
{ yyval.ttype = build_x_binary_op (MEMBER_REF, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 230:
#line 1144 "parse.y"
{ yyval.ttype = build_m_component_ref (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 231:
#line 1146 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 232:
#line 1148 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 233:
#line 1150 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 234:
#line 1152 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 235:
#line 1154 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 236:
#line 1156 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 237:
#line 1158 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 238:
#line 1160 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 239:
#line 1162 "parse.y"
{ yyval.ttype = build_x_binary_op (LT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 240:
#line 1164 "parse.y"
{ yyval.ttype = build_x_binary_op (GT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 241:
#line 1166 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 242:
#line 1168 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 243:
#line 1170 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 244:
#line 1172 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 245:
#line 1174 "parse.y"
{ yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 246:
#line 1176 "parse.y"
{ yyval.ttype = build_x_binary_op (TRUTH_ANDIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 247:
#line 1178 "parse.y"
{ yyval.ttype = build_x_binary_op (TRUTH_ORIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 248:
#line 1180 "parse.y"
{ yyval.ttype = build_x_conditional_expr (yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 249:
#line 1182 "parse.y"
{ yyval.ttype = build_x_modify_expr (yyval.ttype, NOP_EXPR, yyvsp[0].ttype);
if (yyval.ttype != error_mark_node)
C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR); ;
break;}
case 250:
#line 1186 "parse.y"
{ yyval.ttype = build_x_modify_expr (yyval.ttype, yyvsp[-1].code, yyvsp[0].ttype); ;
break;}
case 251:
#line 1188 "parse.y"
{ yyval.ttype = build_throw (NULL_TREE); ;
break;}
case 252:
#line 1190 "parse.y"
{ yyval.ttype = build_throw (yyvsp[0].ttype); ;
break;}
case 253:
#line 1208 "parse.y"
{ yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype); ;
break;}
case 259:
#line 1217 "parse.y"
{ yyval.ttype = do_identifier (yyvsp[-1].ttype, 1); ;
break;}
case 260:
#line 1221 "parse.y"
{ yyval.ttype = lookup_template_function (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
break;}
case 261:
#line 1223 "parse.y"
{ yyval.ttype = lookup_template_function (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
break;}
case 262:
#line 1228 "parse.y"
{ yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 263:
#line 1230 "parse.y"
{ yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 264:
#line 1233 "parse.y"
{ yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 269:
#line 1245 "parse.y"
{ yyval.ttype = build_parse_node (INDIRECT_REF, yyvsp[0].ttype); ;
break;}
case 270:
#line 1247 "parse.y"
{ yyval.ttype = build_parse_node (ADDR_EXPR, yyvsp[0].ttype); ;
break;}
case 271:
#line 1249 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 272:
#line 1254 "parse.y"
{ yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 273:
#line 1256 "parse.y"
{ yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 277:
#line 1264 "parse.y"
{ yyval.ttype = finish_decl_parsing (yyvsp[-1].ttype); ;
break;}
case 278:
#line 1269 "parse.y"
{
if (TREE_CODE (yyval.ttype) == BIT_NOT_EXPR)
yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND (yyval.ttype, 0));
else if (TREE_CODE (yyval.ttype) != TEMPLATE_ID_EXPR)
yyval.ttype = do_identifier (yyval.ttype, 1);
;
break;}
case 281:
#line 1278 "parse.y"
{
if (processing_template_decl)
push_obstacks (&permanent_obstack, &permanent_obstack);
yyval.ttype = combine_strings (yyval.ttype);
if (processing_template_decl)
pop_obstacks ();
;
break;}
case 282:
#line 1286 "parse.y"
{ yyval.ttype = finish_parenthesized_expr (yyvsp[-1].ttype); ;
break;}
case 283:
#line 1288 "parse.y"
{ yyvsp[-1].ttype = reparse_decl_as_expr (NULL_TREE, yyvsp[-1].ttype);
yyval.ttype = finish_parenthesized_expr (yyvsp[-1].ttype); ;
break;}
case 284:
#line 1291 "parse.y"
{ yyval.ttype = error_mark_node; ;
break;}
case 285:
#line 1293 "parse.y"
{ if (current_function_decl == 0)
{
error ("braced-group within expression allowed only inside a function");
YYERROR;
}
if (pedantic)
pedwarn ("ANSI C++ forbids braced-groups within expressions");
yyval.ttype = begin_stmt_expr ();
;
break;}
case 286:
#line 1303 "parse.y"
{ yyval.ttype = finish_stmt_expr (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
break;}
case 287:
#line 1305 "parse.y"
{ yyval.ttype = finish_call_expr (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 288:
#line 1307 "parse.y"
{ yyval.ttype = finish_call_expr (yyvsp[-1].ttype, NULL_TREE); ;
break;}
case 289:
#line 1309 "parse.y"
{ yyval.ttype = grok_array_decl (yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 290:
#line 1311 "parse.y"
{ yyval.ttype = finish_increment_expr (yyvsp[-1].ttype, POSTINCREMENT_EXPR); ;
break;}
case 291:
#line 1313 "parse.y"
{ yyval.ttype = finish_increment_expr (yyvsp[-1].ttype, POSTDECREMENT_EXPR); ;
break;}
case 292:
#line 1316 "parse.y"
{ yyval.ttype = finish_this_expr (); ;
break;}
case 293:
#line 1318 "parse.y"
{
tree type = NULL_TREE;
tree id = yyval.ttype;
/* This is a C cast in C++'s `functional' notation. */
if (yyvsp[-1].ttype == error_mark_node)
{
yyval.ttype = error_mark_node;
break;
}
#if 0
if (yyvsp[-1].ttype == NULL_TREE)
{
error ("cannot cast null list to type `%s'",
IDENTIFIER_POINTER (TYPE_NAME (id)));
yyval.ttype = error_mark_node;
break;
}
#endif
#if 0
/* type is not set! (mrs) */
if (type == error_mark_node)
yyval.ttype = error_mark_node;
else
#endif
{
if (id == ridpointers[(int) RID_CONST])
type = build_type_variant (integer_type_node, 1, 0);
else if (id == ridpointers[(int) RID_VOLATILE])
type = build_type_variant (integer_type_node, 0, 1);
#if 0
/* should not be able to get here (mrs) */
else if (id == ridpointers[(int) RID_FRIEND])
{
error ("cannot cast expression to `friend' type");
yyval.ttype = error_mark_node;
break;
}
#endif
else my_friendly_abort (79);
yyval.ttype = build_c_cast (type, build_compound_expr (yyvsp[-1].ttype));
}
;
break;}
case 295:
#line 1363 "parse.y"
{ tree type = groktypename (yyvsp[-4].ftype.t);
check_for_new_type ("dynamic_cast", yyvsp[-4].ftype);
yyval.ttype = build_dynamic_cast (type, yyvsp[-1].ttype); ;
break;}
case 296:
#line 1367 "parse.y"
{ tree type = groktypename (yyvsp[-4].ftype.t);
check_for_new_type ("static_cast", yyvsp[-4].ftype);
yyval.ttype = build_static_cast (type, yyvsp[-1].ttype); ;
break;}
case 297:
#line 1371 "parse.y"
{ tree type = groktypename (yyvsp[-4].ftype.t);
check_for_new_type ("reinterpret_cast", yyvsp[-4].ftype);
yyval.ttype = build_reinterpret_cast (type, yyvsp[-1].ttype); ;
break;}
case 298:
#line 1375 "parse.y"
{ tree type = groktypename (yyvsp[-4].ftype.t);
check_for_new_type ("const_cast", yyvsp[-4].ftype);
yyval.ttype = build_const_cast (type, yyvsp[-1].ttype); ;
break;}
case 299:
#line 1379 "parse.y"
{ yyval.ttype = build_x_typeid (yyvsp[-1].ttype); ;
break;}
case 300:
#line 1381 "parse.y"
{ tree type = groktypename (yyvsp[-1].ftype.t);
check_for_new_type ("typeid", yyvsp[-1].ftype);
yyval.ttype = get_typeid (TYPE_MAIN_VARIANT (type)); ;
break;}
case 301:
#line 1385 "parse.y"
{ yyval.ttype = do_scoped_id (yyvsp[0].ttype, 1); ;
break;}
case 302:
#line 1387 "parse.y"
{
got_scope = NULL_TREE;
if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
yyval.ttype = do_scoped_id (yyvsp[0].ttype, 1);
else
yyval.ttype = yyvsp[0].ttype;
;
break;}
case 303:
#line 1395 "parse.y"
{ yyval.ttype = build_offset_ref (OP0 (yyval.ttype), OP1 (yyval.ttype)); ;
break;}
case 304:
#line 1397 "parse.y"
{ yyval.ttype = finish_globally_qualified_member_call_expr (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 305:
#line 1399 "parse.y"
{ yyval.ttype = finish_globally_qualified_member_call_expr (yyvsp[-1].ttype, NULL_TREE); ;
break;}
case 306:
#line 1401 "parse.y"
{
yyval.ttype = build_x_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1);
;
break;}
case 307:
#line 1405 "parse.y"
{ yyval.ttype = finish_object_call_expr (yyvsp[-3].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ;
break;}
case 308:
#line 1407 "parse.y"
{ yyval.ttype = finish_object_call_expr (yyvsp[-1].ttype, yyvsp[-2].ttype, NULL_TREE); ;
break;}
case 309:
#line 1409 "parse.y"
{ yyval.ttype = build_x_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ;
break;}
case 310:
#line 1411 "parse.y"
{ if (processing_template_decl)
yyval.ttype = build_min_nt (COMPONENT_REF, yyvsp[-1].ttype, copy_to_permanent (yyvsp[0].ttype));
else
yyval.ttype = build_object_ref (yyval.ttype, OP0 (yyvsp[0].ttype), OP1 (yyvsp[0].ttype)); ;
break;}
case 311:
#line 1416 "parse.y"
{ yyval.ttype = finish_object_call_expr (yyvsp[-3].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ;
break;}
case 312:
#line 1418 "parse.y"
{ yyval.ttype = finish_object_call_expr (yyvsp[-1].ttype, yyvsp[-2].ttype, NULL_TREE); ;
break;}
case 313:
#line 1420 "parse.y"
{ yyval.ttype = finish_qualified_object_call_expr (yyvsp[-3].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ;
break;}
case 314:
#line 1422 "parse.y"
{ yyval.ttype = finish_qualified_object_call_expr (yyvsp[-1].ttype, yyvsp[-2].ttype, NULL_TREE); ;
break;}
case 315:
#line 1425 "parse.y"
{ yyval.ttype = finish_pseudo_destructor_call_expr (yyvsp[-3].ttype, NULL_TREE, yyvsp[-1].ttype); ;
break;}
case 316:
#line 1427 "parse.y"
{ yyval.ttype = finish_pseudo_destructor_call_expr (yyvsp[-5].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ;
break;}
case 317:
#line 1429 "parse.y"
{
yyval.ttype = error_mark_node;
;
break;}
case 318:
#line 1474 "parse.y"
{ yyval.itype = 0; ;
break;}
case 319:
#line 1476 "parse.y"
{ got_scope = NULL_TREE; yyval.itype = 1; ;
break;}
case 320:
#line 1481 "parse.y"
{ yyval.itype = 0; ;
break;}
case 321:
#line 1483 "parse.y"
{ got_scope = NULL_TREE; yyval.itype = 1; ;
break;}
case 322:
#line 1488 "parse.y"
{ yyval.ttype = boolean_true_node; ;
break;}
case 323:
#line 1490 "parse.y"
{ yyval.ttype = boolean_false_node; ;
break;}
case 325:
#line 1497 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 326:
#line 1502 "parse.y"
{
if (! current_function_parms_stored)
store_parm_decls ();
setup_vtbl_ptr ();
/* Always keep the BLOCK node associated with the outermost
pair of curley braces of a function. These are needed
for correct operation of dwarfout.c. */
keep_next_level ();
;
break;}
case 327:
#line 1515 "parse.y"
{ got_object = TREE_TYPE (yyval.ttype); ;
break;}
case 328:
#line 1517 "parse.y"
{
yyval.ttype = build_x_arrow (yyval.ttype);
got_object = TREE_TYPE (yyval.ttype);
;
break;}
case 329:
#line 1525 "parse.y"
{
resume_momentary (yyvsp[-1].itype);
if (yyvsp[-2].ftype.t && IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ftype.t)))
note_got_semicolon (yyvsp[-2].ftype.t);
;
break;}
case 330:
#line 1531 "parse.y"
{
resume_momentary (yyvsp[-1].itype);
note_list_got_semicolon (yyvsp[-2].ftype.t);
;
break;}
case 331:
#line 1536 "parse.y"
{ resume_momentary (yyvsp[-1].itype); ;
break;}
case 332:
#line 1538 "parse.y"
{
shadow_tag (yyvsp[-1].ftype.t);
note_list_got_semicolon (yyvsp[-1].ftype.t);
;
break;}
case 333:
#line 1543 "parse.y"
{ warning ("empty declaration"); ;
break;}
case 334:
#line 1545 "parse.y"
{ pedantic = yyvsp[-1].itype; ;
break;}
case 337:
#line 1559 "parse.y"
{ yyval.ttype = make_call_declarator (NULL_TREE, empty_parms (),
NULL_TREE, NULL_TREE); ;
break;}
case 338:
#line 1562 "parse.y"
{ yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), NULL_TREE,
NULL_TREE); ;
break;}
case 339:
#line 1569 "parse.y"
{ yyval.ftype.t = build_decl_list (yyvsp[-1].ftype.t, yyvsp[0].ttype);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 340:
#line 1572 "parse.y"
{ yyval.ftype.t = build_decl_list (yyvsp[-1].ftype.t, yyvsp[0].ttype);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 341:
#line 1575 "parse.y"
{ yyval.ftype.t = build_decl_list (get_decl_list (yyvsp[-1].ftype.t), yyvsp[0].ttype);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 342:
#line 1578 "parse.y"
{ yyval.ftype.t = build_decl_list (yyvsp[0].ftype.t, NULL_TREE);
yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
break;}
case 343:
#line 1581 "parse.y"
{ yyval.ftype.t = build_decl_list (yyvsp[0].ftype.t, NULL_TREE);
yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
break;}
case 346:
#line 1597 "parse.y"
{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyvsp[-1].ttype);
yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
break;}
case 347:
#line 1600 "parse.y"
{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, yyvsp[0].ttype);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 348:
#line 1603 "parse.y"
{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-2].ftype.t, chainon (yyvsp[-1].ttype, yyvsp[0].ttype));
yyval.ftype.new_type_flag = yyvsp[-2].ftype.new_type_flag; ;
break;}
case 349:
#line 1606 "parse.y"
{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, chainon (yyvsp[0].ttype, yyvsp[-2].ttype));
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 350:
#line 1609 "parse.y"
{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, chainon (yyvsp[0].ttype, yyvsp[-2].ttype));
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 351:
#line 1612 "parse.y"
{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-2].ftype.t,
chainon (yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyvsp[-3].ttype)));
yyval.ftype.new_type_flag = yyvsp[-2].ftype.new_type_flag; ;
break;}
case 352:
#line 1619 "parse.y"
{ if (extra_warnings)
warning ("`%s' is not at beginning of declaration",
IDENTIFIER_POINTER (yyval.ttype));
yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
break;}
case 353:
#line 1624 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyval.ttype); ;
break;}
case 354:
#line 1626 "parse.y"
{ if (extra_warnings)
warning ("`%s' is not at beginning of declaration",
IDENTIFIER_POINTER (yyvsp[0].ttype));
yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 355:
#line 1631 "parse.y"
{ yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
break;}
case 356:
#line 1633 "parse.y"
{ yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
break;}
case 357:
#line 1643 "parse.y"
{ yyval.ttype = yyvsp[0].ftype.t; TREE_STATIC (yyval.ttype) = 1; ;
break;}
case 358:
#line 1645 "parse.y"
{ yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
break;}
case 359:
#line 1647 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
TREE_STATIC (yyval.ttype) = 1; ;
break;}
case 360:
#line 1650 "parse.y"
{ if (extra_warnings && TREE_STATIC (yyval.ttype))
warning ("`%s' is not at beginning of declaration",
IDENTIFIER_POINTER (yyvsp[0].ttype));
yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
break;}
case 361:
#line 1656 "parse.y"
{ yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
break;}
case 362:
#line 1658 "parse.y"
{ yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
break;}
case 363:
#line 1669 "parse.y"
{ yyval.ftype.t = get_decl_list (yyvsp[0].ftype.t);
yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
break;}
case 364:
#line 1672 "parse.y"
{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyvsp[-1].ftype.t);
yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
break;}
case 365:
#line 1675 "parse.y"
{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, yyvsp[0].ttype);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 366:
#line 1678 "parse.y"
{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, chainon (yyvsp[0].ttype, yyvsp[-2].ftype.t));
yyval.ftype.new_type_flag = yyvsp[-2].ftype.new_type_flag; ;
break;}
case 367:
#line 1684 "parse.y"
{ yyval.ttype = build_decl_list (NULL_TREE, yyvsp[0].ftype.t); ;
break;}
case 368:
#line 1686 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyvsp[-1].ttype); ;
break;}
case 370:
#line 1696 "parse.y"
{ yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ;
break;}
case 371:
#line 1698 "parse.y"
{ yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ;
break;}
case 372:
#line 1700 "parse.y"
{ yyval.ftype.t = TREE_TYPE (yyvsp[-1].ttype);
yyval.ftype.new_type_flag = 0; ;
break;}
case 373:
#line 1703 "parse.y"
{ yyval.ftype.t = groktypename (yyvsp[-1].ftype.t);
yyval.ftype.new_type_flag = 0; ;
break;}
case 374:
#line 1706 "parse.y"
{ tree type = TREE_TYPE (yyvsp[-1].ttype);
yyval.ftype.new_type_flag = 0;
if (IS_AGGR_TYPE (type))
{
sorry ("sigof type specifier");
yyval.ftype.t = type;
}
else
{
error ("`sigof' applied to non-aggregate expression");
yyval.ftype.t = error_mark_node;
}
;
break;}
case 375:
#line 1721 "parse.y"
{ tree type = groktypename (yyvsp[-1].ftype.t);
yyval.ftype.new_type_flag = 0;
if (IS_AGGR_TYPE (type))
{
sorry ("sigof type specifier");
yyval.ftype.t = type;
}
else
{
error("`sigof' applied to non-aggregate type");
yyval.ftype.t = error_mark_node;
}
;
break;}
case 376:
#line 1741 "parse.y"
{ yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ;
break;}
case 377:
#line 1743 "parse.y"
{ yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ;
break;}
case 385:
#line 1764 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 386:
#line 1766 "parse.y"
{ if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype); yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 387:
#line 1771 "parse.y"
{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
yyvsp[-1].ttype, prefix_attributes); ;
break;}
case 388:
#line 1775 "parse.y"
{ cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 1, LOOKUP_ONLYCONVERTING); ;
break;}
case 389:
#line 1777 "parse.y"
{ yyval.ttype = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
yyvsp[0].ttype, prefix_attributes);
cp_finish_decl (yyval.ttype, NULL_TREE, yyvsp[-1].ttype, 1, 0); ;
break;}
case 390:
#line 1790 "parse.y"
{ yyvsp[0].itype = parse_decl (yyvsp[-3].ttype, yyvsp[-4].ttype,
yyvsp[-1].ttype, 1, &yyval.ttype); ;
break;}
case 391:
#line 1795 "parse.y"
{ cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 1,
LOOKUP_ONLYCONVERTING);
yyval.itype = yyvsp[-2].itype; ;
break;}
case 392:
#line 1799 "parse.y"
{ tree d;
yyval.itype = parse_decl (yyvsp[-2].ttype, yyvsp[-3].ttype, yyvsp[0].ttype, 0, &d);
cp_finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 1, 0); ;
break;}
case 393:
#line 1806 "parse.y"
{ yyval.itype = yyvsp[0].itype; ;
break;}
case 394:
#line 1810 "parse.y"
{ yyval.itype = yyvsp[0].itype; ;
break;}
case 395:
#line 1815 "parse.y"
{ /* Set things up as initdcl0_innards expects. */
yyval.ttype = yyvsp[-1].ttype;
yyvsp[-1].ttype = NULL_TREE; ;
break;}
case 396:
#line 1819 "parse.y"
{;
break;}
case 397:
#line 1821 "parse.y"
{ tree d;
parse_decl(yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype, 0, &d);
cp_finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 1, 0); ;
break;}
case 398:
#line 1830 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 399:
#line 1832 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 400:
#line 1837 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 401:
#line 1839 "parse.y"
{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 402:
#line 1844 "parse.y"
{ yyval.ttype = yyvsp[-2].ttype; ;
break;}
case 403:
#line 1849 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 404:
#line 1851 "parse.y"
{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 405:
#line 1856 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 406:
#line 1858 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 407:
#line 1860 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
break;}
case 408:
#line 1862 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
break;}
case 409:
#line 1864 "parse.y"
{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 414:
#line 1880 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 415:
#line 1882 "parse.y"
{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
case 416:
#line 1887 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 417:
#line 1889 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 419:
#line 1897 "parse.y"
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
break;}
case 420:
#line 1900 "parse.y"
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-1].ttype));
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
break;}
case 421:
#line 1903 "parse.y"
{ yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype));
TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
break;}
case 422:
#line 1906 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 423:
#line 1913 "parse.y"
{ yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
break;}
case 424:
#line 1915 "parse.y"
{ yyval.ttype = expr_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 425:
#line 1918 "parse.y"
{ yyval.ttype = build_expr_list (yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 426:
#line 1920 "parse.y"
{ yyval.ttype = build_expr_list (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 427:
#line 1922 "parse.y"
{ yyval.ttype = expr_tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 428:
#line 1927 "parse.y"
{ start_function (NULL_TREE, TREE_VALUE (yyvsp[0].ttype),
NULL_TREE, 1);
reinit_parse_for_function (); ;
break;}
case 429:
#line 1933 "parse.y"
{
int nested = (hack_decl_function_context
(current_function_decl) != NULL_TREE);
finish_function (lineno, (int)yyvsp[-1].itype, nested);
process_next_inline (yyvsp[-3].ttype);
;
break;}
case 430:
#line 1940 "parse.y"
{ process_next_inline (yyvsp[-2].ttype); ;
break;}
case 431:
#line 1942 "parse.y"
{ process_next_inline (yyvsp[-2].ttype); ;
break;}
case 434:
#line 1954 "parse.y"
{ replace_defarg (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
break;}
case 435:
#line 1956 "parse.y"
{ replace_defarg (yyvsp[-2].ttype, error_mark_node); ;
break;}
case 437:
#line 1961 "parse.y"
{ do_pending_defargs (); ;
break;}
case 438:
#line 1963 "parse.y"
{ do_pending_defargs (); ;
break;}
case 439:
#line 1968 "parse.y"
{ yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_enum (yyvsp[-1].ttype); ;
break;}
case 440:
#line 1971 "parse.y"
{ yyval.ftype.t = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
yyval.ftype.new_type_flag = 1;
resume_momentary ((int) yyvsp[-4].itype);
check_for_missing_semicolon (yyvsp[-3].ttype); ;
break;}
case 441:
#line 1976 "parse.y"
{ yyval.ftype.t = finish_enum (start_enum (yyvsp[-2].ttype), NULL_TREE);
yyval.ftype.new_type_flag = 1;
check_for_missing_semicolon (yyval.ftype.t); ;
break;}
case 442:
#line 1980 "parse.y"
{ yyvsp[0].itype = suspend_momentary ();
yyval.ttype = start_enum (make_anon_name ()); ;
break;}
case 443:
#line 1983 "parse.y"
{ yyval.ftype.t = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
resume_momentary ((int) yyvsp[-5].itype);
check_for_missing_semicolon (yyvsp[-3].ttype);
yyval.ftype.new_type_flag = 1; ;
break;}
case 444:
#line 1988 "parse.y"
{ yyval.ftype.t = finish_enum (start_enum (make_anon_name()), NULL_TREE);
yyval.ftype.new_type_flag = 1;
check_for_missing_semicolon (yyval.ftype.t); ;
break;}
case 445:
#line 1992 "parse.y"
{ yyval.ftype.t = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 1);
yyval.ftype.new_type_flag = 0; ;
break;}
case 446:
#line 1995 "parse.y"
{ yyval.ftype.t = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 1);
yyval.ftype.new_type_flag = 0; ;
break;}
case 447:
#line 1998 "parse.y"
{ yyval.ftype.t = yyvsp[0].ttype;
yyval.ftype.new_type_flag = 0; ;
break;}
case 448:
#line 2003 "parse.y"
{
int semi;
yyval.ttype = yyvsp[-4].ttype;
#if 0
/* Need to rework class nesting in the
presence of nested classes, etc. */
shadow_tag (CLASSTYPE_AS_LIST (yyvsp[-4].ttype)); */
#endif
if (yychar == YYEMPTY)
yychar = YYLEX;
semi = yychar == ';';
/* finish_struct nukes this anyway; if
finish_exception does too, then it can go. */
if (semi)
note_got_semicolon (yyvsp[-4].ttype);
if (TREE_CODE (yyvsp[-4].ttype) == ENUMERAL_TYPE)
;
else
{
yyval.ttype = finish_struct (yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype, semi);
if (semi) note_got_semicolon (yyval.ttype);
}
pop_obstacks ();
if (! semi)
check_for_missing_semicolon (yyvsp[-4].ttype);
if (current_scope () == current_function_decl)
do_pending_defargs ();
;
break;}
case 449:
#line 2036 "parse.y"
{
if (pending_inlines
&& current_scope () == current_function_decl)
do_pending_inlines ();
;
break;}
case 450:
#line 2042 "parse.y"
{
yyval.ftype.t = yyvsp[-3].ttype;
yyval.ftype.new_type_flag = 1;
if (current_class_type == NULL_TREE)
clear_inline_text_obstack ();
/* Undo the begin_tree in left_curly. */
end_tree ();
;
break;}
case 451:
#line 2052 "parse.y"
{
yyval.ftype.new_type_flag = 0;
if (TYPE_BINFO (yyvsp[0].ttype) == NULL_TREE)
{
cp_error ("%T is not a class type", yyvsp[0].ttype);
yyval.ftype.t = error_mark_node;
}
else
{
yyval.ftype.t = yyvsp[0].ttype;
/* struct B: public A; is not accepted by the WP grammar. */
if (TYPE_BINFO_BASETYPES (yyval.ftype.t) && !TYPE_SIZE (yyval.ftype.t)
&& ! TYPE_BEING_DEFINED (yyval.ftype.t))
cp_error ("base clause without member specification for `%#T'",
yyval.ftype.t);
}
;
break;}
case 455:
#line 2079 "parse.y"
{ if (pedantic && !in_system_header)
pedwarn ("comma at end of enumerator list"); ;
break;}
case 457:
#line 2086 "parse.y"
{ error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
break;}
case 458:
#line 2088 "parse.y"
{ error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
break;}
case 459:
#line 2090 "parse.y"
{ error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
break;}
case 460:
#line 2092 "parse.y"
{ error ("no body nor ';' separates two class, struct or union declarations"); ;
break;}
case 461:
#line 2097 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
case 462:
#line 2102 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
case 463:
#line 2107 "parse.y"
{
current_aggr = yyvsp[-2].ttype;
yyval.ttype = handle_class_head (yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
;
break;}
case 464:
#line 2112 "parse.y"
{
current_aggr = yyvsp[-3].ttype;
yyval.ttype = handle_class_head (yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
;
break;}
case 465:
#line 2117 "parse.y"
{
current_aggr = yyvsp[-2].ttype;
yyval.ttype = handle_class_head (yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype);
;
break;}
case 466:
#line 2122 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
case 467:
#line 2124 "parse.y"
{ current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
case 468:
#line 2129 "parse.y"
{ yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE, 0); ;
break;}
case 469:
#line 2134 "parse.y"
{ yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE, 1); ;
break;}
case 470:
#line 2137 "parse.y"
{
yyval.ttype = yyvsp[-1].ttype;
if (yyvsp[0].ttype)
xref_basetypes (current_aggr, yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
;
break;}
case 471:
#line 2143 "parse.y"
{
yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
if (TREE_INT_CST_LOW (current_aggr) == union_type
&& TREE_CODE (yyval.ttype) != UNION_TYPE)
cp_pedwarn ("`union' tag used in declaring `%#T'", yyval.ttype);
else if (TREE_CODE (yyval.ttype) == UNION_TYPE
&& TREE_INT_CST_LOW (current_aggr) != union_type)
cp_pedwarn ("non-`union' tag used in declaring `%#T'", yyval.ttype);
if (yyvsp[0].ttype)
{
if (IS_AGGR_TYPE (yyval.ttype) && CLASSTYPE_USE_TEMPLATE (yyval.ttype))
{
if (CLASSTYPE_IMPLICIT_INSTANTIATION (yyval.ttype)
&& TYPE_SIZE (yyval.ttype) == NULL_TREE)
{
SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (yyval.ttype);
if (processing_template_decl)
push_template_decl (TYPE_MAIN_DECL (yyval.ttype));
}
else if (CLASSTYPE_TEMPLATE_INSTANTIATION (yyval.ttype))
cp_error ("specialization after instantiation of `%T'", yyval.ttype);
}
xref_basetypes (current_aggr, yyvsp[-1].ttype, yyval.ttype, yyvsp[0].ttype);
}
;
break;}
case 472:
#line 2172 "parse.y"
{ yyval.ttype = xref_tag (yyval.ttype, make_anon_name (), NULL_TREE, 0);
yyungetc ('{', 1); ;
break;}
case 475:
#line 2183 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 476:
#line 2185 "parse.y"
{ yyungetc(':', 1); yyval.ttype = NULL_TREE; ;
break;}
case 477:
#line 2187 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 479:
#line 2193 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 480:
#line 2198 "parse.y"
{
tree type = TREE_TYPE (yyvsp[0].ttype);
if (! is_aggr_type (type, 1))
yyval.ttype = NULL_TREE;
else if (current_aggr == signature_type_node
&& (! type) && (! IS_SIGNATURE (type)))
{
error ("class name not allowed as base signature");
yyval.ttype = NULL_TREE;
}
else if (current_aggr == signature_type_node)
{
sorry ("signature inheritance, base type `%s' ignored",
IDENTIFIER_POINTER (yyval.ttype));
yyval.ttype = build_tree_list (access_public_node, type);
}
else if (type && IS_SIGNATURE (type))
{
error ("signature name not allowed as base class");
yyval.ttype = NULL_TREE;
}
else
yyval.ttype = build_tree_list (access_default_node, type);
;
break;}
case 481:
#line 2223 "parse.y"
{
tree type = TREE_TYPE (yyvsp[0].ttype);
if (current_aggr == signature_type_node)
error ("access and source specifiers not allowed in signature");
if (! IS_AGGR_TYPE (type))
yyval.ttype = NULL_TREE;
else if (current_aggr == signature_type_node
&& (! type) && (! IS_SIGNATURE (type)))
{
error ("class name not allowed as base signature");
yyval.ttype = NULL_TREE;
}
else if (current_aggr == signature_type_node)
{
sorry ("signature inheritance, base type `%s' ignored",
IDENTIFIER_POINTER (yyval.ttype));
yyval.ttype = build_tree_list (access_public_node, type);
}
else if (type && IS_SIGNATURE (type))
{
error ("signature name not allowed as base class");
yyval.ttype = NULL_TREE;
}
else
yyval.ttype = build_tree_list (yyval.ttype, type);
;
break;}
case 482:
#line 2253 "parse.y"
{ yyval.ttype = TYPE_MAIN_DECL (yyvsp[0].ttype); ;
break;}
case 484:
#line 2256 "parse.y"
{
if (current_aggr == signature_type_node)
{
if (IS_AGGR_TYPE (TREE_TYPE (yyvsp[-1].ttype)))
{
sorry ("`sigof' as base signature specifier");
yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
}
else
{
error ("`sigof' applied to non-aggregate expression");
yyval.ttype = error_mark_node;
}
}
else
{
error ("`sigof' in struct or class declaration");
yyval.ttype = error_mark_node;
}
;
break;}
case 485:
#line 2277 "parse.y"
{
if (current_aggr == signature_type_node)
{
if (IS_AGGR_TYPE (groktypename (yyvsp[-1].ftype.t)))
{
sorry ("`sigof' as base signature specifier");
yyval.ttype = groktypename (yyvsp[-1].ftype.t);
}
else
{
error ("`sigof' applied to non-aggregate expression");
yyval.ttype = error_mark_node;
}
}
else
{
error ("`sigof' in struct or class declaration");
yyval.ttype = error_mark_node;
}
;
break;}
case 487:
#line 2302 "parse.y"
{ if (yyvsp[-1].ttype != ridpointers[(int)RID_VIRTUAL])
cp_error ("`%D' access", yyvsp[-1].ttype);
yyval.ttype = access_default_virtual_node; ;
break;}
case 488:
#line 2306 "parse.y"
{
if (yyvsp[-2].ttype != access_default_virtual_node)
error ("multiple access specifiers");
else if (yyvsp[-1].ttype == access_public_node)
yyval.ttype = access_public_virtual_node;
else if (yyvsp[-1].ttype == access_protected_node)
yyval.ttype = access_protected_virtual_node;
else /* $2 == access_private_node */
yyval.ttype = access_private_virtual_node;
;
break;}
case 489:
#line 2317 "parse.y"
{ if (yyvsp[-1].ttype != ridpointers[(int)RID_VIRTUAL])
cp_error ("`%D' access", yyvsp[-1].ttype);
else if (yyval.ttype == access_public_node)
yyval.ttype = access_public_virtual_node;
else if (yyval.ttype == access_protected_node)
yyval.ttype = access_protected_virtual_node;
else if (yyval.ttype == access_private_node)
yyval.ttype = access_private_virtual_node;
else
error ("multiple `virtual' specifiers");
;
break;}
case 490:
#line 2332 "parse.y"
{ tree t = yyvsp[-1].ttype;
push_obstacks_nochange ();
end_temporary_allocation ();
if (t == error_mark_node
|| ! IS_AGGR_TYPE (t))
{
t = yyvsp[-1].ttype = make_lang_type (RECORD_TYPE);
pushtag (make_anon_name (), t, 0);
}
if (TYPE_SIZE (t))
duplicate_tag_error (t);
if (TYPE_SIZE (t) || TYPE_BEING_DEFINED (t))
{
t = make_lang_type (TREE_CODE (t));
pushtag (TYPE_IDENTIFIER (yyvsp[-1].ttype), t, 0);
yyvsp[-1].ttype = t;
}
if (processing_template_decl && TYPE_CONTEXT (t)
&& ! current_class_type)
push_template_decl (TYPE_STUB_DECL (t));
pushclass (t, 0);
TYPE_BEING_DEFINED (t) = 1;
if (IS_AGGR_TYPE (t) && CLASSTYPE_USE_TEMPLATE (t))
{
if (CLASSTYPE_IMPLICIT_INSTANTIATION (t)
&& TYPE_SIZE (t) == NULL_TREE)
{
SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
if (processing_template_decl)
push_template_decl (TYPE_MAIN_DECL (t));
}
else if (CLASSTYPE_TEMPLATE_INSTANTIATION (t))
cp_error ("specialization after instantiation of `%T'", t);
}
/* Reset the interface data, at the earliest possible
moment, as it might have been set via a class foo;
before. */
/* Don't change signatures. */
if (! IS_SIGNATURE (t))
{
extern tree pending_vtables;
int needs_writing;
tree name = TYPE_IDENTIFIER (t);
if (! ANON_AGGRNAME_P (name))
{
CLASSTYPE_INTERFACE_ONLY (t) = interface_only;
SET_CLASSTYPE_INTERFACE_UNKNOWN_X
(t, interface_unknown);
}
/* Record how to set the access of this class's
virtual functions. If write_virtuals == 2 or 3, then
inline virtuals are ``extern inline''. */
switch (write_virtuals)
{
case 0:
case 1:
needs_writing = 1;
break;
case 2:
needs_writing = !! value_member (name, pending_vtables);
break;
case 3:
needs_writing = ! CLASSTYPE_INTERFACE_ONLY (t)
&& CLASSTYPE_INTERFACE_KNOWN (t);
break;
default:
needs_writing = 0;
}
CLASSTYPE_VTABLE_NEEDS_WRITING (t) = needs_writing;
}
#if 0
t = TYPE_IDENTIFIER (yyvsp[-1].ttype);
if (t && IDENTIFIER_TEMPLATE (t))
overload_template_name (t, 1);
#endif
reset_specialization();
/* In case this is a local class within a template
function, we save the current tree structure so
that we can get it back later. */
begin_tree ();
;
break;}
case 491:
#line 2421 "parse.y"
{
yyval.ttype = build_self_reference ();
;
break;}
case 492:
#line 2428 "parse.y"
{ if (yyval.ttype) yyval.ttype = build_tree_list (access_public_node, yyval.ttype); ;
break;}
case 493:
#line 2430 "parse.y"
{
if (current_aggr == signature_type_node)
yyval.ttype = build_tree_list (access_public_node, yyvsp[0].ttype);
else
yyval.ttype = build_tree_list (access_default_node, yyvsp[0].ttype);
if (yyvsp[-1].ttype) yyval.ttype = tree_cons (access_public_node, yyvsp[-1].ttype, yyval.ttype);
;
break;}
case 494:
#line 2438 "parse.y"
{
tree visspec = yyvsp[-2].ttype;
if (current_aggr == signature_type_node)
{
error ("access specifier not allowed in signature");
visspec = access_public_node;
}
yyval.ttype = chainon (yyval.ttype, build_tree_list (visspec, yyvsp[0].ttype));
;
break;}
case 495:
#line 2449 "parse.y"
{
if (current_aggr == signature_type_node)
error ("access specifier not allowed in signature");
;
break;}
case 496:
#line 2459 "parse.y"
{ if (yyval.ttype == void_type_node) yyval.ttype = NULL_TREE;
;
break;}
case 497:
#line 2462 "parse.y"
{ /* In pushdecl, we created a reverse list of names
in this binding level. Make sure that the chain
of what we're trying to add isn't the item itself
(which can happen with what pushdecl's doing). */
if (yyvsp[0].ttype != NULL_TREE && yyvsp[0].ttype != void_type_node)
{
if (TREE_CHAIN (yyvsp[0].ttype) != yyval.ttype)
yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
else
yyval.ttype = yyvsp[0].ttype;
}
;
break;}
case 498:
#line 2478 "parse.y"
{ ;
break;}
case 499:
#line 2480 "parse.y"
{ error ("missing ';' before right brace");
yyungetc ('}', 0); ;
break;}
case 500:
#line 2485 "parse.y"
{ yyval.ttype = finish_method (yyval.ttype); ;
break;}
case 501:
#line 2487 "parse.y"
{ yyval.ttype = finish_method (yyval.ttype); ;
break;}
case 502:
#line 2489 "parse.y"
{ yyval.ttype = finish_method (yyval.ttype); ;
break;}
case 503:
#line 2491 "parse.y"
{ yyval.ttype = finish_method (yyval.ttype); ;
break;}
case 504:
#line 2493 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 505:
#line 2495 "parse.y"
{ yyval.ttype = yyvsp[0].ttype;
pedantic = yyvsp[-1].itype; ;
break;}
case 506:
#line 2498 "parse.y"
{ yyval.ttype = finish_member_template_decl (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 507:
#line 2500 "parse.y"
{
shadow_tag (yyvsp[-1].ftype.t);
note_list_got_semicolon (yyvsp[-1].ftype.t);
yyval.ttype = finish_member_template_decl (yyvsp[-2].ttype, yyvsp[-1].ftype.t);
;
break;}
case 508:
#line 2512 "parse.y"
{ yyval.ttype = grok_x_components (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
break;}
case 509:
#line 2514 "parse.y"
{ yyval.ttype = grok_x_components (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 510:
#line 2516 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, NULL_TREE)); ;
break;}
case 511:
#line 2519 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, NULL_TREE)); ;
break;}
case 512:
#line 2522 "parse.y"
{ yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ;
break;}
case 513:
#line 2524 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 514:
#line 2535 "parse.y"
{ tree specs, attrs;
split_specs_attrs (yyvsp[-4].ttype, &specs, &attrs);
yyval.ttype = grokfield (yyvsp[-3].ttype, specs, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, attrs)); ;
break;}
case 515:
#line 2540 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, NULL_TREE)); ;
break;}
case 516:
#line 2543 "parse.y"
{ yyval.ttype = do_class_using_decl (yyvsp[0].ttype); ;
break;}
case 517:
#line 2549 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 519:
#line 2552 "parse.y"
{
/* In this context, void_type_node encodes
friends. They have been recorded elsewhere. */
if (yyval.ttype == void_type_node)
yyval.ttype = yyvsp[0].ttype;
else
yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
;
break;}
case 520:
#line 2564 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 522:
#line 2567 "parse.y"
{
/* In this context, void_type_node encodes
friends. They have been recorded elsewhere. */
if (yyval.ttype == void_type_node)
yyval.ttype = yyvsp[0].ttype;
else
yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
;
break;}
case 527:
#line 2589 "parse.y"
{ split_specs_attrs (yyvsp[-4].ttype, &current_declspecs,
&prefix_attributes);
yyvsp[-4].ttype = current_declspecs;
yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
break;}
case 528:
#line 2595 "parse.y"
{ split_specs_attrs (yyvsp[-4].ttype, &current_declspecs,
&prefix_attributes);
yyvsp[-4].ttype = current_declspecs;
yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 529:
#line 2604 "parse.y"
{ split_specs_attrs (yyvsp[-4].ttype, &current_declspecs,
&prefix_attributes);
yyvsp[-4].ttype = current_declspecs;
yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
break;}
case 530:
#line 2610 "parse.y"
{ split_specs_attrs (yyvsp[-4].ttype, &current_declspecs,
&prefix_attributes);
yyvsp[-4].ttype = current_declspecs;
yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
break;}
case 531:
#line 2616 "parse.y"
{ split_specs_attrs (yyvsp[-4].ttype, &current_declspecs,
&prefix_attributes);
yyvsp[-4].ttype = current_declspecs;
yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 532:
#line 2622 "parse.y"
{ split_specs_attrs (yyvsp[-3].ttype, &current_declspecs,
&prefix_attributes);
yyvsp[-3].ttype = current_declspecs;
yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 533:
#line 2631 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
break;}
case 534:
#line 2634 "parse.y"
{ yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 535:
#line 2640 "parse.y"
{ yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[0].ttype, yyvsp[-2].ttype,
build_tree_list (yyvsp[-1].ttype, prefix_attributes)); ;
break;}
case 536:
#line 2643 "parse.y"
{ yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 537:
#line 2646 "parse.y"
{ yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
break;}
case 539:
#line 2657 "parse.y"
{ TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
break;}
case 540:
#line 2662 "parse.y"
{ yyval.ttype = build_enumerator (yyval.ttype, NULL_TREE); ;
break;}
case 541:
#line 2664 "parse.y"
{ yyval.ttype = build_enumerator (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 542:
#line 2670 "parse.y"
{ yyval.ftype.t = build_decl_list (yyvsp[-1].ftype.t, yyvsp[0].ttype);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 543:
#line 2673 "parse.y"
{ yyval.ftype.t = build_decl_list (yyvsp[0].ftype.t, NULL_TREE);
yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
break;}
case 544:
#line 2678 "parse.y"
{
if (pedantic)
pedwarn ("ANSI C++ forbids array dimensions with parenthesized type in new");
yyval.ftype.t = build_parse_node (ARRAY_REF, TREE_VALUE (yyvsp[-4].ftype.t), yyvsp[-1].ttype);
yyval.ftype.t = build_decl_list (TREE_PURPOSE (yyvsp[-4].ftype.t), yyval.ftype.t);
yyval.ftype.new_type_flag = yyvsp[-4].ftype.new_type_flag;
;
break;}
case 545:
#line 2689 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 546:
#line 2691 "parse.y"
{ yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 547:
#line 2696 "parse.y"
{ yyval.ftype.t = IDENTIFIER_AS_LIST (yyvsp[0].ttype);
yyval.ftype.new_type_flag = 0; ;
break;}
case 548:
#line 2699 "parse.y"
{ yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ftype.t);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 549:
#line 2708 "parse.y"
{ yyval.itype = suspend_momentary (); ;
break;}
case 550:
#line 2713 "parse.y"
{ resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = yyvsp[0].ttype; ;
break;}
case 551:
#line 2719 "parse.y"
{ resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 552:
#line 2721 "parse.y"
{ resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 553:
#line 2723 "parse.y"
{ resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = empty_parms (); ;
break;}
case 554:
#line 2725 "parse.y"
{ resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = NULL_TREE; ;
break;}
case 555:
#line 2732 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
break;}
case 556:
#line 2734 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
break;}
case 557:
#line 2736 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 558:
#line 2738 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 559:
#line 2740 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 561:
#line 2748 "parse.y"
{
if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
{
yyval.ttype = lookup_name (yyvsp[0].ttype, 1);
if (current_class_type
&& TYPE_BEING_DEFINED (current_class_type)
&& ! IDENTIFIER_CLASS_VALUE (yyvsp[0].ttype))
{
/* Remember that this name has been used in the class
definition, as per [class.scope0] */
pushdecl_class_level (yyval.ttype);
}
}
else
yyval.ttype = yyvsp[0].ttype;
;
break;}
case 562:
#line 2765 "parse.y"
{
if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
else
yyval.ttype = yyvsp[0].ttype;
got_scope = NULL_TREE;
;
break;}
case 565:
#line 2778 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 566:
#line 2783 "parse.y"
{ yyval.ttype = get_type_decl (yyvsp[0].ttype); ;
break;}
case 567:
#line 2788 "parse.y"
{ yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 568:
#line 2790 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 569:
#line 2792 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
break;}
case 570:
#line 2794 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 571:
#line 2796 "parse.y"
{ push_nested_class (yyvsp[-1].ttype, 3);
yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype);
TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
break;}
case 573:
#line 2807 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
break;}
case 574:
#line 2809 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
break;}
case 575:
#line 2811 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 576:
#line 2813 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 577:
#line 2815 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 579:
#line 2823 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
break;}
case 580:
#line 2825 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
break;}
case 581:
#line 2827 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 582:
#line 2829 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 583:
#line 2831 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 585:
#line 2839 "parse.y"
{ yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 586:
#line 2841 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 587:
#line 2843 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 588:
#line 2845 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
break;}
case 589:
#line 2847 "parse.y"
{ if (OP0 (yyval.ttype) != current_class_type)
{
push_nested_class (OP0 (yyval.ttype), 3);
TREE_COMPLEXITY (yyval.ttype) = current_class_depth;
}
;
break;}
case 590:
#line 2854 "parse.y"
{ got_scope = NULL_TREE;
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype);
if (yyvsp[-1].ttype != current_class_type)
{
push_nested_class (yyvsp[-1].ttype, 3);
TREE_COMPLEXITY (yyval.ttype) = current_class_depth;
}
;
break;}
case 591:
#line 2866 "parse.y"
{ got_scope = NULL_TREE;
yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 592:
#line 2869 "parse.y"
{ got_scope = NULL_TREE;
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 593:
#line 2875 "parse.y"
{ got_scope = NULL_TREE;
yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
break;}
case 594:
#line 2878 "parse.y"
{ got_scope = NULL_TREE;
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 596:
#line 2885 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 597:
#line 2890 "parse.y"
{ yyval.ttype = build_functional_cast (yyvsp[-3].ftype.t, yyvsp[-1].ttype); ;
break;}
case 598:
#line 2892 "parse.y"
{ yyval.ttype = reparse_decl_as_expr (yyvsp[-3].ftype.t, yyvsp[-1].ttype); ;
break;}
case 599:
#line 2894 "parse.y"
{ yyval.ttype = reparse_absdcl_as_expr (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
break;}
case 604:
#line 2906 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 605:
#line 2908 "parse.y"
{ got_scope = yyval.ttype = make_typename_type (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 606:
#line 2915 "parse.y"
{
if (TREE_CODE (yyvsp[-1].ttype) == IDENTIFIER_NODE)
{
yyval.ttype = lastiddecl;
/* Remember that this name has been used in the class
definition, as per [class.scope0] */
if (current_class_type
&& TYPE_BEING_DEFINED (current_class_type)
&& ! IDENTIFIER_CLASS_VALUE (yyvsp[-1].ttype))
pushdecl_class_level (yyval.ttype);
}
got_scope = yyval.ttype = TREE_TYPE (yyval.ttype);
;
break;}
case 607:
#line 2929 "parse.y"
{
if (TREE_CODE (yyvsp[-1].ttype) == IDENTIFIER_NODE)
yyval.ttype = lastiddecl;
got_scope = yyval.ttype = TREE_TYPE (yyval.ttype);
;
break;}
case 608:
#line 2935 "parse.y"
{
if (TREE_CODE (yyval.ttype) == IDENTIFIER_NODE)
yyval.ttype = lastiddecl;
got_scope = yyval.ttype;
;
break;}
case 609:
#line 2941 "parse.y"
{ got_scope = yyval.ttype = complete_type (TREE_TYPE (yyvsp[-1].ttype)); ;
break;}
case 611:
#line 2957 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 612:
#line 2962 "parse.y"
{
if (TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype)) == 't')
yyval.ttype = make_typename_type (yyvsp[-1].ttype, yyvsp[0].ttype);
else if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
cp_error ("`%T' is not a class or namespace", yyvsp[0].ttype);
else
{
yyval.ttype = yyvsp[0].ttype;
if (TREE_CODE (yyval.ttype) == TYPE_DECL)
yyval.ttype = TREE_TYPE (yyval.ttype);
}
;
break;}
case 613:
#line 2975 "parse.y"
{ yyval.ttype = TREE_TYPE (yyvsp[0].ttype); ;
break;}
case 614:
#line 2977 "parse.y"
{ yyval.ttype = make_typename_type (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 615:
#line 2979 "parse.y"
{ yyval.ttype = make_typename_type (yyvsp[-2].ttype, yyvsp[0].ttype); ;
break;}
case 616:
#line 2984 "parse.y"
{
if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
cp_error ("`%T' is not a class or namespace", yyvsp[0].ttype);
;
break;}
case 617:
#line 2989 "parse.y"
{
if (TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype)) == 't')
yyval.ttype = make_typename_type (yyvsp[-1].ttype, yyvsp[0].ttype);
else if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
cp_error ("`%T' is not a class or namespace", yyvsp[0].ttype);
else
{
yyval.ttype = yyvsp[0].ttype;
if (TREE_CODE (yyval.ttype) == TYPE_DECL)
yyval.ttype = TREE_TYPE (yyval.ttype);
}
;
break;}
case 618:
#line 3002 "parse.y"
{ got_scope = yyval.ttype = make_typename_type (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
break;}
case 619:
#line 3004 "parse.y"
{ got_scope = yyval.ttype = make_typename_type (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 620:
#line 3009 "parse.y"
{
if (TREE_CODE (yyvsp[-1].ttype) != IDENTIFIER_NODE)
yyvsp[-1].ttype = lastiddecl;
got_scope = yyval.ttype = complete_type (TREE_TYPE (yyvsp[-1].ttype));
if (yyval.ttype == error_mark_node)
cp_error ("`%T' is not a class or namespace", yyvsp[-1].ttype);
;
break;}
case 621:
#line 3019 "parse.y"
{
if (TREE_CODE (yyvsp[-1].ttype) != IDENTIFIER_NODE)
yyval.ttype = lastiddecl;
got_scope = yyval.ttype = complete_type (TREE_TYPE (yyval.ttype));
;
break;}
case 622:
#line 3025 "parse.y"
{ got_scope = yyval.ttype = complete_type (TREE_TYPE (yyval.ttype)); ;
break;}
case 625:
#line 3029 "parse.y"
{
if (TREE_CODE (yyval.ttype) == IDENTIFIER_NODE)
yyval.ttype = lastiddecl;
got_scope = yyval.ttype;
;
break;}
case 626:
#line 3038 "parse.y"
{ yyval.ttype = build_min_nt (TEMPLATE_ID_EXPR, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 627:
#line 3043 "parse.y"
{
if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
else
yyval.ttype = yyvsp[0].ttype;
got_scope = NULL_TREE;
;
break;}
case 629:
#line 3052 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 630:
#line 3057 "parse.y"
{ got_scope = NULL_TREE; ;
break;}
case 631:
#line 3059 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; got_scope = NULL_TREE; ;
break;}
case 632:
#line 3066 "parse.y"
{ got_scope = void_type_node; ;
break;}
case 633:
#line 3072 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 634:
#line 3074 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 635:
#line 3076 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 636:
#line 3078 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
break;}
case 637:
#line 3080 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
;
break;}
case 638:
#line 3084 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 640:
#line 3093 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
break;}
case 641:
#line 3095 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 642:
#line 3101 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
break;}
case 643:
#line 3103 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 644:
#line 3105 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[0].ftype.t, NULL_TREE); ;
break;}
case 645:
#line 3107 "parse.y"
{ yyval.ttype = make_pointer_declarator (NULL_TREE, NULL_TREE); ;
break;}
case 646:
#line 3109 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
break;}
case 647:
#line 3111 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
break;}
case 648:
#line 3113 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[0].ftype.t, NULL_TREE); ;
break;}
case 649:
#line 3115 "parse.y"
{ yyval.ttype = make_reference_declarator (NULL_TREE, NULL_TREE); ;
break;}
case 650:
#line 3117 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
;
break;}
case 651:
#line 3121 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 653:
#line 3130 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 655:
#line 3134 "parse.y"
{ yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 656:
#line 3136 "parse.y"
{ yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 657:
#line 3138 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 658:
#line 3140 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
break;}
case 659:
#line 3142 "parse.y"
{ yyval.ttype = make_call_declarator (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 660:
#line 3144 "parse.y"
{ set_quals_and_spec (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 661:
#line 3146 "parse.y"
{ set_quals_and_spec (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 662:
#line 3148 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
break;}
case 663:
#line 3150 "parse.y"
{ yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); ;
break;}
case 670:
#line 3173 "parse.y"
{ if (pedantic)
pedwarn ("ANSI C++ forbids label declarations"); ;
break;}
case 673:
#line 3184 "parse.y"
{ tree link;
for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
{
tree label = shadow_label (TREE_VALUE (link));
C_DECLARED_LABEL_FLAG (label) = 1;
declare_nonlocal_label (label);
}
;
break;}
case 674:
#line 3198 "parse.y"
{;
break;}
case 676:
#line 3204 "parse.y"
{ yyval.ttype = begin_compound_stmt (0); ;
break;}
case 677:
#line 3206 "parse.y"
{ yyval.ttype = finish_compound_stmt (0, yyvsp[-1].ttype); ;
break;}
case 678:
#line 3211 "parse.y"
{
yyval.ttype = begin_if_stmt ();
cond_stmt_keyword = "if";
;
break;}
case 679:
#line 3216 "parse.y"
{ finish_if_stmt_cond (yyvsp[0].ttype, yyvsp[-1].ttype); ;
break;}
case 680:
#line 3218 "parse.y"
{ yyval.ttype = finish_then_clause (yyvsp[-3].ttype); ;
break;}
case 682:
#line 3223 "parse.y"
{ yyval.ttype = begin_compound_stmt (0); ;
break;}
case 683:
#line 3225 "parse.y"
{ yyval.ttype = finish_compound_stmt (0, yyvsp[-1].ttype); ;
break;}
case 684:
#line 3230 "parse.y"
{;
break;}
case 686:
#line 3236 "parse.y"
{ finish_stmt (); ;
break;}
case 687:
#line 3238 "parse.y"
{ finish_expr_stmt (yyvsp[-1].ttype); ;
break;}
case 688:
#line 3240 "parse.y"
{ begin_else_clause (); ;
break;}
case 689:
#line 3242 "parse.y"
{
finish_else_clause (yyvsp[-3].ttype);
finish_if_stmt ();
;
break;}
case 690:
#line 3247 "parse.y"
{ finish_if_stmt (); ;
break;}
case 691:
#line 3249 "parse.y"
{
yyval.ttype = begin_while_stmt ();
cond_stmt_keyword = "while";
;
break;}
case 692:
#line 3254 "parse.y"
{ finish_while_stmt_cond (yyvsp[0].ttype, yyvsp[-1].ttype); ;
break;}
case 693:
#line 3256 "parse.y"
{ finish_while_stmt (yyvsp[-3].ttype); ;
break;}
case 694:
#line 3258 "parse.y"
{ yyval.ttype = begin_do_stmt (); ;
break;}
case 695:
#line 3260 "parse.y"
{
finish_do_body (yyvsp[-2].ttype);
cond_stmt_keyword = "do";
;
break;}
case 696:
#line 3265 "parse.y"
{ finish_do_stmt (yyvsp[-1].ttype, yyvsp[-5].ttype); ;
break;}
case 697:
#line 3267 "parse.y"
{ yyval.ttype = begin_for_stmt (); ;
break;}
case 698:
#line 3269 "parse.y"
{ finish_for_init_stmt (yyvsp[-2].ttype); ;
break;}
case 699:
#line 3271 "parse.y"
{ finish_for_cond (yyvsp[-1].ttype, yyvsp[-5].ttype); ;
break;}
case 700:
#line 3273 "parse.y"
{ finish_for_expr (yyvsp[-1].ttype, yyvsp[-8].ttype); ;
break;}
case 701:
#line 3275 "parse.y"
{ finish_for_stmt (yyvsp[-3].ttype, yyvsp[-10].ttype); ;
break;}
case 702:
#line 3277 "parse.y"
{ begin_switch_stmt (); ;
break;}
case 703:
#line 3279 "parse.y"
{ yyval.ttype = finish_switch_cond (yyvsp[-1].ttype); ;
break;}
case 704:
#line 3281 "parse.y"
{ finish_switch_stmt (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 705:
#line 3283 "parse.y"
{ finish_case_label (yyvsp[-1].ttype, NULL_TREE); ;
break;}
case 707:
#line 3286 "parse.y"
{ finish_case_label (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
break;}
case 709:
#line 3289 "parse.y"
{ finish_case_label (NULL_TREE, NULL_TREE); ;
break;}
case 711:
#line 3292 "parse.y"
{ finish_break_stmt (); ;
break;}
case 712:
#line 3294 "parse.y"
{ finish_continue_stmt (); ;
break;}
case 713:
#line 3296 "parse.y"
{ finish_return_stmt (NULL_TREE); ;
break;}
case 714:
#line 3298 "parse.y"
{ finish_return_stmt (yyvsp[-1].ttype); ;
break;}
case 715:
#line 3300 "parse.y"
{
finish_asm_stmt (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
NULL_TREE);
;
break;}
case 716:
#line 3306 "parse.y"
{
finish_asm_stmt (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
NULL_TREE);
;
break;}
case 717:
#line 3312 "parse.y"
{ finish_asm_stmt (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE); ;
break;}
case 718:
#line 3316 "parse.y"
{ finish_asm_stmt (yyvsp[-10].ttype, yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype); ;
break;}
case 719:
#line 3318 "parse.y"
{
if (pedantic)
pedwarn ("ANSI C++ forbids computed gotos");
finish_goto_stmt (yyvsp[-1].ttype);
;
break;}
case 720:
#line 3324 "parse.y"
{ finish_goto_stmt (yyvsp[-1].ttype); ;
break;}
case 721:
#line 3326 "parse.y"
{ finish_stmt (); ;
break;}
case 722:
#line 3328 "parse.y"
{ error ("label must be followed by statement");
yyungetc ('}', 0);
finish_stmt (); ;
break;}
case 723:
#line 3332 "parse.y"
{ finish_stmt (); ;
break;}
case 725:
#line 3338 "parse.y"
{
if (! current_function_parms_stored)
store_parm_decls ();
expand_start_early_try_stmts ();
;
break;}
case 726:
#line 3344 "parse.y"
{ expand_start_all_catch (); ;
break;}
case 727:
#line 3346 "parse.y"
{
int nested = (hack_decl_function_context
(current_function_decl) != NULL_TREE);
expand_end_all_catch ();
finish_function (lineno, (int)yyvsp[-3].itype, nested);
;
break;}
case 728:
#line 3356 "parse.y"
{ yyval.ttype = begin_try_block (); ;
break;}
case 729:
#line 3358 "parse.y"
{ finish_try_block (yyvsp[-1].ttype); ;
break;}
case 730:
#line 3360 "parse.y"
{ finish_handler_sequence (yyvsp[-3].ttype); ;
break;}
case 733:
#line 3370 "parse.y"
{ yyval.ttype = begin_handler(); ;
break;}
case 734:
#line 3372 "parse.y"
{ finish_handler_parms (yyvsp[-1].ttype); ;
break;}
case 735:
#line 3374 "parse.y"
{ finish_handler (yyvsp[-3].ttype); ;
break;}
case 738:
#line 3384 "parse.y"
{ expand_start_catch_block (NULL_TREE, NULL_TREE); ;
break;}
case 739:
#line 3400 "parse.y"
{ check_for_new_type ("inside exception declarations", yyvsp[-1].ftype);
expand_start_catch_block (TREE_PURPOSE (yyvsp[-1].ftype.t),
TREE_VALUE (yyvsp[-1].ftype.t)); ;
break;}
case 740:
#line 3407 "parse.y"
{ tree label;
do_label:
label = define_label (input_filename, lineno, yyvsp[-1].ttype);
if (label && ! minimal_parse_mode)
expand_label (label);
;
break;}
case 741:
#line 3414 "parse.y"
{ goto do_label; ;
break;}
case 742:
#line 3416 "parse.y"
{ goto do_label; ;
break;}
case 743:
#line 3418 "parse.y"
{ goto do_label; ;
break;}
case 744:
#line 3423 "parse.y"
{ if (yyvsp[-1].ttype) cplus_expand_expr_stmt (yyvsp[-1].ttype); ;
break;}
case 746:
#line 3426 "parse.y"
{ if (pedantic)
pedwarn ("ANSI C++ forbids compound statements inside for initializations");
;
break;}
case 747:
#line 3435 "parse.y"
{ emit_line_note (input_filename, lineno);
yyval.ttype = NULL_TREE; ;
break;}
case 748:
#line 3438 "parse.y"
{ emit_line_note (input_filename, lineno); ;
break;}
case 749:
#line 3443 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 751:
#line 3446 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 752:
#line 3453 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 755:
#line 3460 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
break;}
case 756:
#line 3465 "parse.y"
{ yyval.ttype = build_tree_list (yyval.ttype, yyvsp[-1].ttype); ;
break;}
case 757:
#line 3470 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ;
break;}
case 758:
#line 3472 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
break;}
case 759:
#line 3483 "parse.y"
{
yyval.ttype = empty_parms();
;
break;}
case 761:
#line 3488 "parse.y"
{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ftype.t, void_list_node);
TREE_PARMLIST (yyval.ttype) = 1;
check_for_new_type ("inside parameter list", yyvsp[0].ftype); ;
break;}
case 762:
#line 3497 "parse.y"
{
yyval.ttype = chainon (yyval.ttype, void_list_node);
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 763:
#line 3502 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 764:
#line 3507 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 765:
#line 3511 "parse.y"
{
yyval.ttype = build_tree_list (NULL_TREE, yyvsp[-1].ftype.t);
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 766:
#line 3516 "parse.y"
{
yyval.ttype = NULL_TREE;
;
break;}
case 767:
#line 3520 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 768:
#line 3524 "parse.y"
{
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 769:
#line 3528 "parse.y"
{
yyval.ttype = build_tree_list (NULL_TREE, yyvsp[-1].ftype.t);
TREE_PARMLIST (yyval.ttype) = 1;
;
break;}
case 770:
#line 3533 "parse.y"
{
/* This helps us recover from really nasty
parse errors, for example, a missing right
parenthesis. */
yyerror ("possibly missing ')'");
yyval.ttype = chainon (yyval.ttype, void_list_node);
TREE_PARMLIST (yyval.ttype) = 1;
yyungetc (':', 0);
yychar = ')';
;
break;}
case 771:
#line 3544 "parse.y"
{
/* This helps us recover from really nasty
parse errors, for example, a missing right
parenthesis. */
yyerror ("possibly missing ')'");
yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ftype.t, void_list_node);
TREE_PARMLIST (yyval.ttype) = 1;
yyungetc (':', 0);
yychar = ')';
;
break;}
case 772:
#line 3559 "parse.y"
{ maybe_snarf_defarg (); ;
break;}
case 773:
#line 3561 "parse.y"
{ yyval.ttype = yyvsp[0].ttype; ;
break;}
case 776:
#line 3572 "parse.y"
{ check_for_new_type ("in a parameter list", yyvsp[0].ftype);
yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ftype.t); ;
break;}
case 777:
#line 3575 "parse.y"
{ check_for_new_type ("in a parameter list", yyvsp[-1].ftype);
yyval.ttype = build_tree_list (yyvsp[0].ttype, yyvsp[-1].ftype.t); ;
break;}
case 778:
#line 3578 "parse.y"
{ check_for_new_type ("in a parameter list", yyvsp[0].ftype);
yyval.ttype = chainon (yyval.ttype, yyvsp[0].ftype.t); ;
break;}
case 779:
#line 3581 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
break;}
case 780:
#line 3583 "parse.y"
{ yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ;
break;}
case 782:
#line 3589 "parse.y"
{ check_for_new_type ("in a parameter list", yyvsp[-1].ftype);
yyval.ttype = build_tree_list (NULL_TREE, yyvsp[-1].ftype.t); ;
break;}
case 783:
#line 3599 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ftype.t);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag;
yyval.ftype.t = build_tree_list (specs, yyvsp[0].ttype); ;
break;}
case 784:
#line 3603 "parse.y"
{ yyval.ftype.t = build_tree_list (yyvsp[-1].ftype.t, yyvsp[0].ttype);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 785:
#line 3606 "parse.y"
{ yyval.ftype.t = build_tree_list (get_decl_list (yyvsp[-1].ftype.t), yyvsp[0].ttype);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 786:
#line 3609 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ftype.t);
yyval.ftype.t = build_tree_list (specs, yyvsp[0].ttype);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 787:
#line 3613 "parse.y"
{ tree specs = strip_attrs (yyvsp[0].ftype.t);
yyval.ftype.t = build_tree_list (specs, NULL_TREE);
yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
break;}
case 788:
#line 3617 "parse.y"
{ tree specs = strip_attrs (yyvsp[-1].ttype);
yyval.ftype.t = build_tree_list (specs, yyvsp[0].ttype);
yyval.ftype.new_type_flag = 0; ;
break;}
case 789:
#line 3624 "parse.y"
{ yyval.ftype.t = build_tree_list (NULL_TREE, yyvsp[0].ftype.t);
yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ;
break;}
case 790:
#line 3627 "parse.y"
{ yyval.ftype.t = build_tree_list (yyvsp[0].ttype, yyvsp[-1].ftype.t);
yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ;
break;}
case 793:
#line 3638 "parse.y"
{ see_typename (); ;
break;}
case 794:
#line 3643 "parse.y"
{
error ("type specifier omitted for parameter");
yyval.ttype = build_tree_list (integer_type_node, NULL_TREE);
;
break;}
case 795:
#line 3648 "parse.y"
{
error ("type specifier omitted for parameter");
if (TREE_CODE (yyval.ttype) == SCOPE_REF
&& (TREE_CODE (TREE_OPERAND (yyval.ttype, 0)) == TEMPLATE_TYPE_PARM
|| TREE_CODE (TREE_OPERAND (yyval.ttype, 0)) == TEMPLATE_TEMPLATE_PARM))
cp_error (" perhaps you want `typename %E' to make it a type", yyval.ttype);
yyval.ttype = build_tree_list (integer_type_node, yyval.ttype);
;
break;}
case 796:
#line 3660 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 797:
#line 3662 "parse.y"
{ yyval.ttype = yyvsp[-1].ttype; ;
break;}
case 798:
#line 3664 "parse.y"
{ yyval.ttype = build_decl_list (NULL_TREE, NULL_TREE); ;
break;}
case 799:
#line 3669 "parse.y"
{ yyval.ttype = build_decl_list (NULL_TREE, groktypename(yyvsp[0].ftype.t)); ;
break;}
case 801:
#line 3675 "parse.y"
{
TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype;
yyval.ttype = yyvsp[0].ttype;
;
break;}
case 802:
#line 3683 "parse.y"
{ yyval.ttype = NULL_TREE; ;
break;}
case 803:
#line 3685 "parse.y"
{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 804:
#line 3687 "parse.y"
{ yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
break;}
case 805:
#line 3689 "parse.y"
{ tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
;
break;}
case 806:
#line 3696 "parse.y"
{ got_scope = NULL_TREE; ;
break;}
case 807:
#line 3701 "parse.y"
{ yyval.ttype = ansi_opname[MULT_EXPR]; ;
break;}
case 808:
#line 3703 "parse.y"
{ yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ;
break;}
case 809:
#line 3705 "parse.y"
{ yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ;
break;}
case 810:
#line 3707 "parse.y"
{ yyval.ttype = ansi_opname[PLUS_EXPR]; ;
break;}
case 811:
#line 3709 "parse.y"
{ yyval.ttype = ansi_opname[MINUS_EXPR]; ;
break;}
case 812:
#line 3711 "parse.y"
{ yyval.ttype = ansi_opname[BIT_AND_EXPR]; ;
break;}
case 813:
#line 3713 "parse.y"
{ yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ;
break;}
case 814:
#line 3715 "parse.y"
{ yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ;
break;}
case 815:
#line 3717 "parse.y"
{ yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ;
break;}
case 816:
#line 3719 "parse.y"
{ yyval.ttype = ansi_opname[COMPOUND_EXPR]; ;
break;}
case 817:
#line 3721 "parse.y"
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 818:
#line 3723 "parse.y"
{ yyval.ttype = ansi_opname[LT_EXPR]; ;
break;}
case 819:
#line 3725 "parse.y"
{ yyval.ttype = ansi_opname[GT_EXPR]; ;
break;}
case 820:
#line 3727 "parse.y"
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 821:
#line 3729 "parse.y"
{ yyval.ttype = ansi_assopname[yyvsp[0].code]; ;
break;}
case 822:
#line 3731 "parse.y"
{ yyval.ttype = ansi_opname [MODIFY_EXPR]; ;
break;}
case 823:
#line 3733 "parse.y"
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 824:
#line 3735 "parse.y"
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 825:
#line 3737 "parse.y"
{ yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ;
break;}
case 826:
#line 3739 "parse.y"
{ yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ;
break;}
case 827:
#line 3741 "parse.y"
{ yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ;
break;}
case 828:
#line 3743 "parse.y"
{ yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ;
break;}
case 829:
#line 3745 "parse.y"
{ yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ;
break;}
case 830:
#line 3747 "parse.y"
{ yyval.ttype = ansi_opname[COND_EXPR]; ;
break;}
case 831:
#line 3749 "parse.y"
{ yyval.ttype = ansi_opname[yyvsp[0].code]; ;
break;}
case 832:
#line 3751 "parse.y"
{ yyval.ttype = ansi_opname[COMPONENT_REF]; ;
break;}
case 833:
#line 3753 "parse.y"
{ yyval.ttype = ansi_opname[MEMBER_REF]; ;
break;}
case 834:
#line 3755 "parse.y"
{ yyval.ttype = ansi_opname[CALL_EXPR]; ;
break;}
case 835:
#line 3757 "parse.y"
{ yyval.ttype = ansi_opname[ARRAY_REF]; ;
break;}
case 836:
#line 3759 "parse.y"
{ yyval.ttype = ansi_opname[NEW_EXPR]; ;
break;}
case 837:
#line 3761 "parse.y"
{ yyval.ttype = ansi_opname[DELETE_EXPR]; ;
break;}
case 838:
#line 3763 "parse.y"
{ yyval.ttype = ansi_opname[VEC_NEW_EXPR]; ;
break;}
case 839:
#line 3765 "parse.y"
{ yyval.ttype = ansi_opname[VEC_DELETE_EXPR]; ;
break;}
case 840:
#line 3768 "parse.y"
{ yyval.ttype = grokoptypename (yyvsp[-1].ftype.t, yyvsp[0].ttype); ;
break;}
case 841:
#line 3770 "parse.y"
{ yyval.ttype = ansi_opname[ERROR_MARK]; ;
break;}
}
/* the action file gets copied in in place of this dollarsign */
#line 498 "/usr/cygnus/latest-940103/share/bison.simple"
yyvsp -= yylen;
yyssp -= yylen;
#ifdef YYLSP_NEEDED
yylsp -= yylen;
#endif
#if YYDEBUG != 0
if (yydebug)
{
short *ssp1 = yyss - 1;
fprintf (stderr, "state stack now");
while (ssp1 != yyssp)
fprintf (stderr, " %d", *++ssp1);
fprintf (stderr, "\n");
}
#endif
*++yyvsp = yyval;
#ifdef YYLSP_NEEDED
yylsp++;
if (yylen == 0)
{
yylsp->first_line = yylloc.first_line;
yylsp->first_column = yylloc.first_column;
yylsp->last_line = (yylsp-1)->last_line;
yylsp->last_column = (yylsp-1)->last_column;
yylsp->text = 0;
}
else
{
yylsp->last_line = (yylsp+yylen-1)->last_line;
yylsp->last_column = (yylsp+yylen-1)->last_column;
}
#endif
/* 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 - YYNTBASE] + *yyssp;
if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
yystate = yytable[yystate];
else
yystate = yydefgoto[yyn - YYNTBASE];
goto yynewstate;
yyerrlab: /* here on detecting error */
if (! yyerrstatus)
/* If not already recovering from an error, report this error. */
{
++yynerrs;
#ifdef YYERROR_VERBOSE
yyn = yypact[yystate];
if (yyn > YYFLAG && yyn < YYLAST)
{
int size = 0;
char *msg;
int x, count;
count = 0;
/* Start X at -yyn if nec to avoid negative indexes in yycheck. */
for (x = (yyn < 0 ? -yyn : 0);
x < (sizeof(yytname) / sizeof(char *)); x++)
if (yycheck[x + yyn] == x)
size += strlen(yytname[x]) + 15, count++;
msg = (char *) malloc(size + 15);
if (msg != 0)
{
strcpy(msg, "parse error");
if (count < 5)
{
count = 0;
for (x = (yyn < 0 ? -yyn : 0);
x < (sizeof(yytname) / sizeof(char *)); x++)
if (yycheck[x + yyn] == x)
{
strcat(msg, count == 0 ? ", expecting `" : " or `");
strcat(msg, yytname[x]);
strcat(msg, "'");
count++;
}
}
yyerror(msg);
free(msg);
}
else
yyerror ("parse error; also virtual memory exceeded");
}
else
#endif /* YYERROR_VERBOSE */
yyerror("parse error");
}
goto yyerrlab1;
yyerrlab1: /* here on error raised explicitly by an action */
if (yyerrstatus == 3)
{
/* if just tried and failed to reuse lookahead token after an error, discard it. */
/* return failure if at end of input */
if (yychar == YYEOF)
YYABORT;
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
#endif
yychar = YYEMPTY;
}
/* Else will try to reuse lookahead token
after shifting the error token. */
yyerrstatus = 3; /* Each real token shifted decrements this */
goto yyerrhandle;
yyerrdefault: /* current state does not do anything special for the error token. */
#if 0
/* This is wrong; only states that explicitly want error tokens
should shift them. */
yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/
if (yyn) goto yydefault;
#endif
yyerrpop: /* pop the current state because it cannot handle the error token */
if (yyssp == yyss) YYABORT;
yyvsp--;
yystate = *--yyssp;
#ifdef YYLSP_NEEDED
yylsp--;
#endif
#if YYDEBUG != 0
if (yydebug)
{
short *ssp1 = yyss - 1;
fprintf (stderr, "Error: state stack now");
while (ssp1 != yyssp)
fprintf (stderr, " %d", *++ssp1);
fprintf (stderr, "\n");
}
#endif
yyerrhandle:
yyn = yypact[yystate];
if (yyn == YYFLAG)
goto yyerrdefault;
yyn += YYTERROR;
if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
goto yyerrdefault;
yyn = yytable[yyn];
if (yyn < 0)
{
if (yyn == YYFLAG)
goto yyerrpop;
yyn = -yyn;
goto yyreduce;
}
else if (yyn == 0)
goto yyerrpop;
if (yyn == YYFINAL)
YYACCEPT;
#if YYDEBUG != 0
if (yydebug)
fprintf(stderr, "Shifting error token, ");
#endif
*++yyvsp = yylval;
#ifdef YYLSP_NEEDED
*++yylsp = yylloc;
#endif
yystate = yyn;
goto yynewstate;
}
#line 3773 "parse.y"
#ifdef SPEW_DEBUG
const char *
debug_yytranslate (value)
int value;
{
return yytname[YYTRANSLATE (value)];
}
#endif