home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / gcc-2.6.3-src.lha / gcc-2.6.3 / cp / parse.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-23  |  325.3 KB  |  7,647 lines

  1.  
  2. /*  A Bison parser, made from parse.y with Bison version GNU Bison version 1.22
  3.   */
  4.  
  5. #define YYBISON 1  /* Identify Bison output.  */
  6.  
  7. #define    IDENTIFIER    258
  8. #define    TYPENAME    259
  9. #define    SCSPEC    260
  10. #define    TYPESPEC    261
  11. #define    TYPE_QUAL    262
  12. #define    CONSTANT    263
  13. #define    STRING    264
  14. #define    ELLIPSIS    265
  15. #define    SIZEOF    266
  16. #define    ENUM    267
  17. #define    IF    268
  18. #define    ELSE    269
  19. #define    WHILE    270
  20. #define    DO    271
  21. #define    FOR    272
  22. #define    SWITCH    273
  23. #define    CASE    274
  24. #define    DEFAULT    275
  25. #define    BREAK    276
  26. #define    CONTINUE    277
  27. #define    RETURN    278
  28. #define    GOTO    279
  29. #define    ASM_KEYWORD    280
  30. #define    GCC_ASM_KEYWORD    281
  31. #define    TYPEOF    282
  32. #define    ALIGNOF    283
  33. #define    HEADOF    284
  34. #define    CLASSOF    285
  35. #define    SIGOF    286
  36. #define    ATTRIBUTE    287
  37. #define    EXTENSION    288
  38. #define    LABEL    289
  39. #define    AGGR    290
  40. #define    VISSPEC    291
  41. #define    DELETE    292
  42. #define    NEW    293
  43. #define    OVERLOAD    294
  44. #define    THIS    295
  45. #define    OPERATOR    296
  46. #define    CXX_TRUE    297
  47. #define    CXX_FALSE    298
  48. #define    LEFT_RIGHT    299
  49. #define    TEMPLATE    300
  50. #define    TYPEID    301
  51. #define    DYNAMIC_CAST    302
  52. #define    STATIC_CAST    303
  53. #define    REINTERPRET_CAST    304
  54. #define    CONST_CAST    305
  55. #define    SCOPE    306
  56. #define    EMPTY    307
  57. #define    PTYPENAME    308
  58. #define    ASSIGN    309
  59. #define    OROR    310
  60. #define    ANDAND    311
  61. #define    MIN_MAX    312
  62. #define    EQCOMPARE    313
  63. #define    ARITHCOMPARE    314
  64. #define    LSHIFT    315
  65. #define    RSHIFT    316
  66. #define    POINTSAT_STAR    317
  67. #define    DOT_STAR    318
  68. #define    UNARY    319
  69. #define    PLUSPLUS    320
  70. #define    MINUSMINUS    321
  71. #define    HYPERUNARY    322
  72. #define    PAREN_STAR_PAREN    323
  73. #define    POINTSAT    324
  74. #define    TRY    325
  75. #define    CATCH    326
  76. #define    THROW    327
  77. #define    TYPENAME_ELLIPSIS    328
  78. #define    PRE_PARSED_FUNCTION_DECL    329
  79. #define    EXTERN_LANG_STRING    330
  80. #define    ALL    331
  81. #define    PRE_PARSED_CLASS_DECL    332
  82. #define    TYPENAME_DEFN    333
  83. #define    IDENTIFIER_DEFN    334
  84. #define    PTYPENAME_DEFN    335
  85. #define    END_OF_SAVED_INPUT    336
  86.  
  87. #line 42 "parse.y"
  88.  
  89. /* Cause the `yydebug' variable to be defined.  */
  90. #define YYDEBUG 1
  91.  
  92. #include "config.h"
  93.  
  94. #include <stdio.h>
  95. #include <errno.h>
  96.  
  97. #include "tree.h"
  98. #include "input.h"
  99. #include "flags.h"
  100. #include "lex.h"
  101. #include "cp-tree.h"
  102.  
  103. /* Since parsers are distinct for each language, put the language string
  104.    definition here.  (fnf) */
  105. char *language_string = "GNU C++";
  106.  
  107. extern tree void_list_node;
  108. extern struct obstack permanent_obstack;
  109.  
  110. #ifndef errno
  111. extern int errno;
  112. #endif
  113.  
  114. extern int end_of_file;
  115. extern int current_class_depth;
  116.  
  117. void yyerror ();
  118.  
  119. /* Like YYERROR but do call yyerror.  */
  120. #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
  121.  
  122. #define OP0(NODE) (TREE_OPERAND (NODE, 0))
  123. #define OP1(NODE) (TREE_OPERAND (NODE, 1))
  124.  
  125. /* Contains the statement keyword (if/while/do) to include in an
  126.    error message if the user supplies an empty conditional expression.  */
  127. static char *cond_stmt_keyword;
  128.  
  129. /* Nonzero if we have an `extern "C"' acting as an extern specifier.  */
  130. int have_extern_spec;
  131. int used_extern_spec;
  132.  
  133. void yyhook ();
  134.  
  135. /* Cons up an empty parameter list.  */
  136. #ifdef __GNUC__
  137. __inline
  138. #endif
  139. static tree
  140. empty_parms ()
  141. {
  142.   tree parms;
  143.  
  144.   if (strict_prototype)
  145.     parms = void_list_node;
  146.   else
  147.     parms = NULL_TREE;
  148.   return parms;
  149. }
  150.  
  151. #line 108 "parse.y"
  152. typedef union {long itype; tree ttype; char *strtype; enum tree_code code; } YYSTYPE;
  153. #line 277 "parse.y"
  154.  
  155. /* List of types and structure classes of the current declaration.  */
  156. static tree current_declspecs;
  157.  
  158. /* When defining an aggregate, this is the most recent one being defined.  */
  159. static tree current_aggr;
  160.  
  161. /* Tell yyparse how to print a token's value, if yydebug is set.  */
  162.  
  163. #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
  164. extern void yyprint ();
  165. extern tree combine_strings        PROTO((tree));
  166.  
  167. #ifndef YYLTYPE
  168. typedef
  169.   struct yyltype
  170.     {
  171.       int timestamp;
  172.       int first_line;
  173.       int first_column;
  174.       int last_line;
  175.       int last_column;
  176.       char *text;
  177.    }
  178.   yyltype;
  179.  
  180. #define YYLTYPE yyltype
  181. #endif
  182.  
  183. #include <stdio.h>
  184.  
  185. #ifndef __cplusplus
  186. #ifndef __STDC__
  187. #ifndef const
  188. #define const
  189. #endif
  190. #endif
  191. #endif
  192.  
  193.  
  194.  
  195. #define    YYFINAL        1350
  196. #define    YYFLAG        -32768
  197. #define    YYNTBASE    106
  198.  
  199. #define YYTRANSLATE(x) ((unsigned)(x) <= 336 ? yytranslate[x] : 338)
  200.  
  201. static const char yytranslate[] = {     0,
  202.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  203.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  204.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  205.      2,     2,   104,     2,     2,     2,    77,    65,     2,    88,
  206.    102,    75,    73,    55,    74,    87,    76,     2,     2,     2,
  207.      2,     2,     2,     2,     2,     2,     2,    60,    56,    69,
  208.     58,    70,    59,     2,     2,     2,     2,     2,     2,     2,
  209.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  210.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  211.     89,     2,   105,    64,     2,     2,     2,     2,     2,     2,
  212.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  213.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  214.      2,     2,    54,    63,   103,    83,     2,     2,     2,     2,
  215.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  216.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  217.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  218.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  219.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  220.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  221.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  222.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  223.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  224.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  225.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  226.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  227.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  228.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  229.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  230.     26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  231.     36,    37,    38,    39,    40,    41,    42,    43,    44,    45,
  232.     46,    47,    48,    49,    50,    51,    52,    53,    57,    61,
  233.     62,    66,    67,    68,    71,    72,    78,    79,    80,    81,
  234.     82,    84,    85,    86,    90,    91,    92,    93,    94,    95,
  235.     96,    97,    98,    99,   100,   101
  236. };
  237.  
  238. #if YYDEBUG != 0
  239. static const short yyprhs[] = {     0,
  240.      0,     1,     3,     4,     7,    10,    11,    12,    14,    16,
  241.     17,    20,    22,    24,    26,    28,    34,    39,    43,    48,
  242.     53,    55,    56,    62,    64,    68,    70,    73,    75,    79,
  243.     81,    85,    87,    91,    92,    98,    99,   105,   106,   112,
  244.    113,   119,   123,   127,   134,   142,   147,   151,   155,   157,
  245.    159,   161,   163,   165,   168,   172,   176,   180,   184,   187,
  246.    190,   193,   196,   199,   201,   205,   210,   214,   220,   225,
  247.    229,   233,   236,   240,   244,   247,   249,   256,   261,   265,
  248.    269,   272,   275,   277,   281,   286,   289,   293,   294,   295,
  249.    297,   301,   304,   308,   310,   315,   318,   323,   326,   331,
  250.    334,   336,   338,   340,   342,   344,   346,   348,   350,   354,
  251.    358,   363,   368,   372,   377,   381,   386,   387,   389,   393,
  252.    395,   397,   398,   405,   406,   408,   409,   412,   414,   416,
  253.    418,   420,   422,   424,   426,   428,   432,   434,   438,   439,
  254.    441,   443,   444,   453,   455,   458,   463,   468,   470,   474,
  255.    478,   482,   486,   488,   490,   492,   493,   497,   500,   503,
  256.    506,   509,   512,   515,   520,   523,   528,   531,   535,   539,
  257.    544,   549,   555,   561,   568,   571,   576,   582,   586,   590,
  258.    594,   596,   600,   603,   607,   612,   614,   617,   623,   625,
  259.    630,   635,   640,   642,   646,   650,   654,   658,   662,   666,
  260.    670,   674,   678,   682,   686,   690,   694,   698,   702,   706,
  261.    710,   714,   718,   724,   728,   732,   734,   737,   741,   743,
  262.    745,   747,   749,   751,   753,   755,   758,   761,   763,   765,
  263.    767,   769,   771,   773,   775,   779,   783,   784,   789,   790,
  264.    797,   800,   805,   808,   811,   813,   818,   820,   828,   836,
  265.    844,   852,   857,   862,   865,   868,   870,   875,   878,   881,
  266.    884,   890,   894,   900,   904,   909,   916,   918,   921,   923,
  267.    926,   928,   930,   932,   935,   936,   939,   942,   946,   950,
  268.    954,   958,   962,   965,   968,   970,   972,   974,   977,   980,
  269.    983,   986,   988,   990,   992,   994,   997,  1000,  1004,  1008,
  270.   1013,  1015,  1018,  1021,  1023,  1025,  1028,  1031,  1033,  1036,
  271.   1039,  1043,  1045,  1048,  1050,  1052,  1054,  1059,  1064,  1069,
  272.   1074,  1076,  1078,  1080,  1082,  1086,  1088,  1092,  1094,  1098,
  273.   1099,  1104,  1105,  1113,  1118,  1119,  1127,  1132,  1133,  1141,
  274.   1146,  1147,  1155,  1160,  1161,  1163,  1165,  1168,  1175,  1177,
  275.   1181,  1182,  1184,  1189,  1196,  1201,  1203,  1205,  1207,  1209,
  276.   1211,  1215,  1217,  1220,  1224,  1229,  1231,  1233,  1237,  1242,
  277.   1249,  1253,  1259,  1260,  1268,  1273,  1274,  1281,  1285,  1288,
  278.   1291,  1296,  1298,  1299,  1301,  1302,  1304,  1306,  1309,  1312,
  279.   1315,  1318,  1322,  1325,  1328,  1331,  1335,  1339,  1341,  1344,
  280.   1345,  1346,  1350,  1354,  1357,  1359,  1361,  1362,  1364,  1367,
  281.   1369,  1373,  1375,  1378,  1380,  1385,  1390,  1392,  1394,  1397,
  282.   1400,  1402,  1403,  1405,  1410,  1414,  1416,  1419,  1422,  1425,
  283.   1428,  1431,  1434,  1437,  1440,  1445,  1448,  1450,  1456,  1460,
  284.   1461,  1463,  1467,  1468,  1470,  1474,  1476,  1478,  1480,  1482,
  285.   1487,  1494,  1499,  1504,  1511,  1516,  1520,  1525,  1532,  1537,
  286.   1542,  1549,  1554,  1558,  1560,  1564,  1566,  1570,  1573,  1575,
  287.   1582,  1583,  1586,  1588,  1591,  1592,  1595,  1599,  1603,  1606,
  288.   1609,  1613,  1615,  1617,  1619,  1622,  1628,  1634,  1638,  1644,
  289.   1649,  1653,  1657,  1660,  1662,  1666,  1670,  1673,  1676,  1680,
  290.   1682,  1686,  1690,  1693,  1696,  1700,  1702,  1708,  1714,  1718,
  291.   1724,  1728,  1732,  1737,  1741,  1744,  1747,  1749,  1752,  1757,
  292.   1762,  1765,  1767,  1769,  1771,  1774,  1777,  1780,  1782,  1785,
  293.   1787,  1790,  1793,  1797,  1799,  1803,  1806,  1810,  1813,  1816,
  294.   1820,  1822,  1826,  1831,  1835,  1838,  1841,  1843,  1847,  1850,
  295.   1853,  1855,  1858,  1862,  1864,  1868,  1870,  1876,  1880,  1885,
  296.   1889,  1894,  1897,  1900,  1904,  1907,  1909,  1911,  1914,  1917,
  297.   1920,  1921,  1922,  1924,  1926,  1929,  1933,  1935,  1938,  1942,
  298.   1948,  1955,  1961,  1962,  1963,  1970,  1972,  1975,  1977,  1979,
  299.   1981,  1984,  1985,  1990,  1992,  1993,  1994,  2001,  2002,  2003,
  300.   2011,  2012,  2013,  2014,  2025,  2026,  2027,  2028,  2039,  2040,
  301.   2048,  2049,  2055,  2056,  2064,  2065,  2070,  2073,  2076,  2079,
  302.   2083,  2090,  2099,  2110,  2123,  2128,  2132,  2135,  2138,  2140,
  303.   2142,  2143,  2144,  2152,  2154,  2157,  2160,  2161,  2162,  2168,
  304.   2170,  2172,  2176,  2180,  2183,  2186,  2189,  2193,  2198,  2203,
  305.   2207,  2212,  2219,  2226,  2227,  2229,  2230,  2232,  2234,  2235,
  306.   2237,  2239,  2243,  2248,  2250,  2254,  2255,  2257,  2259,  2261,
  307.   2264,  2267,  2270,  2272,  2274,  2277,  2280,  2283,  2286,  2288,
  308.   2292,  2295,  2298,  2303,  2306,  2309,  2312,  2315,  2318,  2321,
  309.   2323,  2326,  2328,  2332,  2334,  2336,  2337,  2338,  2340,  2341,
  310.   2346,  2348,  2350,  2354,  2355,  2359,  2363,  2367,  2369,  2372,
  311.   2375,  2378,  2381,  2384,  2387,  2390,  2393,  2396,  2399,  2402,
  312.   2405,  2408,  2411,  2414,  2417,  2420,  2423,  2426,  2429,  2432,
  313.   2435,  2438,  2442,  2445,  2448,  2451,  2454,  2458,  2461,  2464,
  314.   2469,  2474,  2478
  315. };
  316.  
  317. static const short yyrhs[] = {    -1,
  318.    107,     0,     0,   108,   112,     0,   107,   112,     0,     0,
  319.      0,    25,     0,    26,     0,     0,   113,   114,     0,   130,
  320.      0,   129,     0,   123,     0,   121,     0,   111,    88,   180,
  321.    102,    56,     0,   115,    54,   107,   103,     0,   115,    54,
  322.    103,     0,   115,   109,   130,   110,     0,   115,   109,   129,
  323.    110,     0,    95,     0,     0,    45,    69,   117,   118,    70,
  324.      0,   120,     0,   118,    55,   120,     0,   221,     0,   221,
  325.    139,     0,   119,     0,   119,    58,   193,     0,   328,     0,
  326.     39,   122,    56,     0,     3,     0,   122,    55,     3,     0,
  327.      0,   116,   223,    54,   124,    56,     0,     0,   116,   224,
  328.     54,   125,    56,     0,     0,   116,   223,    60,   126,    56,
  329.      0,     0,   116,   224,    60,   127,    56,     0,   116,   223,
  330.     56,     0,   116,   224,    56,     0,   116,   259,   332,   198,
  331.    207,   128,     0,   116,   187,   184,   332,   198,   207,   128,
  332.      0,   116,   190,   259,   128,     0,   116,     1,   103,     0,
  333.    116,     1,    56,     0,    54,     0,    60,     0,    56,     0,
  334.     58,     0,    23,     0,   197,    56,     0,   190,   196,    56,
  335.      0,   190,   259,    56,     0,   187,   195,    56,     0,   187,
  336.    184,    56,     0,   190,    56,     0,   142,    56,     0,   187,
  337.     56,     0,     1,    56,     0,     1,   103,     0,    56,     0,
  338.    131,   135,   283,     0,   131,   134,   135,   283,     0,   131,
  339.    181,   283,     0,   131,   134,    56,   181,   283,     0,   131,
  340.    134,   181,   283,     0,   187,   184,     1,     0,   190,   259,
  341.      1,     0,   259,     1,     0,   187,   184,   332,     0,   190,
  342.    259,   332,     0,   259,   332,     0,    94,     0,   187,    88,
  343.    323,   102,   251,   332,     0,   187,    44,   251,   332,     0,
  344.    187,   184,   332,     0,   190,   259,   332,     0,   259,   332,
  345.      0,    23,     3,     0,   133,     0,   133,    58,   214,     0,
  346.    133,    88,   161,   102,     0,   133,    44,     0,    60,   136,
  347.    137,     0,     0,     0,   138,     0,   137,    55,   138,     0,
  348.    137,     1,     0,    88,   161,   102,     0,    44,     0,   140,
  349.     88,   161,   102,     0,   140,    44,     0,   269,    88,   161,
  350.    102,     0,   269,    44,     0,   263,    88,   161,   102,     0,
  351.    263,    44,     0,     3,     0,     4,     0,    53,     0,     3,
  352.      0,    53,     0,    99,     0,    98,     0,   100,     0,    45,
  353.    222,   150,     0,    45,   187,   184,     0,     5,    45,   222,
  354.    150,     0,     5,    45,   187,   184,     0,   144,   145,   150,
  355.      0,    53,    69,   146,    70,     0,    53,    69,    70,     0,
  356.      4,    69,   146,    70,     0,     0,   147,     0,   146,    55,
  357.    147,     0,   186,     0,   169,     0,     0,    97,   230,   149,
  358.    235,   236,   103,     0,     0,   148,     0,     0,   148,   151,
  359.      0,    74,     0,    73,     0,    81,     0,    82,     0,   104,
  360.      0,   160,     0,   169,     0,    44,     0,    88,   153,   102,
  361.      0,    44,     0,    88,   157,   102,     0,     0,   157,     0,
  362.      1,     0,     0,   312,   184,   332,   198,   207,    58,   158,
  363.    214,     0,   153,     0,    54,   103,     0,    54,   280,   277,
  364.    103,     0,    54,   280,     1,   103,     0,   290,     0,   169,
  365.     55,   169,     0,   169,    55,     1,     0,   160,    55,   169,
  366.      0,   160,    55,     1,     0,   169,     0,   160,     0,   174,
  367.      0,     0,    33,   163,   167,     0,    75,   167,     0,    65,
  368.    167,     0,    83,   167,     0,   152,   167,     0,    62,   139,
  369.      0,    11,   162,     0,    11,    88,   186,   102,     0,    28,
  370.    162,     0,    28,    88,   186,   102,     0,   177,   250,     0,
  371.    177,   250,   165,     0,   177,   164,   250,     0,   177,   164,
  372.    250,   165,     0,   177,    88,   186,   102,     0,   177,    88,
  373.    186,   102,   165,     0,   177,   164,    88,   186,   102,     0,
  374.    177,   164,    88,   186,   102,   165,     0,   178,   167,     0,
  375.    178,    89,   105,   167,     0,   178,    89,   153,   105,   167,
  376.      0,    88,   161,   102,     0,    54,   161,   103,     0,    88,
  377.    161,   102,     0,    44,     0,    88,   193,   102,     0,    58,
  378.    214,     0,    88,   186,   102,     0,   166,    88,   186,   102,
  379.      0,   168,     0,   166,   168,     0,   166,    54,   215,   219,
  380.    103,     0,   162,     0,    29,    88,   153,   102,     0,    30,
  381.     88,   153,   102,     0,    30,    88,     4,   102,     0,   167,
  382.      0,   169,    78,   169,     0,   169,    79,   169,     0,   169,
  383.     73,   169,     0,   169,    74,   169,     0,   169,    75,   169,
  384.      0,   169,    76,   169,     0,   169,    77,   169,     0,   169,
  385.     71,   169,     0,   169,    72,   169,     0,   169,    68,   169,
  386.      0,   169,    69,   169,     0,   169,    70,   169,     0,   169,
  387.     67,   169,     0,   169,    66,   169,     0,   169,    65,   169,
  388.      0,   169,    63,   169,     0,   169,    64,   169,     0,   169,
  389.     62,   169,     0,   169,    61,   169,     0,   169,    59,   318,
  390.     60,   169,     0,   169,    58,   169,     0,   169,    57,   169,
  391.      0,    92,     0,    92,   169,     0,    83,   330,   139,     0,
  392.    337,     0,     3,     0,    53,     0,   170,     0,     4,     0,
  393.    170,     0,   263,     0,    75,   172,     0,    65,   172,     0,
  394.    261,     0,   170,     0,   263,     0,   170,     0,     8,     0,
  395.    179,     0,   180,     0,    88,   153,   102,     0,    88,     1,
  396.    102,     0,     0,    88,   175,   284,   102,     0,     0,   174,
  397.     88,   161,   102,   176,   151,     0,   174,    44,     0,   174,
  398.     89,   153,   105,     0,   174,    81,     0,   174,    82,     0,
  399.     40,     0,     7,    88,   161,   102,     0,   265,     0,    47,
  400.     69,   186,    70,    88,   153,   102,     0,    48,    69,   186,
  401.     70,    88,   153,   102,     0,    49,    69,   186,    70,    88,
  402.    153,   102,     0,    50,    69,   186,    70,    88,   153,   102,
  403.      0,    46,    88,   153,   102,     0,    46,    88,   186,   102,
  404.      0,   272,     3,     0,   272,   337,     0,   264,     0,   264,
  405.     88,   161,   102,     0,   264,    44,     0,   182,   171,     0,
  406.    182,   262,     0,   182,   171,    88,   161,   102,     0,   182,
  407.    171,    44,     0,   182,   262,    88,   161,   102,     0,   182,
  408.    262,    44,     0,   182,    83,     6,    44,     0,   182,     6,
  409.     51,    83,     6,    44,     0,    38,     0,   272,    38,     0,
  410.     37,     0,   272,   178,     0,    42,     0,    43,     0,     9,
  411.      0,   180,     9,     0,     0,   174,    87,     0,   174,    86,
  412.      0,   193,   184,    56,     0,   187,   184,    56,     0,   193,
  413.    195,    56,     0,   187,   195,    56,     0,   190,   196,    56,
  414.      0,   187,    56,     0,   190,    56,     0,   255,     0,   259,
  415.      0,    44,     0,   185,    44,     0,   191,   275,     0,   252,
  416.    275,     0,   193,   275,     0,   191,     0,   252,     0,   191,
  417.      0,   188,     0,   190,   193,     0,   193,   189,     0,   190,
  418.    193,   189,     0,   190,   193,   192,     0,   190,   193,   192,
  419.    189,     0,     5,     0,   189,   194,     0,   189,     5,     0,
  420.    252,     0,     5,     0,   190,     7,     0,   190,     5,     0,
  421.    193,     0,   252,   193,     0,   193,   192,     0,   252,   193,
  422.    192,     0,   194,     0,   192,   194,     0,   216,     0,     6,
  423.      0,   269,     0,    27,    88,   153,   102,     0,    27,    88,
  424.    186,   102,     0,    31,    88,   153,   102,     0,    31,    88,
  425.    186,   102,     0,     6,     0,     7,     0,   216,     0,   199,
  426.      0,   195,    55,   201,     0,   203,     0,   196,    55,   201,
  427.      0,   205,     0,   197,    55,   201,     0,     0,   111,    88,
  428.    180,   102,     0,     0,   184,   332,   198,   207,    58,   200,
  429.    214,     0,   184,   332,   198,   207,     0,     0,   184,   332,
  430.    198,   207,    58,   202,   214,     0,   184,   332,   198,   207,
  431.      0,     0,   259,   332,   198,   207,    58,   204,   214,     0,
  432.    259,   332,   198,   207,     0,     0,   259,   332,   198,   207,
  433.     58,   206,   214,     0,   259,   332,   198,   207,     0,     0,
  434.    208,     0,   209,     0,   208,   209,     0,    32,    88,    88,
  435.    210,   102,   102,     0,   211,     0,   210,    55,   211,     0,
  436.      0,   212,     0,   212,    88,     3,   102,     0,   212,    88,
  437.      3,    55,   161,   102,     0,   212,    88,   161,   102,     0,
  438.    139,     0,     5,     0,     6,     0,     7,     0,   139,     0,
  439.    213,    55,   139,     0,   169,     0,    54,   103,     0,    54,
  440.    215,   103,     0,    54,   215,    55,   103,     0,     1,     0,
  441.    214,     0,   215,    55,   214,     0,    89,   169,   105,   214,
  442.      0,   215,    55,    19,   169,    60,   214,     0,   139,    60,
  443.    214,     0,   215,    55,   139,    60,   214,     0,     0,    12,
  444.    139,    54,   217,   248,   220,   103,     0,    12,   139,    54,
  445.    103,     0,     0,    12,    54,   218,   248,   220,   103,     0,
  446.     12,    54,   103,     0,    12,   139,     0,    12,   270,     0,
  447.    229,   235,   236,   103,     0,   229,     0,     0,    55,     0,
  448.      0,    55,     0,    35,     0,   221,     5,     0,   221,     6,
  449.      0,   221,     7,     0,   221,    35,     0,   221,   144,    56,
  450.      0,   221,   139,     0,   221,   270,     0,   221,   143,     0,
  451.    221,   144,    54,     0,   221,   144,    60,     0,   222,     0,
  452.    221,   141,     0,     0,     0,   223,   225,   230,     0,   224,
  453.    226,   230,     0,   221,    54,     0,   228,     0,   227,     0,
  454.      0,    60,     0,    60,   231,     0,   232,     0,   231,    55,
  455.    232,     0,   233,     0,   234,   233,     0,   269,     0,    31,
  456.     88,   153,   102,     0,    31,    88,   186,   102,     0,    36,
  457.      0,     5,     0,   234,    36,     0,   234,     5,     0,    54,
  458.      0,     0,   237,     0,   236,    36,    60,   237,     0,   236,
  459.     36,    60,     0,   238,     0,   237,   238,     0,   237,    56,
  460.      0,   239,    56,     0,   239,   103,     0,   132,    60,     0,
  461.    132,    54,     0,   187,   240,     0,   190,   241,     0,   259,
  462.    332,   198,   207,     0,    60,   169,     0,     1,     0,   187,
  463.     88,   323,   102,   251,     0,   187,    44,   251,     0,     0,
  464.    242,     0,   240,    55,   243,     0,     0,   245,     0,   241,
  465.     55,   247,     0,   244,     0,   245,     0,   246,     0,   247,
  466.      0,   255,   332,   198,   207,     0,   255,   332,   198,   207,
  467.     58,   214,     0,     4,    60,   169,   207,     0,   259,   332,
  468.    198,   207,     0,   259,   332,   198,   207,    58,   214,     0,
  469.      3,    60,   169,   207,     0,    60,   169,   207,     0,   255,
  470.    332,   198,   207,     0,   255,   332,   198,   207,    58,   214,
  471.      0,     4,    60,   169,   207,     0,   259,   332,   198,   207,
  472.      0,   259,   332,   198,   207,    58,   214,     0,     3,    60,
  473.    169,   207,     0,    60,   169,   207,     0,   249,     0,   248,
  474.     55,   249,     0,   139,     0,   139,    58,   169,     0,   312,
  475.    273,     0,   312,     0,    88,   186,   102,    89,   153,   105,
  476.      0,     0,   251,     7,     0,     7,     0,   252,     7,     0,
  477.      0,   254,   153,     0,    75,   252,   255,     0,    65,   252,
  478.    255,     0,    75,   255,     0,    65,   255,     0,   271,   251,
  479.    255,     0,   258,     0,   266,     0,   257,     0,   267,   266,
  480.      0,   258,    88,   161,   102,   251,     0,   258,    88,   323,
  481.    102,   251,     0,   258,    44,   251,     0,   258,    88,     1,
  482.    102,   251,     0,   258,    89,   253,   105,     0,   258,    89,
  483.    105,     0,    88,   255,   102,     0,   267,   266,     0,   266,
  484.      0,    75,   252,   259,     0,    65,   252,   259,     0,    75,
  485.    259,     0,    65,   259,     0,   271,   251,   259,     0,   173,
  486.      0,    75,   252,   259,     0,    65,   252,   259,     0,    75,
  487.    260,     0,    65,   260,     0,   271,   251,   259,     0,   261,
  488.      0,   173,    88,   161,   102,   251,     0,   173,    88,   323,
  489.    102,   251,     0,   173,    44,   251,     0,   173,    88,     1,
  490.    102,   251,     0,    88,   172,   102,     0,    88,   260,   102,
  491.      0,   173,    89,   253,   105,     0,   173,    89,   105,     0,
  492.    267,   171,     0,   267,   170,     0,   263,     0,   272,   263,
  493.      0,   193,    88,   161,   102,     0,   193,    88,   172,   102,
  494.      0,   193,   185,     0,     4,     0,   143,     0,   268,     0,
  495.    267,   268,     0,     4,    51,     0,   143,    51,     0,   256,
  496.      0,   272,   256,     0,   257,     0,   272,   256,     0,   267,
  497.     75,     0,   272,   267,    75,     0,    51,     0,    75,   251,
  498.    273,     0,    75,   251,     0,    65,   251,   273,     0,    65,
  499.    251,     0,   271,   251,     0,   271,   251,   273,     0,   274,
  500.      0,    89,   153,   105,     0,   274,    89,   253,   105,     0,
  501.     75,   252,   275,     0,    75,   275,     0,    75,   252,     0,
  502.     75,     0,    65,   252,   275,     0,    65,   275,     0,    65,
  503.    252,     0,    65,     0,   271,   251,     0,   271,   251,   275,
  504.      0,   276,     0,    88,   275,   102,     0,    85,     0,   276,
  505.     88,   323,   102,   251,     0,   276,    44,   251,     0,   276,
  506.     89,   253,   105,     0,   276,    89,   105,     0,    88,   324,
  507.    102,   251,     0,   166,   251,     0,   185,   251,     0,    89,
  508.    253,   105,     0,    89,   105,     0,   289,     0,   278,     0,
  509.    277,   289,     0,   277,   278,     0,     1,    56,     0,     0,
  510.      0,   281,     0,   282,     0,   281,   282,     0,    34,   213,
  511.     56,     0,   284,     0,     1,   284,     0,    54,   279,   103,
  512.      0,    54,   279,   280,   277,   103,     0,    54,   279,   280,
  513.    277,     1,   103,     0,    54,   279,   280,     1,   103,     0,
  514.      0,     0,    13,   286,   279,   155,   287,   288,     0,   284,
  515.      0,   279,   290,     0,   284,     0,   290,     0,   183,     0,
  516.    153,    56,     0,     0,   285,    14,   291,   288,     0,   285,
  517.      0,     0,     0,    15,   292,   279,   155,   293,   159,     0,
  518.      0,     0,    16,   294,   288,    15,   295,   154,    56,     0,
  519.      0,     0,     0,   315,   296,   279,   156,    56,   297,   318,
  520.    102,   298,   159,     0,     0,     0,     0,   316,   299,   279,
  521.    156,    56,   300,   318,   102,   301,   159,     0,     0,    18,
  522.    279,    88,   157,   102,   302,   288,     0,     0,    19,   169,
  523.     60,   303,   289,     0,     0,    19,   169,    10,   169,    60,
  524.    304,   289,     0,     0,    20,    60,   305,   289,     0,    21,
  525.     56,     0,    22,    56,     0,    23,    56,     0,    23,   153,
  526.     56,     0,   111,   317,    88,   180,   102,    56,     0,   111,
  527.    317,    88,   180,    60,   319,   102,    56,     0,   111,   317,
  528.     88,   180,    60,   319,    60,   319,   102,    56,     0,   111,
  529.    317,    88,   180,    60,   319,    60,   319,    60,   322,   102,
  530.     56,     0,    24,    75,   153,    56,     0,    24,   139,    56,
  531.      0,   314,   289,     0,   314,   103,     0,    56,     0,   306,
  532.      0,     0,     0,    90,    54,   279,   307,   309,   308,   310,
  533.      0,   103,     0,   277,   103,     0,     1,   103,     0,     0,
  534.      0,   310,    91,   311,   313,   284,     0,   191,     0,   252,
  535.      0,    88,    10,   102,     0,    88,   329,   102,     0,     3,
  536.     60,     0,    53,    60,     0,     4,    60,     0,    17,    88,
  537.     56,     0,    17,    88,   153,    56,     0,    17,    88,    54,
  538.    103,     0,    17,    88,   183,     0,    17,    88,     1,    56,
  539.      0,    17,    88,    54,   279,   277,   103,     0,    17,    88,
  540.     54,   279,     1,   103,     0,     0,     7,     0,     0,   153,
  541.      0,     1,     0,     0,   320,     0,   321,     0,   320,    55,
  542.    321,     0,     9,    88,   153,   102,     0,     9,     0,   322,
  543.     55,     9,     0,     0,   324,     0,   186,     0,   325,     0,
  544.    326,    10,     0,   325,    10,     0,   186,    10,     0,    10,
  545.      0,    93,     0,   325,    93,     0,   186,    93,     0,   325,
  546.     60,     0,   186,    60,     0,   327,     0,   329,    58,   214,
  547.      0,   326,   328,     0,   326,   331,     0,   326,   331,    58,
  548.    214,     0,   325,    55,     0,   186,    55,     0,   188,   184,
  549.      0,   191,   184,     0,   193,   184,     0,   188,   275,     0,
  550.    188,     0,   190,   259,     0,   329,     0,   329,    58,   214,
  551.      0,   327,     0,   186,     0,     0,     0,   259,     0,     0,
  552.     92,    88,   334,   102,     0,   186,     0,   333,     0,   334,
  553.     55,   333,     0,     0,    75,   251,   335,     0,    65,   251,
  554.    335,     0,   271,   251,   335,     0,    41,     0,   336,    75,
  555.      0,   336,    76,     0,   336,    77,     0,   336,    73,     0,
  556.    336,    74,     0,   336,    65,     0,   336,    63,     0,   336,
  557.     64,     0,   336,    83,     0,   336,    55,     0,   336,    68,
  558.      0,   336,    69,     0,   336,    70,     0,   336,    67,     0,
  559.    336,    57,     0,   336,    58,     0,   336,    71,     0,   336,
  560.     72,     0,   336,    81,     0,   336,    82,     0,   336,    62,
  561.      0,   336,    61,     0,   336,   104,     0,   336,    59,    60,
  562.      0,   336,    66,     0,   336,    86,     0,   336,    78,     0,
  563.    336,    44,     0,   336,    89,   105,     0,   336,    38,     0,
  564.    336,    37,     0,   336,    38,    89,   105,     0,   336,    37,
  565.     89,   105,     0,   336,   312,   335,     0,   336,     1,     0
  566. };
  567.  
  568. #endif
  569.  
  570. #if YYDEBUG != 0
  571. static const short yyrline[] = { 0,
  572.    292,   293,   307,   309,   310,   314,   319,   323,   325,   328,
  573.    331,   335,   338,   340,   342,   343,   346,   348,   350,   353,
  574.    358,   363,   366,   370,   373,   377,   387,   391,   401,   403,
  575.    406,   411,   413,   417,   423,   423,   426,   426,   429,   429,
  576.    444,   444,   449,   454,   471,   494,   504,   505,   508,   509,
  577.    510,   511,   512,   515,   518,   521,   526,   531,   537,   539,
  578.    540,   559,   560,   561,   564,   578,   591,   594,   597,   600,
  579.    602,   604,   608,   614,   619,   624,   631,   642,   649,   651,
  580.    653,   657,   665,   667,   669,   671,   675,   688,   711,   714,
  581.    716,   717,   720,   726,   732,   734,   736,   738,   741,   745,
  582.    751,   753,   754,   757,   759,   762,   764,   765,   768,   771,
  583.    773,   775,   779,   784,   787,   789,   793,   798,   801,   805,
  584.    808,   811,   845,   861,   864,   868,   871,   875,   877,   879,
  585.    881,   883,   887,   889,   892,   897,   902,   907,   912,   915,
  586.    918,   922,   941,   948,   951,   954,   956,   958,   962,   966,
  587.    969,   971,   975,   978,   981,   990,   993,   996,   998,  1000,
  588.   1002,  1009,  1020,  1040,  1042,  1044,  1049,  1051,  1053,  1055,
  589.   1057,  1060,  1062,  1064,  1067,  1069,  1073,  1079,  1082,  1089,
  590.   1092,  1094,  1102,  1111,  1117,  1123,  1125,  1127,  1140,  1142,
  591.   1144,  1146,  1163,  1166,  1168,  1170,  1172,  1174,  1176,  1178,
  592.   1180,  1182,  1184,  1186,  1188,  1190,  1192,  1194,  1196,  1198,
  593.   1200,  1202,  1204,  1206,  1208,  1215,  1217,  1234,  1237,  1238,
  594.   1239,  1242,  1244,  1247,  1249,  1250,  1252,  1256,  1258,  1259,
  595.   1264,  1284,  1285,  1286,  1288,  1290,  1292,  1300,  1321,  1326,
  596.   1333,  1340,  1342,  1351,  1356,  1379,  1423,  1424,  1427,  1430,
  597.   1433,  1436,  1438,  1441,  1480,  1487,  1489,  1491,  1493,  1495,
  598.   1497,  1512,  1527,  1538,  1550,  1557,  1606,  1608,  1612,  1614,
  599.   1618,  1621,  1626,  1628,  1632,  1645,  1646,  1652,  1663,  1671,
  600.   1677,  1682,  1684,  1689,  1696,  1698,  1702,  1706,  1712,  1715,
  601.   1717,  1719,  1721,  1729,  1731,  1733,  1736,  1738,  1740,  1742,
  602.   1747,  1753,  1755,  1766,  1769,  1771,  1774,  1789,  1792,  1794,
  603.   1796,  1800,  1803,  1811,  1812,  1813,  1814,  1818,  1822,  1836,
  604.   1854,  1855,  1856,  1859,  1861,  1864,  1866,  1869,  1871,  1874,
  605.   1877,  1881,  1898,  1900,  1918,  1924,  1925,  1931,  1939,  1941,
  606.   1950,  1958,  1960,  1971,  1974,  1978,  1981,  1985,  1990,  1993,
  607.   1997,  2000,  2002,  2004,  2006,  2013,  2015,  2016,  2017,  2021,
  608.   2024,  2028,  2030,  2033,  2036,  2039,  2045,  2048,  2051,  2053,
  609.   2055,  2057,  2061,  2065,  2069,  2072,  2075,  2079,  2082,  2084,
  610.   2088,  2139,  2154,  2156,  2159,  2161,  2165,  2166,  2168,  2170,
  611.   2172,  2176,  2185,  2188,  2190,  2192,  2198,  2200,  2203,  2208,
  612.   2211,  2214,  2223,  2234,  2239,  2239,  2241,  2244,  2246,  2250,
  613.   2252,  2256,  2284,  2315,  2317,  2339,  2363,  2365,  2369,  2395,
  614.   2404,  2466,  2469,  2476,  2487,  2496,  2500,  2513,  2516,  2518,
  615.   2523,  2525,  2529,  2537,  2541,  2544,  2546,  2557,  2562,  2570,
  616.   2573,  2574,  2585,  2588,  2589,  2600,  2602,  2605,  2607,  2610,
  617.   2615,  2619,  2625,  2630,  2634,  2638,  2644,  2648,  2651,  2656,
  618.   2660,  2663,  2666,  2675,  2677,  2681,  2684,  2689,  2692,  2696,
  619.   2705,  2708,  2712,  2715,  2723,  2725,  2730,  2733,  2735,  2737,
  620.   2739,  2743,  2746,  2760,  2763,  2768,  2771,  2773,  2775,  2777,
  621.   2779,  2781,  2783,  2787,  2793,  2796,  2798,  2800,  2802,  2806,
  622.   2809,  2812,  2814,  2816,  2818,  2822,  2825,  2828,  2830,  2832,
  623.   2834,  2836,  2838,  2840,  2844,  2850,  2856,  2858,  2862,  2865,
  624.   2867,  2871,  2873,  2876,  2878,  2884,  2887,  2901,  2903,  2907,
  625.   2909,  2913,  2916,  2922,  2928,  2931,  2933,  2935,  2937,  2941,
  626.   2945,  2949,  2952,  2957,  2960,  2962,  2964,  2966,  2968,  2970,
  627.   2972,  2974,  2978,  2982,  2986,  2990,  2991,  2993,  2995,  2997,
  628.   2999,  3001,  3003,  3005,  3007,  3015,  3017,  3018,  3019,  3022,
  629.   3029,  3039,  3041,  3046,  3048,  3051,  3065,  3068,  3071,  3075,
  630.   3079,  3083,  3089,  3092,  3096,  3098,  3101,  3107,  3110,  3113,
  631.   3116,  3129,  3132,  3137,  3143,  3148,  3151,  3156,  3160,  3163,
  632.   3169,  3174,  3177,  3182,  3191,  3195,  3198,  3204,  3214,  3221,
  633.   3227,  3252,  3252,  3284,  3284,  3300,  3300,  3304,  3308,  3311,
  634.   3316,  3323,  3332,  3341,  3350,  3353,  3359,  3361,  3365,  3367,
  635.   3370,  3374,  3377,  3380,  3388,  3392,  3398,  3400,  3402,  3406,
  636.   3408,  3411,  3424,  3429,  3437,  3439,  3443,  3446,  3448,  3452,
  637.   3455,  3457,  3459,  3465,  3469,  3473,  3476,  3477,  3483,  3485,
  638.   3488,  3490,  3494,  3499,  3502,  3512,  3519,  3520,  3527,  3533,
  639.   3538,  3542,  3547,  3554,  3558,  3562,  3567,  3578,  3592,  3595,
  640.   3597,  3599,  3601,  3605,  3607,  3615,  3632,  3634,  3636,  3638,
  641.   3640,  3644,  3647,  3651,  3653,  3656,  3678,  3684,  3691,  3694,
  642.   3698,  3703,  3705,  3712,  3715,  3717,  3719,  3725,  3729,  3732,
  643.   3734,  3736,  3738,  3740,  3742,  3744,  3746,  3748,  3750,  3752,
  644.   3754,  3756,  3758,  3760,  3762,  3764,  3766,  3768,  3770,  3772,
  645.   3774,  3776,  3778,  3780,  3782,  3784,  3786,  3788,  3790,  3792,
  646.   3794,  3797,  3799
  647. };
  648.  
  649. static const char * const yytname[] = {   "$","error","$illegal.","IDENTIFIER",
  650. "TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
  651. "ENUM","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT","BREAK","CONTINUE",
  652. "RETURN","GOTO","ASM_KEYWORD","GCC_ASM_KEYWORD","TYPEOF","ALIGNOF","HEADOF",
  653. "CLASSOF","SIGOF","ATTRIBUTE","EXTENSION","LABEL","AGGR","VISSPEC","DELETE",
  654. "NEW","OVERLOAD","THIS","OPERATOR","CXX_TRUE","CXX_FALSE","LEFT_RIGHT","TEMPLATE",
  655. "TYPEID","DYNAMIC_CAST","STATIC_CAST","REINTERPRET_CAST","CONST_CAST","SCOPE",
  656. "EMPTY","PTYPENAME","'{'","','","';'","ASSIGN","'='","'?'","':'","OROR","ANDAND",
  657. "'|'","'^'","'&'","MIN_MAX","EQCOMPARE","ARITHCOMPARE","'<'","'>'","LSHIFT",
  658. "RSHIFT","'+'","'-'","'*'","'/'","'%'","POINTSAT_STAR","DOT_STAR","UNARY","PLUSPLUS",
  659. "MINUSMINUS","'~'","HYPERUNARY","PAREN_STAR_PAREN","POINTSAT","'.'","'('","'['",
  660. "TRY","CATCH","THROW","TYPENAME_ELLIPSIS","PRE_PARSED_FUNCTION_DECL","EXTERN_LANG_STRING",
  661. "ALL","PRE_PARSED_CLASS_DECL","TYPENAME_DEFN","IDENTIFIER_DEFN","PTYPENAME_DEFN",
  662. "END_OF_SAVED_INPUT","')'","'}'","'!'","']'","program","extdefs","@1",".hush_warning",
  663. ".warning_ok","asm_keyword","lang_extdef","@2","extdef","extern_lang_string",
  664. "template_header","@3","template_parm_list","template_type_parm","template_parm",
  665. "overloaddef","ov_identifiers","template_def","@4","@5","@6","@7","fn_tmpl_end",
  666. "datadef","fndef","fn.def1","fn.def2","return_id","return_init","base_init",
  667. ".set_base_init","member_init_list","member_init","identifier","notype_identifier",
  668. "identifier_defn","explicit_instantiation","template_type","template_type_name",
  669. "tmpl.2","template_arg_list","template_arg","template_instantiate_once","@8",
  670. "template_instantiation","template_instantiate_some","unop","expr","paren_expr_or_null",
  671. "paren_cond_or_null","xcond","condition","@9","already_scoped_stmt","nontrivial_exprlist",
  672. "nonnull_exprlist","unary_expr","@10","new_placement","new_initializer","regcast_or_absdcl",
  673. "cast_expr","sub_cast_expr","expr_no_commas","notype_unqualified_id","unqualified_id",
  674. "expr_or_declarator","direct_notype_declarator","primary","@11","@12","new",
  675. "delete","boolean.literal","string","nodecls","object","decl","declarator","fcast_or_absdcl",
  676. "type_id","typed_declspecs","typed_declspecs1","reserved_declspecs","declmods",
  677. "typed_typespecs","reserved_typespecquals","typespec","typespecqual_reserved",
  678. "initdecls","notype_initdecls","nomods_initdecls","maybeasm","initdcl0","@13",
  679. "initdcl","@14","notype_initdcl0","@15","nomods_initdcl0","@16","maybe_attribute",
  680. "attributes","attribute","attribute_list","attrib","any_word","identifiers_or_typenames",
  681. "init","initlist","structsp","@17","@18","maybecomma","maybecomma_warn","aggr",
  682. "specialization","named_class_head_sans_basetype","named_class_head_sans_basetype_defn",
  683. "do_xref","do_xref_defn","named_class_head","unnamed_class_head","class_head",
  684. "maybe_base_class_list","base_class_list","base_class","base_class.1","base_class_access_list",
  685. "left_curly","opt.component_decl_list","component_decl_list","component_decl",
  686. "component_decl_1","components","notype_components","component_declarator0",
  687. "component_declarator","after_type_component_declarator0","notype_component_declarator0",
  688. "after_type_component_declarator","notype_component_declarator","enumlist","enumerator",
  689. "new_type_id","type_quals","nonempty_type_quals","nonmomentary_expr","@19","after_type_declarator",
  690. "qualified_type_name","nested_type","direct_after_type_declarator","notype_declarator",
  691. "complex_notype_declarator","complex_direct_notype_declarator","qualified_id",
  692. "notype_qualified_id","overqualified_id","functional_cast","type_name","nested_name_specifier",
  693. "nested_name_specifier_1","complete_type_name","complex_type_name","ptr_to_mem",
  694. "global_scope","new_declarator","direct_new_declarator","absdcl","direct_abstract_declarator",
  695. "stmts","errstmt",".pushlevel","maybe_label_decls","label_decls","label_decl",
  696. "compstmt_or_error","compstmt","simple_if","@20","@21","implicitly_scoped_stmt",
  697. "stmt","simple_stmt","@22","@23","@24","@25","@26","@27","@28","@29","@30","@31",
  698. "@32","@33","@34","@35","@36","try_block","@37","@38","ansi_try_stmts","handler_seq",
  699. "@39","type_specifier_seq","handler_args","label_colon","forhead.1","forhead.2",
  700. "maybe_type_qual","xexpr","asm_operands","nonnull_asm_operands","asm_operand",
  701. "asm_clobbers","parmlist","complex_parmlist","parms","parms_comma","named_parm",
  702. "full_parm","parm","see_typename","bad_parm","maybe_raises","ansi_raise_identifier",
  703. "ansi_raise_identifiers","conversion_declarator","operator","operator_name",
  704. ""
  705. };
  706. #endif
  707.  
  708. static const short yyr1[] = {     0,
  709.    106,   106,   108,   107,   107,   109,   110,   111,   111,   113,
  710.    112,   114,   114,   114,   114,   114,   114,   114,   114,   114,
  711.    115,   117,   116,   118,   118,   119,   119,   120,   120,   120,
  712.    121,   122,   122,   124,   123,   125,   123,   126,   123,   127,
  713.    123,   123,   123,   123,   123,   123,   123,   123,   128,   128,
  714.    128,   128,   128,   129,   129,   129,   129,   129,   129,   129,
  715.    129,   129,   129,   129,   130,   130,   130,   130,   130,   130,
  716.    130,   130,   131,   131,   131,   131,   132,   132,   132,   132,
  717.    132,   133,   134,   134,   134,   134,   135,   136,   137,   137,
  718.    137,   137,   138,   138,   138,   138,   138,   138,   138,   138,
  719.    139,   139,   139,   140,   140,   141,   141,   141,   142,   142,
  720.    142,   142,   143,   144,   144,   144,   145,   146,   146,   147,
  721.    147,   149,   148,   150,   150,   151,   151,   152,   152,   152,
  722.    152,   152,   153,   153,   154,   154,   155,   155,   156,   156,
  723.    156,   158,   157,   157,   159,   159,   159,   159,   160,   160,
  724.    160,   160,   161,   161,   162,   163,   162,   162,   162,   162,
  725.    162,   162,   162,   162,   162,   162,   162,   162,   162,   162,
  726.    162,   162,   162,   162,   162,   162,   162,   164,   164,   165,
  727.    165,   165,   165,   166,   166,   167,   167,   167,   168,   168,
  728.    168,   168,   169,   169,   169,   169,   169,   169,   169,   169,
  729.    169,   169,   169,   169,   169,   169,   169,   169,   169,   169,
  730.    169,   169,   169,   169,   169,   169,   169,   170,   170,   170,
  731.    170,   171,   171,   172,   172,   172,   172,   173,   173,   173,
  732.    174,   174,   174,   174,   174,   174,   175,   174,   176,   174,
  733.    174,   174,   174,   174,   174,   174,   174,   174,   174,   174,
  734.    174,   174,   174,   174,   174,   174,   174,   174,   174,   174,
  735.    174,   174,   174,   174,   174,   174,   177,   177,   178,   178,
  736.    179,   179,   180,   180,   181,   182,   182,   183,   183,   183,
  737.    183,   183,   183,   183,   184,   184,   185,   185,   186,   186,
  738.    186,   186,   186,   187,   187,   188,   188,   188,   188,   188,
  739.    189,   189,   189,   190,   190,   190,   190,   191,   191,   191,
  740.    191,   192,   192,   193,   193,   193,   193,   193,   193,   193,
  741.    194,   194,   194,   195,   195,   196,   196,   197,   197,   198,
  742.    198,   200,   199,   199,   202,   201,   201,   204,   203,   203,
  743.    206,   205,   205,   207,   207,   208,   208,   209,   210,   210,
  744.    211,   211,   211,   211,   211,   212,   212,   212,   212,   213,
  745.    213,   214,   214,   214,   214,   214,   215,   215,   215,   215,
  746.    215,   215,   217,   216,   216,   218,   216,   216,   216,   216,
  747.    216,   216,   219,   219,   220,   220,   221,   221,   221,   221,
  748.    221,   222,   223,   223,   223,   223,   223,   223,   224,   225,
  749.    226,   227,   227,   228,   229,   229,   230,   230,   230,   231,
  750.    231,   232,   232,   233,   233,   233,   234,   234,   234,   234,
  751.    235,   236,   236,   236,   236,   237,   237,   237,   238,   238,
  752.    238,   238,   239,   239,   239,   239,   239,   239,   239,   240,
  753.    240,   240,   241,   241,   241,   242,   242,   243,   243,   244,
  754.    244,   244,   245,   245,   245,   245,   246,   246,   246,   247,
  755.    247,   247,   247,   248,   248,   249,   249,   250,   250,   250,
  756.    251,   251,   252,   252,   254,   253,   255,   255,   255,   255,
  757.    255,   255,   256,   256,   257,   258,   258,   258,   258,   258,
  758.    258,   258,   258,   258,   259,   259,   259,   259,   259,   259,
  759.    260,   260,   260,   260,   260,   260,   261,   261,   261,   261,
  760.    261,   261,   261,   261,   262,   263,   264,   264,   265,   265,
  761.    265,   266,   266,   267,   267,   268,   268,   269,   269,   270,
  762.    270,   271,   271,   272,   273,   273,   273,   273,   273,   273,
  763.    273,   274,   274,   275,   275,   275,   275,   275,   275,   275,
  764.    275,   275,   275,   275,   276,   276,   276,   276,   276,   276,
  765.    276,   276,   276,   276,   276,   277,   277,   277,   277,   278,
  766.    279,   280,   280,   281,   281,   282,   283,   283,   284,   284,
  767.    284,   284,   286,   287,   285,   288,   288,   289,   289,   290,
  768.    290,   291,   290,   290,   292,   293,   290,   294,   295,   290,
  769.    296,   297,   298,   290,   299,   300,   301,   290,   302,   290,
  770.    303,   290,   304,   290,   305,   290,   290,   290,   290,   290,
  771.    290,   290,   290,   290,   290,   290,   290,   290,   290,   290,
  772.    307,   308,   306,   309,   309,   309,   310,   311,   310,   312,
  773.    312,   313,   313,   314,   314,   314,   315,   315,   315,   316,
  774.    316,   316,   316,   317,   317,   318,   318,   318,   319,   319,
  775.    320,   320,   321,   322,   322,   323,   323,   323,   324,   324,
  776.    324,   324,   324,   324,   324,   324,   324,   324,   325,   325,
  777.    325,   325,   325,   326,   326,   327,   327,   327,   327,   327,
  778.    327,   328,   328,   329,   329,   330,   331,   331,   332,   332,
  779.    333,   334,   334,   335,   335,   335,   335,   336,   337,   337,
  780.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  781.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  782.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  783.    337,   337,   337
  784. };
  785.  
  786. static const short yyr2[] = {     0,
  787.      0,     1,     0,     2,     2,     0,     0,     1,     1,     0,
  788.      2,     1,     1,     1,     1,     5,     4,     3,     4,     4,
  789.      1,     0,     5,     1,     3,     1,     2,     1,     3,     1,
  790.      3,     1,     3,     0,     5,     0,     5,     0,     5,     0,
  791.      5,     3,     3,     6,     7,     4,     3,     3,     1,     1,
  792.      1,     1,     1,     2,     3,     3,     3,     3,     2,     2,
  793.      2,     2,     2,     1,     3,     4,     3,     5,     4,     3,
  794.      3,     2,     3,     3,     2,     1,     6,     4,     3,     3,
  795.      2,     2,     1,     3,     4,     2,     3,     0,     0,     1,
  796.      3,     2,     3,     1,     4,     2,     4,     2,     4,     2,
  797.      1,     1,     1,     1,     1,     1,     1,     1,     3,     3,
  798.      4,     4,     3,     4,     3,     4,     0,     1,     3,     1,
  799.      1,     0,     6,     0,     1,     0,     2,     1,     1,     1,
  800.      1,     1,     1,     1,     1,     3,     1,     3,     0,     1,
  801.      1,     0,     8,     1,     2,     4,     4,     1,     3,     3,
  802.      3,     3,     1,     1,     1,     0,     3,     2,     2,     2,
  803.      2,     2,     2,     4,     2,     4,     2,     3,     3,     4,
  804.      4,     5,     5,     6,     2,     4,     5,     3,     3,     3,
  805.      1,     3,     2,     3,     4,     1,     2,     5,     1,     4,
  806.      4,     4,     1,     3,     3,     3,     3,     3,     3,     3,
  807.      3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  808.      3,     3,     5,     3,     3,     1,     2,     3,     1,     1,
  809.      1,     1,     1,     1,     1,     2,     2,     1,     1,     1,
  810.      1,     1,     1,     1,     3,     3,     0,     4,     0,     6,
  811.      2,     4,     2,     2,     1,     4,     1,     7,     7,     7,
  812.      7,     4,     4,     2,     2,     1,     4,     2,     2,     2,
  813.      5,     3,     5,     3,     4,     6,     1,     2,     1,     2,
  814.      1,     1,     1,     2,     0,     2,     2,     3,     3,     3,
  815.      3,     3,     2,     2,     1,     1,     1,     2,     2,     2,
  816.      2,     1,     1,     1,     1,     2,     2,     3,     3,     4,
  817.      1,     2,     2,     1,     1,     2,     2,     1,     2,     2,
  818.      3,     1,     2,     1,     1,     1,     4,     4,     4,     4,
  819.      1,     1,     1,     1,     3,     1,     3,     1,     3,     0,
  820.      4,     0,     7,     4,     0,     7,     4,     0,     7,     4,
  821.      0,     7,     4,     0,     1,     1,     2,     6,     1,     3,
  822.      0,     1,     4,     6,     4,     1,     1,     1,     1,     1,
  823.      3,     1,     2,     3,     4,     1,     1,     3,     4,     6,
  824.      3,     5,     0,     7,     4,     0,     6,     3,     2,     2,
  825.      4,     1,     0,     1,     0,     1,     1,     2,     2,     2,
  826.      2,     3,     2,     2,     2,     3,     3,     1,     2,     0,
  827.      0,     3,     3,     2,     1,     1,     0,     1,     2,     1,
  828.      3,     1,     2,     1,     4,     4,     1,     1,     2,     2,
  829.      1,     0,     1,     4,     3,     1,     2,     2,     2,     2,
  830.      2,     2,     2,     2,     4,     2,     1,     5,     3,     0,
  831.      1,     3,     0,     1,     3,     1,     1,     1,     1,     4,
  832.      6,     4,     4,     6,     4,     3,     4,     6,     4,     4,
  833.      6,     4,     3,     1,     3,     1,     3,     2,     1,     6,
  834.      0,     2,     1,     2,     0,     2,     3,     3,     2,     2,
  835.      3,     1,     1,     1,     2,     5,     5,     3,     5,     4,
  836.      3,     3,     2,     1,     3,     3,     2,     2,     3,     1,
  837.      3,     3,     2,     2,     3,     1,     5,     5,     3,     5,
  838.      3,     3,     4,     3,     2,     2,     1,     2,     4,     4,
  839.      2,     1,     1,     1,     2,     2,     2,     1,     2,     1,
  840.      2,     2,     3,     1,     3,     2,     3,     2,     2,     3,
  841.      1,     3,     4,     3,     2,     2,     1,     3,     2,     2,
  842.      1,     2,     3,     1,     3,     1,     5,     3,     4,     3,
  843.      4,     2,     2,     3,     2,     1,     1,     2,     2,     2,
  844.      0,     0,     1,     1,     2,     3,     1,     2,     3,     5,
  845.      6,     5,     0,     0,     6,     1,     2,     1,     1,     1,
  846.      2,     0,     4,     1,     0,     0,     6,     0,     0,     7,
  847.      0,     0,     0,    10,     0,     0,     0,    10,     0,     7,
  848.      0,     5,     0,     7,     0,     4,     2,     2,     2,     3,
  849.      6,     8,    10,    12,     4,     3,     2,     2,     1,     1,
  850.      0,     0,     7,     1,     2,     2,     0,     0,     5,     1,
  851.      1,     3,     3,     2,     2,     2,     3,     4,     4,     3,
  852.      4,     6,     6,     0,     1,     0,     1,     1,     0,     1,
  853.      1,     3,     4,     1,     3,     0,     1,     1,     1,     2,
  854.      2,     2,     1,     1,     2,     2,     2,     2,     1,     3,
  855.      2,     2,     4,     2,     2,     2,     2,     2,     2,     1,
  856.      2,     1,     3,     1,     1,     0,     0,     1,     0,     4,
  857.      1,     1,     3,     0,     3,     3,     3,     1,     2,     2,
  858.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  859.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  860.      2,     3,     2,     2,     2,     2,     3,     2,     2,     4,
  861.      4,     3,     2
  862. };
  863.  
  864. static const short yydefact[] = {     3,
  865.     10,    10,     5,     0,     4,     0,   220,   522,   305,   315,
  866.    473,     0,     8,     9,     0,     0,   387,     0,   708,     0,
  867.    534,   221,    64,     0,     0,   696,     0,    76,    21,     0,
  868.     11,     6,     0,    15,    14,    13,    12,   275,     0,   523,
  869.    117,   229,   500,     0,   295,     0,   294,   308,     0,   328,
  870.    314,     0,   398,   400,   401,   406,   405,   382,   304,   528,
  871.    484,     0,   228,   230,   483,     0,   524,   316,   471,     0,
  872.      0,   219,    62,    63,   526,     0,     0,   101,   102,   103,
  873.    376,   379,     0,   530,     0,   380,     0,     0,     0,    32,
  874.      0,   305,     0,    22,     0,     0,   398,     0,     0,     0,
  875.      0,   498,     0,     0,     0,   497,     0,     0,     0,   229,
  876.      0,     0,     0,   228,   230,   471,     0,     3,     0,     0,
  877.      0,     0,   400,   401,   699,     0,    88,    83,   275,     0,
  878.      0,    60,   527,   124,   471,     0,   475,    61,     0,     0,
  879.      0,     0,     0,   324,   285,   482,   286,   494,     0,   471,
  880.    307,   306,    59,   296,     0,   326,     0,   301,   321,   322,
  881.    297,   310,   312,   323,     0,    54,   388,   389,   390,   391,
  882.    404,   107,   106,   108,   393,   399,   395,   117,   394,   407,
  883.    407,   421,     0,   474,   309,    72,     0,    75,   532,   516,
  884.    485,   525,     0,   529,     0,   743,   739,   738,   736,   718,
  885.    723,   724,     0,   730,   729,   715,   716,   714,   733,   722,
  886.    719,   720,   721,   725,   726,   712,   713,   709,   710,   711,
  887.    735,   727,   728,   717,   734,     0,   731,   640,   308,   641,
  888.    704,   473,   232,   273,     0,     0,     0,     0,   156,   269,
  889.    267,   245,   271,   272,     0,     0,     0,     0,     0,     0,
  890.      0,   129,   128,     0,   130,   131,     0,     0,   216,   132,
  891.      0,   118,     0,   189,     0,   193,   186,   121,   231,   155,
  892.      0,     0,   233,   234,     0,   120,   292,   308,   293,   517,
  893.    256,   247,     0,     0,     0,   398,   378,     0,   373,   531,
  894.      0,   133,   134,     0,     0,     0,     0,    31,     0,   110,
  895.    407,   125,   109,   115,     0,   496,     0,   495,   102,   103,
  896.    218,   227,     0,   504,   226,     0,   503,   511,   512,     0,
  897.      0,    18,    10,     0,     7,     7,    48,    47,   699,     0,
  898.     34,    42,    38,    36,    43,    40,   330,    82,    89,    86,
  899.      0,     0,   275,     0,     0,     0,   571,    65,   577,    67,
  900.    113,   509,     0,   673,   674,   154,     0,   153,   668,   690,
  901.      0,   292,   308,   293,     0,   667,   669,   697,   679,     0,
  902.    514,     0,     0,     0,   480,     0,   479,     0,     0,     0,
  903.    471,    70,    58,    73,     0,    57,   471,     0,   475,   493,
  904.      0,   298,   299,     0,    55,    71,    56,    74,   303,   302,
  905.    313,   699,   329,   396,   392,   397,   408,   402,   403,   437,
  906.      0,     0,   440,   443,     0,     0,   426,     0,   699,   311,
  907.      0,     0,   344,   472,   499,   533,     0,     0,   732,   737,
  908.    471,   471,     0,   471,   742,     0,     0,     0,   163,     0,
  909.      0,   165,     0,     0,     0,     0,     0,     0,     0,     0,
  910.    162,   159,   158,   160,     0,     0,     0,     0,   217,     0,
  911.    116,   161,     0,     0,   187,     0,     0,     0,     0,     0,
  912.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  913.      0,     0,     0,     0,     0,     0,     0,   241,   243,   244,
  914.    277,   276,     0,     0,     0,     0,     0,   167,   469,     0,
  915.    175,   274,   223,     0,   696,   222,   259,   260,     0,   287,
  916.    551,   547,   556,     0,   475,   471,   471,   471,   289,   554,
  917.      0,   521,   291,     0,   290,   258,     0,   254,   268,   270,
  918.    518,     0,   255,   112,   111,   466,   385,   464,   375,     0,
  919.    317,     0,     0,   318,   319,   320,    33,     0,    28,    24,
  920.    695,   308,    26,   694,    30,   692,   122,   114,   502,   501,
  921.    505,     0,    17,    20,    19,   330,    53,    49,    51,    52,
  922.     50,    46,     0,     0,     0,     0,   344,   104,    94,   105,
  923.      0,    87,    90,     0,     0,     0,   366,     0,   362,    84,
  924.      0,     0,    66,    69,   578,   572,   471,   471,   672,   685,
  925.    678,   676,   551,   547,     0,   686,   471,   689,   691,   687,
  926.      0,   688,   471,   671,   684,   677,   675,   670,   698,   681,
  927.    682,     0,   513,   476,   478,   477,     0,     0,   492,     0,
  928.    344,   325,   488,     0,     0,     0,   491,     0,   481,   300,
  929.    327,   344,   330,   418,     0,   417,   409,   410,   412,     0,
  930.    414,   436,   432,   431,   220,   522,   471,     0,   666,   699,
  931.    433,   441,   446,   447,   699,   699,   434,   444,   699,     0,
  932.    381,   428,   427,   429,   430,   330,   701,   308,   702,     0,
  933.      0,     0,   343,   345,   346,   741,   740,   704,   704,   704,
  934.      0,     0,     0,   521,     0,     0,   522,     0,   157,     0,
  935.      0,     0,     0,     0,     0,   236,   235,     0,   184,   119,
  936.    220,   522,   221,     0,     0,   367,   383,     0,   215,   214,
  937.    658,   657,     0,   212,   211,   209,   210,   208,   207,   206,
  938.    203,   204,   205,   201,   202,   196,   197,   198,   199,   200,
  939.    194,   195,     0,     0,     0,     0,     0,     0,   169,   181,
  940.      0,     0,   168,   471,   471,     0,   471,   468,   541,     0,
  941.      0,     0,     0,   262,     0,   264,     0,   515,   550,   549,
  942.    546,   545,   695,     0,     0,   565,     0,     0,   562,   288,
  943.    563,   552,   471,   666,   475,   551,   547,     0,     0,   471,
  944.    231,     0,   517,     0,     0,     0,   386,     0,   385,   152,
  945.    151,   150,   149,     0,    23,     0,   393,     0,     0,    16,
  946.    344,    35,    39,    37,    41,     0,     0,    92,     0,    96,
  947.      0,   100,     0,    98,     0,   363,     0,    85,    68,     0,
  948.    579,     0,   573,   574,   510,   507,   550,   546,   551,   547,
  949.    483,     0,   471,   552,   551,   547,     0,   231,     0,   517,
  950.    508,     0,   680,   334,   471,   471,   471,   490,   340,   344,
  951.      0,     0,   420,   419,   413,     0,     0,   439,   344,     0,
  952.     79,     0,   330,   330,     0,   330,     0,   344,     0,   700,
  953.      0,     0,   341,   347,   706,   705,   707,   246,   164,     0,
  954.      0,   166,   190,   192,   191,   252,   253,     0,     0,     0,
  955.      0,   238,     0,     0,     0,     0,   185,     0,   239,   242,
  956.    179,   178,   171,     0,   170,   183,     0,     0,   538,   536,
  957.      0,   539,   475,   176,     0,     0,   265,     0,     0,   548,
  958.    544,   555,   471,   564,   553,   558,     0,   560,     0,   551,
  959.    547,   519,   520,     0,   257,   467,   465,   377,     0,    25,
  960.     29,   693,     0,     0,    44,    93,    91,     0,     0,     0,
  961.      0,   364,   360,     0,     0,   220,   522,   583,   595,   598,
  962.      0,   571,     0,     0,     0,     0,     0,     0,   221,   629,
  963.      0,   654,     0,   590,     0,     0,   308,     0,   567,   588,
  964.    594,   566,   589,   630,     0,   601,   605,   575,   550,   546,
  965.    485,   552,   520,   683,   332,   489,   486,   487,   338,   337,
  966.      0,     0,   411,   344,   344,    78,   456,   471,   220,   522,
  967.      0,   442,   448,   449,   699,   699,   344,   344,   445,     0,
  968.    435,   703,   331,   351,     0,     0,     0,     0,     0,     0,
  969.    371,     0,     0,   368,   188,   213,   126,     0,   172,   173,
  970.    180,   182,   537,   535,   542,   540,     0,   177,     0,   261,
  971.    263,   561,   471,   559,   374,     0,    45,    95,    99,    97,
  972.    365,     0,   576,   570,   582,   644,   646,   571,   571,   571,
  973.      0,     0,     0,   615,   617,   618,   619,     0,     0,     0,
  974.    645,   571,   655,     0,   591,   283,   699,     0,   284,     0,
  975.    699,     0,   699,     0,     0,   580,   569,   568,   592,   628,
  976.    627,   571,   571,     0,     0,   335,   415,   416,   455,   452,
  977.    438,     0,     0,   344,   330,   330,   450,   453,   357,   358,
  978.    359,   356,     0,   349,   352,   342,     0,     0,     0,     0,
  979.    369,     0,     0,   126,   240,     0,   174,   543,   266,   557,
  980.    123,   361,     0,     0,     0,   586,     0,     0,   571,   647,
  981.      0,   650,     0,     0,   611,     0,   620,     0,   626,   631,
  982.      0,   279,   330,   281,   282,   330,     0,     0,     0,   278,
  983.    280,   581,   571,     0,     0,   333,   339,     0,    77,   344,
  984.    344,   463,   344,   344,     0,     0,   351,     0,     0,   248,
  985.    249,   250,   251,     0,   372,   127,   470,   137,     0,   584,
  986.    596,   587,   599,   651,   649,     0,   648,   144,     0,   308,
  987.      0,     0,     0,   616,   625,     0,     0,   593,   141,     0,
  988.    140,     0,   336,   462,   459,   457,   460,   451,   454,   350,
  989.    348,   220,     0,   370,     0,   571,     0,     0,     0,     0,
  990.    609,   699,   613,   612,     0,   634,     0,   632,   659,     0,
  991.    602,   606,     0,     0,     0,   353,   355,   138,   585,   572,
  992.    597,   148,   135,     0,     0,   653,     0,   652,   571,   330,
  993.      0,   636,   635,   637,     0,     0,   660,   661,   621,     0,
  994.      0,   458,   461,     0,   145,     0,     0,   600,   610,   344,
  995.    614,   633,     0,   659,     0,     0,     0,     0,   354,     0,
  996.      0,   136,     0,   638,     0,     0,   622,   662,   603,   607,
  997.    147,   146,   142,     0,   663,     0,     0,     0,     0,     0,
  998.      0,     0,   664,     0,   623,   604,   608,   143,     0,     0,
  999.    639,     0,     0,   642,   643,   665,   624,     0,     0,     0
  1000. };
  1001.  
  1002. static const short yydefgoto[] = {  1348,
  1003.      1,     2,   119,   564,   982,     3,     4,    31,    32,    33,
  1004.    299,   548,   549,   550,    34,    91,    35,   573,   575,   574,
  1005.    576,   572,    36,    37,    38,   412,   128,   129,   130,   339,
  1006.    582,   583,   536,   584,   176,    39,    40,    41,   134,   261,
  1007.    262,   302,   809,   303,  1145,   263,   983,  1275,  1210,  1230,
  1008.   1231,  1330,  1271,   292,   789,   264,   445,   497,   753,   265,
  1009.    266,   267,   293,   269,   507,   312,    43,   270,   457,  1047,
  1010.    271,   272,   273,   274,   131,   275,   984,   402,   517,   773,
  1011.    985,    45,   161,   986,    47,   162,   440,   163,   143,   155,
  1012.     49,   631,   144,  1114,   403,  1188,   156,  1115,    50,  1035,
  1013.    683,   684,   685,  1133,  1134,  1135,   964,   716,   717,    51,
  1014.    540,   288,   906,   798,    52,    53,    54,    55,   180,   181,
  1015.     56,    57,    58,   408,   647,   648,   649,   650,   183,   415,
  1016.    416,   417,   418,   661,   667,   662,  1022,   663,   664,  1023,
  1017.   1024,   537,   538,   498,   779,    59,   372,   373,   145,    60,
  1018.     61,   146,   147,   113,    63,   508,   280,   281,   282,    65,
  1019.    283,    67,    68,   179,    69,   284,   758,   759,   770,   520,
  1020.    988,   989,  1155,   832,   833,   834,   348,   990,   991,  1078,
  1021.   1246,  1157,   992,   993,  1183,  1079,  1247,  1080,  1248,  1112,
  1022.   1290,  1328,  1113,  1291,  1329,  1279,  1223,  1281,  1166,   994,
  1023.   1226,  1284,  1258,  1302,  1324,  1221,  1332,   995,   996,   997,
  1024.   1094,   723,  1286,  1287,  1288,  1334,   365,   775,   367,   368,
  1025.    369,   555,   370,   107,   621,  1173,   679,   680,   435,    71,
  1026.     72
  1027. };
  1028.  
  1029. static const short yypact[] = {   203,
  1030.    236,-32768,-32768,  1874,-32768,    85,-32768,    55,   300,-32768,
  1031. -32768,   590,-32768,-32768,   -23,   252,-32768,   365,-32768,  1493,
  1032. -32768,   355,-32768,   963,   963,-32768,  2214,-32768,-32768,   349,
  1033. -32768,   429,  3939,-32768,-32768,-32768,-32768,   279,   435,   443,
  1034. -32768,-32768,   396,  1052,-32768,  9215,-32768,   704,    30,-32768,
  1035. -32768,   698,-32768,-32768,-32768,-32768,-32768,   488,  1610,-32768,
  1036. -32768,   410,-32768,-32768,-32768,   397,-32768,-32768,-32768,    89,
  1037.   6309,-32768,-32768,-32768,-32768,  8124,  2133,-32768,    55,   355,
  1038.    461,   515,   443,-32768,    89,-32768,    89,  8124,  8124,-32768,
  1039.    363,-32768,   355,-32768,  3239,  4205,   230,    89,  7950,    55,
  1040.   2347,-32768,   484,   103,  2347,-32768,    92,  2356,  2356,   479,
  1041.    501,   396,   514,   519,   540,-32768,   629,   555,  2912,   144,
  1042.   3239,  9396,   593,   706,   572,   666,-32768,   149,   306,    57,
  1043.     57,-32768,-32768,   575,-32768,  4662,   589,-32768,  3833,  3833,
  1044.   3542,  1266,   393,-32768,-32768,   408,-32768,-32768,   397,-32768,
  1045. -32768,-32768,-32768,   704,   536,-32768,  1285,-32768,-32768,-32768,
  1046.    907,   654,-32768,-32768,  3239,-32768,-32768,-32768,-32768,-32768,
  1047. -32768,-32768,-32768,-32768,-32768,-32768,   443,   719,-32768,   617,
  1048.    617,-32768,  2447,-32768,   654,-32768,   608,   875,-32768,-32768,
  1049. -32768,-32768,  4014,-32768,    56,-32768,   609,   647,-32768,-32768,
  1050. -32768,-32768,   683,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1051. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1052. -32768,-32768,-32768,-32768,-32768,   601,-32768,-32768,   654,  1610,
  1053.    351,   657,-32768,-32768,  3117,  9065,   660,   662,-32768,-32768,
  1054. -32768,-32768,-32768,-32768,   665,   690,   692,   699,   703,    92,
  1055.   8816,-32768,-32768,  8816,-32768,-32768,  8816,  6393,  9148,-32768,
  1056.     29,-32768,  8816,-32768,  8211,-32768,-32768,  9444,-32768,  1334,
  1057.   2712,  8294,-32768,   767,   557,-32768,   160,  2819,  9439,-32768,
  1058.    266,-32768,   579,   809,  3239,   230,-32768,    92,   685,-32768,
  1059.    684,   738,  9497,   693,   697,   701,   808,-32768,  2133,-32768,
  1060.    617,-32768,-32768,-32768,   154,-32768,   139,-32768,-32768,-32768,
  1061. -32768,-32768,  2347,-32768,-32768,  2347,-32768,-32768,-32768,  4014,
  1062.     50,-32768,   711,  2133,-32768,-32768,-32768,-32768,   572,   766,
  1063. -32768,-32768,-32768,-32768,-32768,-32768,   656,-32768,   254,-32768,
  1064.   6483,  8381,-32768,    57,    57,   765,-32768,-32768,-32768,-32768,
  1065. -32768,   818,   730,-32768,-32768,   738,   735,  9497,   328,  1775,
  1066.   9396,  1775,  4904,  4548,   737,-32768,    72,  9289,   763,   787,
  1067. -32768,   746,  8381,  4250,-32768,  4250,-32768,  4314,  4314,   753,
  1068. -32768,-32768,-32768,   875,  3239,-32768,-32768,  5854,   752,-32768,
  1069.   4433,   907,   704,  3239,-32768,-32768,-32768,   875,-32768,-32768,
  1070. -32768,   572,-32768,-32768,-32768,-32768,  1191,-32768,-32768,-32768,
  1071.   8381,   156,  1389,  9306,    54,  2311,-32768,   167,   572,   654,
  1072.   2569,   771,   831,-32768,-32768,-32768,   773,   777,-32768,-32768,
  1073. -32768,-32768,   169,-32768,-32768,  8381,   657,  6393,-32768,   381,
  1074.   6393,-32768,  8381,  8468,  8816,  8124,  2569,  2569,  2569,  2569,
  1075. -32768,-32768,-32768,-32768,   782,   784,   765,   793,-32768,  8124,
  1076. -32768,-32768,  3487,  6393,-32768,  8381,  8381,  3006,  8381,  8381,
  1077.   8381,  8381,  8381,  8381,  8381,  8381,  8381,  8381,  8381,  8381,
  1078.   8381,  8381,  8381,  8381,  8381,  8381,  8381,-32768,-32768,-32768,
  1079. -32768,-32768,  8381,  8381,  8381,  8124,  3398,   497,   109,  7032,
  1080. -32768,-32768,    55,   848,   896,-32768,   387,   415,   592,-32768,
  1081.    388,   388,-32768,  3838,   798,   817,   864,-32768,-32768,   412,
  1082.   7507,  1099,-32768,   251,-32768,-32768,  8381,-32768,-32768,-32768,
  1083. -32768,   597,-32768,-32768,-32768,   851,   855,-32768,-32768,    92,
  1084. -32768,  6855,  6945,-32768,-32768,-32768,-32768,   419,   859,-32768,
  1085. -32768,  9200,   698,-32768,-32768,   862,-32768,-32768,-32768,-32768,
  1086. -32768,   865,-32768,-32768,-32768,   656,-32768,-32768,-32768,-32768,
  1087. -32768,-32768,   866,   868,   869,   870,   831,-32768,-32768,   355,
  1088.   8381,   877,-32768,   434,   438,   462,-32768,  5956,  9590,-32768,
  1089.    836,    57,-32768,-32768,-32768,    20,-32768,-32768,-32768,-32768,
  1090. -32768,-32768,  1506,  1506,  3333,-32768,-32768,-32768,-32768,-32768,
  1091.   7598,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1092.    887,  6483,-32768,-32768,-32768,-32768,  4250,  4250,-32768,  4433,
  1093.    831,-32768,   818,   849,   856,   861,-32768,   863,-32768,   907,
  1094. -32768,   831,   656,-32768,   881,-32768,   899,-32768,-32768,  1243,
  1095. -32768,  9590,-32768,-32768,   912,   146,-32768,  8381,  2808,   572,
  1096.    921,-32768,-32768,-32768,   368,   407,   922,-32768,   572,   920,
  1097. -32768,-32768,-32768,-32768,-32768,   551,-32768,  4154,-32768,   187,
  1098.    629,   897,   926,   831,-32768,-32768,-32768,   505,   505,   505,
  1099.    885,   886,  8555,   864,   895,   900,   248,   901,-32768,   906,
  1100.    909,   919,   942,   943,   945,-32768,-32768,   918,-32768,-32768,
  1101.    962,   553,   136,  8381,   969,-32768,   968,   928,  9590,  9590,
  1102. -32768,-32768,   973,  9629,  4583,  9645,  9660,  5903,  6801,  3406,
  1103.   1324,  1324,  1324,  1664,  1664,   814,   814,   640,   640,   640,
  1104. -32768,-32768,   932,   934,   940,   935,   946,  2569,   497,-32768,
  1105.   6483,  8381,-32768,-32768,-32768,  8381,-32768,-32768,   955,  8816,
  1106.    944,   964,  1008,-32768,  8381,-32768,  8381,-32768,   890,-32768,
  1107.    890,-32768,    65,   951,   952,-32768,   953,  2569,   818,-32768,
  1108.    818,  2046,-32768,  1065,   957,  7689,  7689,  4811,   966,  8211,
  1109.    479,   972,   540,   809,   974,  8381,    92,   961,   855,-32768,
  1110.   9590,-32768,  9590,  2133,-32768,   664,   520,  6483,   488,-32768,
  1111.    831,-32768,-32768,-32768,-32768,   766,   978,-32768,   254,-32768,
  1112.   8381,-32768,  8381,-32768,  8381,-32768,     9,-32768,-32768,    92,
  1113. -32768,  5584,  1032,-32768,   818,   818,  2757,  2757,  3282,  3282,
  1114. -32768,   397,-32768,  3954,  7776,  7776,  5016,   174,   979,   244,
  1115.    818,  6483,-32768,  1030,-32768,-32768,-32768,-32768,  1037,   831,
  1116.   8124,  1191,-32768,-32768,-32768,  8381,  8381,    74,  9521,   995,
  1117. -32768,  2416,   656,   656,  3185,   603,  3228,   831,  2569,-32768,
  1118.     52,  1011,-32768,-32768,-32768,-32768,-32768,-32768,-32768,  8899,
  1119.   8899,-32768,-32768,-32768,-32768,-32768,-32768,  1013,  1014,  1019,
  1120.   1022,-32768,  9472,  6483,  6046,  1009,-32768,  8381,-32768,-32768,
  1121. -32768,-32768,   143,  1012,-32768,-32768,  1017,    75,   278,   278,
  1122.   1006,   278,-32768,-32768,  8816,  1107,-32768,  1018,  1020,-32768,
  1123. -32768,-32768,-32768,-32768,-32768,   818,  1023,-32768,  1010,  7863,
  1124.   7863,-32768,-32768,   584,-32768,  9590,-32768,-32768,  1021,-32768,
  1125. -32768,-32768,  2447,   766,-32768,-32768,-32768,  1024,  1026,  1036,
  1126.   6136,-32768,-32768,   668,   231,  1061,   567,-32768,-32768,-32768,
  1127.   1046,-32768,  8381,  1079,  1085,  1088,  8037,    73,   476,-32768,
  1128.   1093,  1139,  1094,-32768,  1971,  9379,  2582,  3725,-32768,-32768,
  1129.   1135,-32768,-32768,-32768,  7135,-32768,-32768,-32768,  2757,  2757,
  1130. -32768,  3954,  1989,-32768,-32768,   818,   818,   818,-32768,  1095,
  1131.   1053,  1054,-32768,  9521,  9521,-32768,-32768,-32768,  1103,   661,
  1132.   8381,-32768,-32768,-32768,   572,   572,   831,   831,-32768,  2607,
  1133. -32768,-32768,-32768,   801,  6483,  8381,  8381,  8381,  8381,  6483,
  1134. -32768,  8381,  1104,-32768,-32768,  9611,   575,  8381,-32768,   143,
  1135. -32768,-32768,-32768,-32768,-32768,-32768,  1062,-32768,  1122,-32768,
  1136. -32768,   818,-32768,-32768,-32768,    66,-32768,-32768,-32768,-32768,
  1137. -32768,    92,-32768,-32768,-32768,-32768,-32768,-32768,-32768,   765,
  1138.   6226,  1082,  5075,-32768,-32768,-32768,-32768,  1115,  8381,  1121,
  1139. -32768,-32768,-32768,  1090,-32768,-32768,   238,   672,-32768,   772,
  1140.    572,  8642,   459,   774,   258,-32768,-32768,-32768,-32768,-32768,
  1141. -32768,-32768,-32768,  6483,  6483,-32768,-32768,-32768,-32768,-32768,
  1142.     74,  8381,  8381,  9521,   656,   656,  1124,  1126,-32768,-32768,
  1143. -32768,-32768,   269,-32768,  1091,-32768,  1084,  1087,  1097,  1098,
  1144. -32768,  9544,  6483,   575,-32768,  1089,-32768,-32768,-32768,   818,
  1145. -32768,-32768,   509,   509,  7417,-32768,  1175,  1137,  1100,-32768,
  1146.   1141,-32768,  8124,  8381,-32768,  7237,-32768,  1146,-32768,-32768,
  1147.    629,-32768,   656,-32768,-32768,   656,  8982,  8982,  6573,-32768,
  1148. -32768,-32768,   765,  6663,  6663,-32768,-32768,  6483,-32768,  9521,
  1149.   9521,-32768,   831,   831,  6483,  6483,   801,  1102,  8729,-32768,
  1150. -32768,-32768,-32768,  6483,-32768,-32768,-32768,-32768,  8124,-32768,
  1151. -32768,-32768,-32768,-32768,-32768,  5674,-32768,-32768,  1109,   234,
  1152.   3239,  9567,  7237,-32768,-32768,  5168,    48,-32768,-32768,  1149,
  1153. -32768,  1150,-32768,-32768,-32768,  1160,  1163,-32768,-32768,-32768,
  1154. -32768,   282,  1123,-32768,  1127,   765,  7327,   518,   295,  5272,
  1155. -32768,   572,-32768,-32768,   296,-32768,  5376,-32768,  1214,  1168,
  1156. -32768,-32768,  6483,  6483,  8381,-32768,-32768,-32768,-32768,    37,
  1157. -32768,-32768,-32768,  8381,  1176,-32768,  1177,-32768,   765,   656,
  1158.   7237,-32768,-32768,-32768,  1147,   201,  1181,-32768,-32768,  6753,
  1159.   6753,-32768,-32768,  1143,-32768,  5764,  1148,-32768,-32768,   831,
  1160. -32768,  1158,  8381,  1214,  1183,  1214,  1151,  1152,-32768,   317,
  1161.   5480,-32768,  1198,-32768,  1156,   246,-32768,-32768,-32768,-32768,
  1162. -32768,-32768,-32768,  1153,-32768,  1254,  1208,  7327,  7327,  6483,
  1163.   1355,   765,-32768,   353,-32768,-32768,-32768,-32768,  1167,  1170,
  1164. -32768,  1271,  1219,-32768,-32768,-32768,-32768,  1281,  1282,-32768
  1165. };
  1166.  
  1167. static const short yypgoto[] = {-32768,
  1168.   1165,-32768,-32768,   958,     7,  1283,-32768,-32768,-32768,-32768,
  1169. -32768,-32768,-32768,   486,-32768,-32768,-32768,-32768,-32768,-32768,
  1170. -32768,  -773,  1169,  1174,-32768,-32768,-32768,-32768,  1166,-32768,
  1171. -32768,   478,   126,-32768,-32768,-32768,  4325,   -30,-32768,  1204,
  1172.    844,  -998,-32768,   -96,   162,-32768,   171,-32768,   153,   124,
  1173.   -980,-32768,  -480,   242,   564,   630,-32768,-32768,  -722,  3685,
  1174.   1316,  -262,  2309,  2833,   804,   159,   431,-32768,-32768,-32768,
  1175. -32768,  -278,-32768,  -110,   -90,-32768,   233,    34,  -210,    83,
  1176.     11,   -91,  -121,    -3,  1446,   -82,  1348,  -127,  -674,   329,
  1177. -32768,  -186,-32768,-32768,   180,-32768,-32768,-32768,-32768,-32768,
  1178.   1092,-32768,   634,-32768,   122,-32768,-32768,   821,   742,    14,
  1179. -32768,-32768,-32768,   526,  -285,    12,  1299,  1300,-32768,-32768,
  1180. -32768,-32768,-32768,  -131,-32768,   473,   686,-32768,   533,   394,
  1181.    469,  -411,-32768,-32768,-32768,-32768,-32768,-32768,   939,-32768,
  1182.    482,   829,   573,   857,  1683,  1544,  -371,-32768,  1375,     0,
  1183.      1,-32768,  4129,   -99,   646,-32768,  3274,-32768,-32768,  3935,
  1184.     -4,   198,  -327,  1336,  3574,   852,  -188,-32768,  1912,-32768,
  1185.  -1147,  -942,  -321,   101,-32768,   539,  -106,   -94,-32768,-32768,
  1186. -32768, -1132,  -932, -1108,-32768,-32768,-32768,-32768,-32768,-32768,
  1187. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1188. -32768,-32768,-32768,-32768,-32768,   -43,-32768,-32768,-32768,-32768,
  1189. -32768,  -421,    70,-32768,    69,-32768,  -369,  -132,-32768,-32768,
  1190.   -258,  1015,  -247,-32768,-32768,    60,   500,-32768,   127,-32768,
  1191.   -260
  1192. };
  1193.  
  1194.  
  1195. #define    YYLAST        9739
  1196.  
  1197.  
  1198. static const short yytable[] = {    66,
  1199.     46,   423,   465,   366,   673,   530,   321,    85,   314,   317,
  1200.     30,   586,    84,   553,    44,    85,    96,   638,   636,   103,
  1201.    103,   178,   103,   533,   350,   596,   915,   231,    66,   122,
  1202.     95,    97,   392,   400,   401,   349,   349,   351,   345,   149,
  1203.    554,    66,   955,   121,   360,  1107,  1212,    85,  1144,   409,
  1204.   1228,   556,    84,   830,    85,  1108,   502,   346,   502,     8,
  1205.    502,   164,  1111,   961,    88,   195,    85,   522,  1250,   194,
  1206.    830,   393,    85,    96,   599,    78,   309,   142,  1257,   651,
  1207.    424,   614,    85,   460,   165,   166,   290,   285,   286,   670,
  1208.    149,    85,     8,    85,    78,   309,   103,   194,   461,   307,
  1209.    103,   670,   420,   103,   103,    75,   100,  1259,    93,   554,
  1210.    347,   962,   100,  1269,    66,    46,   149,    66,   510,   600,
  1211.    556,   188,   831,    76,   601,   310,   615,  -699,   300,    44,
  1212.    426,   616,   361,  -699,   149,   149,   149,    82,  1272,  1295,
  1213.     73,    93,   100,   777,   310,  1144,  1299,  1089,  1311,  1260,
  1214.    577,   562,   522,  1033,   329,    93,   671,   602,   276,    21,
  1215.    149,    93,   693,   100,   617,   187,   709,   164,  1151,   557,
  1216.    294,   296,   100,   754,   164,   164,  1052,   175,    66,   414,
  1217.   1067,   276,  1219,   755,   337,   111,   750,    74,   103,   535,
  1218.   1049,    93,   340,   413,   422,  -103,    75,   756,   164,   327,
  1219.    751,   384,    -1,   510,    99,   867,   341,   360,   460,   653,
  1220.     21,   642,    93,   426,    76,   654,   398,  -229,   359,  1272,
  1221.   1272,    93,   674,   558,   511,    85,   433,   499,  1245,   694,
  1222.    752,  1048,   311,  1224,   512,    -2,   342,   593,   594,   159,
  1223.    160,   879,   164,   189,   513,    12,   328,   514,   515,   349,
  1224.    349,   595,   592,   530,     8,   366,   578,     8,   291,   295,
  1225.   1304,  -229,  -229,   192,   400,   401,    85,   315,    17,   675,
  1226.    509,   640,   433,   433,   524,  -224,   360,   510,   314,   317,
  1227.    149,   100,   192,   194,   424,  -124,  1074,  -230,   880,   870,
  1228.   1254,   164,   401,  1172,    85,   361,   360,   579,    75,   111,
  1229.    192,   126,  1305,    93,    21,  1326,   580,  1107,   103,   526,
  1230.   1098,   103,  1104,  1074,  1107,   103,    76,  1108,   534,    85,
  1231.     96,   693,   651,  1197,  1108,   189,   301,  1147,    21,   187,
  1232.     93,  -230,  -230,  1075,    95,    97,  1265,   599,   127,    89,
  1233.    458,   581,   754,   422,    77,  -225,   192,  1327,  1301,   894,
  1234.   1074,  1074,   755,   527,   100,   149,    66,   149,   149,   524,
  1235.   1182,   343,   708,    66,   361,   127,   756,    90,  1107,   149,
  1236.   1198,   149,  1074,   149,   149,   451,   164,   356,  1108,   811,
  1237.    149,   551,   600,  1266,   361,  -695,   149,   601,   566,   149,
  1238.    422,   100,   192,   606,    11,   610,   612,  1276,  1282,     7,
  1239.      8,    21,    85,    93,   422,   164,   164,  1342,   149,    66,
  1240.    186,    66,   414,   939,   937,   431,    85,   297,   298,  1321,
  1241.    602,  -285,   360,    99,   510,   432,   413,  -285,   456,   360,
  1242.    764,   510,  -699,   164,  -699,  -699,   117,    19,    21,   135,
  1243.     93,  -699,    85,    85,    85,    85,   660,   385,   386,    22,
  1244.    551,   387,   511,   499,  1343,   783,   860,   112,   766,   187,
  1245.   -286,   643,   512,  -699,  -699,  -699,  -286,  -699,   693,  -699,
  1246.    359,   189,   513,   804,   765,   514,   515,   820,   676,    26,
  1247.    192,   822,   118,   136,   137,   829,     7,   100,   805,   878,
  1248.    132,   586,    85,   133,   433,   388,   389,   349,   187,   784,
  1249.    785,   187,   767,   677,   192,   824,   433,   433,   100,   524,
  1250.    361,   424,   400,   360,  1180,   530,    66,   361,   553,   360,
  1251.    692,   821,   178,   695,    19,   823,   366,   465,   701,   702,
  1252.    703,   704,   705,   533,   651,  1091,    22,   315,   112,   112,
  1253.    750,   182,   276,   624,    99,   554,   718,   149,    85,   825,
  1254.    187,  1057,  1208,    84,   751,    21,   556,    93,   189,     7,
  1255.    503,  1273,   504,   287,   632,   164,    26,   360,   289,   431,
  1256.    881,   112,   422,   641,   -27,    13,    14,   -27,   747,   432,
  1257.   -224,     7,     8,   356,   752,   612,     7,     8,   715,   -27,
  1258.    394,   395,    78,    79,     7,   503,  1209,    19,   149,   149,
  1259.    842,   361,   318,    75,   -81,  1274,   842,   361,   456,    22,
  1260.    -81,   456,  -102,   696,   698,   319,   700,    75,   673,    19,
  1261.   -506,    76,   149,   149,    19,   149,  1077,    13,    14,   356,
  1262.    192,    22,    19,   240,   456,    76,    22,   234,   722,   505,
  1263.     21,  -225,    80,    81,    22,    85,   331,    21,   332,   422,
  1264.   1082,   366,   333,   164,   842,   361,   -80,   322,   426,   159,
  1265.    160,    26,   -80,   187,   744,    12,    26,     8,   338,    10,
  1266.    761,   301,   114,   433,    26,    12,   407,   356,   807,   792,
  1267.     13,    14,   422,   433,   433,   433,  1027,  1028,    17,  1028,
  1268.     15,   164,   360,   371,    16,   421,   360,   427,    17,   357,
  1269.     78,    79,   167,   168,   169,   430,   192,   694,   158,   159,
  1270.    160,    75,   360,   715,    21,    12,    93,   486,   487,   871,
  1271.   1123,   192,  1072,  1073,   873,   874,   385,  1174,   876,    76,
  1272.   1053,  1054,   170,  1056,   356,   428,   356,   356,    17,   314,
  1273.    317,   359,   429,    85,   436,   314,   317,   443,    21,   444,
  1274.     80,   171,   446,   114,   114,   360,  1153,  1154,   447,   334,
  1275.    448,   335,   356,   111,   433,   336,   433,   449,   356,   849,
  1276.   1170,   450,   404,    85,   405,   502,   694,   433,   406,    85,
  1277.    361,    66,    66,    66,   361,   541,   114,   539,   567,   944,
  1278.   1184,  1185,   542,   194,   544,   172,   173,   174,   545,    85,
  1279.    361,    85,   546,    78,   309,  1129,  1130,  1131,   112,   112,
  1280.    547,   528,     8,   563,   885,   886,   887,   111,   347,   568,
  1281.   -694,   569,   356,   570,   424,   571,   394,  1175,   385,  1181,
  1282.    914,   597,   149,   149,   149,   149,   598,  1216,   613,   149,
  1283.    842,   842,   842,   361,   622,   240,   529,  1336,  1337,    19,
  1284.    623,   792,   356,   310,   629,    70,   637,    85,   681,    21,
  1285.    718,    93,   682,    87,   439,   442,   359,   149,  1307,  1308,
  1286.    103,    98,    66,   414,    85,   104,   104,   686,   104,   422,
  1287.    422,   687,   422,   706,    70,   707,   551,   413,   483,   484,
  1288.    485,   486,   487,   100,   709,   104,   184,    70,   762,    13,
  1289.     14,   763,   776,    87,   778,   591,  -330,   780,   796,   797,
  1290.     98,   399,   159,   160,   433,   433,   806,   433,    12,   808,
  1291.    810,   812,    98,   813,   814,   815,   921,  1016,    98,  -330,
  1292.   -330,   819,  -330,   510,   356,    66,    66,   828,  1193,  1194,
  1293.     21,    17,    93,  1012,   852,   315,   104,    98,    66,   414,
  1294.    855,   635,   104,   862,   511,   963,   104,   856,   456,   104,
  1295.    104,   677,   857,   413,   512,     7,   100,   858,   861,    11,
  1296.     70,   866,   104,    70,   513,   872,   875,   514,   515,   877,
  1297.    149,    66,   149,   883,   882,  1156,   888,   889,   898,   642,
  1298.    104,   104,   104,   356,   149,   149,   892,   149,   315,   691,
  1299.    164,   893,   895,    19,   315,   111,   356,   896,   356,   694,
  1300.    897,   899,   900,    21,   901,    22,   104,   456,  1097,   902,
  1301.   1103,  -101,   905,   114,   114,    66,   414,    24,   904,   907,
  1302.   1043,  1011,   908,   909,    70,   112,   912,    25,   910,   192,
  1303.    413,   112,   911,   923,   104,    26,   926,   913,   925,   315,
  1304.     27,   927,   932,   933,     7,     8,   743,   934,   745,   746,
  1305.   1227,   938,   356,   948,   356,   830,   356,   942,     8,    92,
  1306.     10,    11,   554,   943,   354,   945,    12,   314,   317,   956,
  1307.   1003,    98,   104,  1340,  1125,  1126,  1043,  1005,  1156,   112,
  1308.    795,    15,    19,  1300,  1009,    16,  1018,   842,  1034,    17,
  1309.   1036,  1037,    21,  1090,    22,  -471,  1038,   138,  -471,  1039,
  1310.   1055,  1045,  1059,  1050,  1064,    21,   139,    93,  1051,  1060,
  1311.   1076,  1061,    98,  1065,  1063,  1068,   140,  1069,   104,   104,
  1312.     70,   422,   422,  1081,    26,   532,   104,  1070,  1084,   141,
  1313.   1085,   192,   780,  1086,   817,  1093,  1092,  1088,  1109,  1095,
  1314.     98,  1156,  1116,  -471,  1117,  1118,  -471,   355,  -471,  1132,
  1315.   1176,   590,  1122,  1143,   104,  1149,  1148,   104,  -471,  1163,
  1316.   1167,   104,   842,   842,   842,    98,  1169,  1171,  1199,   422,
  1317.   1189,  1195,   422,  1196,  1156,  1200,  -471,  -471,  1201,  1213,
  1318.     98,  -471,  1214,  1207,     8,   644,  1217,  1152,  1202,  1203,
  1319.   -471,  1225,  1215,  1241,  1261,  1262,  1137,  1138,  1139,  1140,
  1320.   1251,   104,    70,   104,   104,    70,   149,  1263,  1146,    70,
  1321.   1264,   645,  1285,  1289,  1267,   104,   646,   104,  1268,   104,
  1322.    104,  1298,  1074,   164,  1303,  1306,   104,  1341,  1317,   360,
  1323.   1331,    21,   104,    93,  1309,   104,     8,   863,  1314,  1312,
  1324.    114,  1161,  1319,  1320,  1252,  1323,   114,  1325,    98,  1168,
  1325.    849,   458,  1333,  1335,   104,    70,   382,    70,  1344,   112,
  1326.    112,  1345,    98,   645,  1347,   112,   112,   112,   864,  1346,
  1327.   1349,  1350,   323,   565,     5,   396,   422,   325,  -699,   950,
  1328.   -699,  -699,   326,    21,   344,    93,   957,  -699,    98,    98,
  1329.     98,    98,   305,   710,   114,  1206,  1211,  -699,  1232,  -699,
  1330.   -699,  1280,   768,  1162,  1100,   917,  -699,   884,  1240,  -699,
  1331.   -699,   383,  1132,  -699,   949,  -699,    85,   361,   928,   827,
  1332.    929,   123,   124,  1218,  1013,   865,   315,   111,  -699,  -699,
  1333.    397,   953,  -699,   356,  -699,  1030,  1066,    86,    98,   456,
  1334.    104,    48,   668,   749,  1218,  1218,  1029,   187,     8,    92,
  1335.     10,    11,   104,   104,  1339,    70,    12,    48,   799,   947,
  1336.   1296,   998,   794,  1316,  1318,     0,   187,   488,  1032,  1218,
  1337.     48,    15,   620,   532,   958,    16,   959,     0,   960,    17,
  1338.      0,   655,   656,   154,   479,   480,   481,   482,   483,   484,
  1339.    485,   486,   487,   104,    87,    21,   185,    93,     0,     0,
  1340.      0,     0,     0,   551,   489,   490,     0,     0,   229,   491,
  1341.    492,   493,   494,   278,    48,     0,     0,     0,     0,    19,
  1342.      0,     0,   657,     0,     0,   278,   278,     0,     0,    21,
  1343.    356,    22,   853,   154,  1297,     0,   278,     0,   658,     0,
  1344.      0,     0,     0,   139,   104,   104,    70,     0,     0,     0,
  1345.    722,   722,   794,   140,     0,     0,    48,     0,     0,   154,
  1346.      0,    26,     0,  1315,     0,     0,   659,     0,   104,   104,
  1347.      0,   104,     0,   363,   114,   114,     0,     0,     0,     0,
  1348.    114,   114,   114,     0,     0,     0,     8,    92,    10,    11,
  1349.      0,    98,     0,     0,    12,     0,   356,     0,     7,     8,
  1350.     70,     0,    11,   375,   377,   380,   228,     0,     0,    15,
  1351.      0,   277,     0,    16,     0,     0,     0,    17,     0,   104,
  1352.     48,     0,   112,   277,   277,     0,     0,     0,     0,   104,
  1353.    104,   104,     0,    21,   277,    93,    19,     0,     0,   510,
  1354.      0,     0,     0,     0,     0,     0,    21,     0,    22,     0,
  1355.      0,    94,     0,     0,     0,     0,   452,   101,   105,   453,
  1356.    603,   916,   454,     0,     0,     0,     0,   185,   462,     0,
  1357.    604,   362,     0,     0,     0,     0,     0,   501,    26,     0,
  1358.    513,     0,     0,   605,   515,     0,     0,     0,     0,    98,
  1359.      0,     0,     0,     0,     0,   278,     0,   112,   112,   112,
  1360.      0,     0,     0,     8,   230,    10,   184,     0,   229,   279,
  1361.    104,    12,   104,     0,     0,     0,   185,     0,   952,    98,
  1362.      0,   279,   279,   104,     0,    98,    15,   794,   794,   794,
  1363.     16,     0,   279,     0,    17,   532,   552,     0,     0,     0,
  1364.      0,   313,   316,     0,     0,    98,     0,    98,     0,     0,
  1365.     21,     0,    93,     0,     0,     0,     0,     0,   816,     0,
  1366.     98,    48,  1004,     0,     0,     0,     0,     0,     0,   364,
  1367.      0,     0,   374,   376,     0,     0,     0,     0,   104,   104,
  1368.    104,   104,     0,     0,     0,   104,   794,   794,   794,     0,
  1369.      0,     0,     0,   277,     0,     0,     0,     0,   154,     0,
  1370.      0,   185,     0,    98,     0,   552,   228,     0,     0,     0,
  1371.      0,     0,   854,   104,  1041,  1044,   104,     0,    70,     0,
  1372.     98,     0,     0,   859,     0,   363,   481,   482,   483,   484,
  1373.    485,   486,   487,     0,   362,     0,     0,   114,   625,     0,
  1374.    626,   193,   375,   377,     0,     0,     0,     0,     0,     0,
  1375.    699,   154,  1243,    48,     0,   639,     0,     0,   678,     0,
  1376.    104,   104,     0,   104,     0,     0,     0,     7,     8,     0,
  1377.      0,  1044,     0,     0,     0,   278,     0,   665,   278,     0,
  1378.      0,   794,   794,   278,   678,   678,   678,   678,   320,     0,
  1379.      0,   279,     0,     0,    70,     0,     0,   278,     0,     0,
  1380.      0,   278,     0,   362,   230,    19,     0,   352,   510,     0,
  1381.      0,     0,   114,   114,   114,    21,     0,    22,  1294,     0,
  1382.      0,     0,   391,   362,     0,     0,   104,    70,   104,   603,
  1383.      0,     0,   364,   278,   229,     0,     0,     0,     0,   604,
  1384.    104,   104,     0,   104,     0,  1136,     0,    26,     0,   513,
  1385.   1141,   552,   605,   515,     0,     0,   277,     0,   363,     0,
  1386.      0,     0,     0,     0,     6,     0,     7,     8,     9,    10,
  1387.     11,    70,     0,   277,     0,    12,   277,     0,     0,     0,
  1388.      0,   277,   277,   277,   277,   277,     0,     0,    13,    14,
  1389.     15,     0,   954,     0,    16,   277,     0,     0,    17,   277,
  1390.      0,   364,    18,     0,    19,     0,     0,     0,    20,     0,
  1391.      0,   627,   628,     0,    21,     0,    22,     0,     0,    23,
  1392.      0,   364,     0,     0,  1186,  1187,     0,     0,    24,     0,
  1393.      0,   277,   228,     0,     0,     0,     0,     0,    25,     0,
  1394.      0,  1010,   552,   794,     0,     0,    26,     0,   363,   362,
  1395.   1017,    27,     0,  1205,   279,     0,   362,    28,    29,  1031,
  1396.      0,     0,     0,     7,     8,     0,     0,   375,   377,   380,
  1397.      0,   279,     0,     0,   279,   380,     0,     0,     0,   279,
  1398.    279,   279,   279,   279,     0,     0,     0,     0,  -511,     0,
  1399.      0,   625,   626,   279,   639,     0,   552,   279,  1233,     0,
  1400.      0,    19,     0,  -511,  -511,  1238,  1239,     0,     0,     0,
  1401.   -511,    21,     0,    22,  1244,     0,  1096,     0,   794,   794,
  1402.    794,     0,  -511,   380,     0,   139,     0,     0,     0,   279,
  1403.    230,     0,     0,  -511,  -511,   140,  -511,     0,  -511,   100,
  1404.    362,     0,   424,    26,   769,   771,   362,   364,   141,     0,
  1405.      0,     0,     0,   630,   364,     0,     0,     0,     0,   633,
  1406.      0,     0,   104,     0,     0,   924,  -511,  -511,     0,     0,
  1407.   -511,  -511,     0,  1292,  1293,     0,     0,     0,     0,   510,
  1408.   -511,     0,     0,     0,     0,   678,    21,     0,    93,   918,
  1409.      0,   452,   453,     0,   362,  1119,  1120,     0,     0,     0,
  1410.    511,     0,     0,   688,   689,     0,   690,     0,  1127,  1128,
  1411.    512,     0,     0,     0,     0,   678,     0,     0,     0,     0,
  1412.    513,   552,     0,   514,   515,   363,     8,    92,    10,    11,
  1413.      0,     0,     0,     0,    12,     0,   837,   838,   364,     0,
  1414.   1338,   552,     0,   951,   364,     0,     0,     0,     0,    15,
  1415.    452,   453,     0,    16,     0,     0,     0,    17,     0,     0,
  1416.      0,     0,     0,     0,     0,     0,     0,     0,     0,   987,
  1417.      0,     0,    98,    21,     0,    93,     0,     0,   519,   523,
  1418.    525,     0,     0,   277,   363,     0,     0,     0,     0,   781,
  1419.    782,     0,   364,     0,   781,   452,   453,     0,   278,     0,
  1420.      0,   625,   626,   375,   377,  1192,     7,   100,   639,   375,
  1421.    377,   380,     0,   277,    48,     0,   678,     0,     0,   362,
  1422.      0,     0,     0,   362,     0,     0,     0,     0,     0,     0,
  1423.   1058,     0,     0,     0,     0,     0,  1025,     0,     0,   362,
  1424.      0,     0,     0,     0,    19,   452,   453,     0,     0,     0,
  1425.      0,     0,     0,     0,    21,     0,    22,     0,     0,     0,
  1426.      0,   608,     0,   519,   523,   525,     0,     0,   108,   835,
  1427.    836,  1234,  1235,     0,  1236,  1237,     0,     0,   109,   844,
  1428.      0,   279,   362,     0,     0,   851,    26,     0,     0,     0,
  1429.     48,    27,     0,     0,     0,     0,   277,     0,     0,     0,
  1430.      0,   410,     0,     7,     8,    92,    10,    11,     0,     0,
  1431.      0,   279,    12,     0,   277,     0,     0,   364,     0,   769,
  1432.    771,   364,     0,   154,     0,   987,     0,    15,     0,   868,
  1433.      0,    16,   987,     0,     0,    17,  -423,   364,     0,     7,
  1434.    100,    19,     0,   184,     0,     0,     0,     0,     7,   100,
  1435.      0,    21,    11,    22,     0,     0,   672,     0,     0,     0,
  1436.    411,     0,     0,   625,   626,    24,   639,    48,     0,     0,
  1437.      0,     0,   999,  1000,   268,    25,     0,    19,   999,  1000,
  1438.    364,  1313,     0,    26,     0,     0,    19,    21,    27,    22,
  1439.      0,     0,     0,     0,   279,     0,    21,   268,    22,     0,
  1440.      0,    24,     0,  -423,     0,     0,     0,     0,  1019,  1020,
  1441.    108,    25,   279,   772,     0,   774,     0,     0,   987,    26,
  1442.    109,     0,   774,     0,    27,     0,   919,   920,    26,   922,
  1443.      0,     0,     0,    27,   358,     0,     0,   410,     0,     7,
  1444.      8,    92,    10,    11,     0,     0,    19,     0,    12,     0,
  1445.      0,     0,     0,   523,     0,   936,    21,     0,    22,     0,
  1446.      0,     0,     0,    15,     0,  1021,   380,    16,     0,     0,
  1447.    139,    17,  -422,   769,   771,     0,     0,    19,     0,     0,
  1448.    140,     0,   452,   453,     0,     0,     0,    21,    26,    22,
  1449.      0,     0,   987,   141,     0,     0,   411,     0,     0,     0,
  1450.   1220,    24,     0,   987,     0,   772,   774,     0,     0,     0,
  1451.      0,    25,   774,     0,     0,  1002,   278,     0,     0,    26,
  1452.      0,  1220,  1220,     0,    27,     0,     0,  1006,  1007,  1008,
  1453.      0,     0,     0,     0,     0,     0,     0,     0,     0,  -422,
  1454.      0,   375,   377,   380,     0,     0,  1220,     0,     0,     0,
  1455.      0,     0,     0,   987,     0,     0,     0,   459,     0,     0,
  1456.    987,     0,     8,   987,    10,    11,     0,     0,     0,     0,
  1457.     12,     0,     0,     0,     7,     8,   158,   159,   160,   523,
  1458.      0,     0,     0,    12,   987,    15,     0,   987,     0,    16,
  1459.      0,     0,     0,    17,   987,     0,     0,   410,   228,     7,
  1460.      8,    92,    10,    11,     0,  1062,    17,     0,    12,    21,
  1461.      0,    93,    19,     0,   277,   510,     0,     0,   987,   228,
  1462.    228,     0,    21,    15,    22,     0,     0,    16,     0,     0,
  1463.      0,    17,  -424,   987,     0,     0,   139,    19,     0,   589,
  1464.    358,     0,     0,     0,   228,     0,   140,    21,   987,    22,
  1465.      0,     0,   672,     0,    26,     0,   411,     0,     0,  1102,
  1466.      0,    24,     0,     0,     0,   987,   987,     0,   552,     0,
  1467.    930,    25,   931,     0,     0,     0,     0,     0,     0,    26,
  1468.      0,     0,     0,   935,    27,     0,   358,     0,   772,   774,
  1469.   1121,     0,     0,     0,     0,     0,   230,     0,     0,  -424,
  1470.      0,     0,     0,     0,     0,     8,     0,    10,    11,   652,
  1471.    627,   628,   279,    12,     0,     0,     0,   230,   230,     0,
  1472.      0,     0,     0,     0,     0,     0,     0,     0,    15,     0,
  1473.      0,     0,    16,     0,   358,  1150,    17,     0,   930,   931,
  1474.      0,   772,   230,     0,     0,   935,     0,   772,   774,     7,
  1475.      8,     0,    21,   184,    93,   495,     0,     0,   268,     0,
  1476.      0,   589,     0,     0,   719,   720,   362,   724,   725,   726,
  1477.    727,   728,   729,   730,   731,   732,   733,   734,   735,   736,
  1478.    737,   738,   739,   740,   741,   742,     0,    19,     0,   496,
  1479.    510,   358,     0,   358,   358,     0,     0,    21,     0,    22,
  1480.      7,     8,    92,    10,    11,     0,     0,   354,     0,    12,
  1481.      0,   603,   100,     0,   159,   160,     0,     0,     0,   358,
  1482.     12,   604,     0,     0,    15,   358,    42,     0,    16,    26,
  1483.      0,   513,    17,     0,   605,   515,     0,     0,    19,     0,
  1484.    801,   803,   772,    17,     0,     0,    42,    42,    21,   110,
  1485.     22,     0,   510,     0,     0,    42,     0,     0,     0,    21,
  1486.      0,    93,   378,     0,   364,     0,    42,     0,    42,     0,
  1487.      0,     0,   379,   511,     0,     0,     0,     0,     0,   358,
  1488.     26,     0,     0,   512,     0,   141,   589,     0,   190,     0,
  1489.    355,     0,     0,   513,     0,     0,   521,   515,     0,     0,
  1490.    930,   931,     6,   935,     7,     8,     9,    10,    11,   358,
  1491.      0,     0,     0,    12,     0,     0,     0,    42,     0,     0,
  1492.    589,     0,     0,    42,     0,   190,     0,    42,    15,     0,
  1493.    110,   110,    16,     0,     0,     0,    17,     0,     0,     0,
  1494.      0,    42,    19,    42,    42,     0,   324,     0,     0,     0,
  1495.      0,     0,    21,     0,    22,     0,   869,    23,     0,     0,
  1496.      0,    42,    42,   110,     0,     0,    24,     0,     0,     0,
  1497.      0,   190,     0,     0,     0,     0,    25,     0,     0,     0,
  1498.      0,     0,     0,     0,    26,     0,     0,    42,     0,    27,
  1499.      0,   358,     0,     0,     0,    28,   721,     0,     7,     8,
  1500.      0,    10,   437,   233,   234,    42,   235,    12,     0,     0,
  1501.      0,     0,   903,     0,     0,    42,     0,     0,     0,     0,
  1502.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1503.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1504.      0,   245,   246,   247,   248,   249,    21,     0,    22,   589,
  1505.    358,     0,     0,     0,     0,  -656,     0,   250,     0,     0,
  1506.    251,     0,     0,   358,     0,   358,     0,     0,   252,   253,
  1507.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1508.      0,     0,     0,   258,     0,     0,     0,   259,     0,     0,
  1509.      0,     0,     0,     0,   946,     0,     0,   506,     0,   260,
  1510.      0,     0,     0,     0,     0,   190,   589,    42,     0,     7,
  1511.      8,     0,    10,   437,   233,   234,     0,   235,    12,   358,
  1512.      0,   358,     0,   358,     0,     0,     0,     0,     0,     0,
  1513.      0,     0,     0,    15,   236,    42,     0,    16,    42,   239,
  1514.      0,    17,    42,   240,   241,     0,   242,    19,   243,   244,
  1515.    589,     0,   245,   246,   247,   248,   249,    21,     0,    22,
  1516.      0,     0,     0,     0,  1014,  1015,     0,     0,   250,     0,
  1517.      0,   251,     0,     0,     0,     0,     0,  1019,   100,   252,
  1518.    253,   254,    42,    42,    42,    42,     0,   255,   256,   257,
  1519.     42,     0,     0,     0,   438,     0,    42,     0,    42,     0,
  1520.    110,   110,   589,   589,     0,     0,  1046,    42,     0,     0,
  1521.    260,     0,     0,    42,     0,    19,    42,     0,   410,     0,
  1522.      7,     8,    92,    10,    11,    21,     0,    22,     0,    12,
  1523.      0,     7,     8,     0,  1021,    42,    42,     0,    42,    24,
  1524.      0,     0,     0,     0,    15,     0,     0,     0,    16,    25,
  1525.      0,     0,    17,  -425,     0,     0,     0,    26,    19,   589,
  1526.      0,     0,    27,     0,     0,     0,     0,    64,    21,    19,
  1527.     22,  1083,     0,     0,     7,     8,     0,   411,    11,    21,
  1528.      0,    22,    24,     0,     0,     0,     0,    64,    64,     0,
  1529.    115,     0,    25,   139,     0,     0,    64,     0,     0,     0,
  1530.     26,     0,     0,   140,     0,    27,     0,    64,     0,    64,
  1531.      0,    26,    19,     0,     0,   510,   141,     0,     0,  1124,
  1532.   -425,     0,    21,     0,    22,     7,     8,    92,    10,    11,
  1533.      0,   506,   354,   589,    12,     0,   839,     0,   589,     0,
  1534.   1142,     0,     0,   791,     0,     0,   840,     0,     0,    15,
  1535.      0,     0,     0,    16,    26,     0,   513,    17,    64,   605,
  1536.    515,     0,     0,    19,    64,     0,   510,     0,    64,     0,
  1537.      0,   115,   115,    21,    42,    22,     0,     0,     0,     0,
  1538.      0,     0,    64,     0,    64,    64,     0,   839,     0,     0,
  1539.      0,     8,     0,    10,    11,     0,     0,   840,     0,    12,
  1540.    358,     0,    64,    64,   115,    26,     0,   513,     0,     0,
  1541.    605,   515,   589,   589,    15,   355,     0,     0,    16,     0,
  1542.   1190,  1191,    17,     0,     0,    42,    42,   110,    64,     0,
  1543.      0,     0,     0,   848,     0,     0,     0,     0,    21,     0,
  1544.     93,   589,     0,     0,     0,     0,    64,     0,     0,    42,
  1545.     42,     0,    42,     0,     0,     0,    64,     0,     0,     0,
  1546.      0,     0,  1222,   476,   477,   478,   479,   480,   481,   482,
  1547.    483,   484,   485,   486,   487,   748,     0,   587,     0,   711,
  1548.    712,   110,    10,   437,   233,   234,   589,   235,    12,     0,
  1549.      0,     0,     0,   589,   589,     0,     0,   358,     0,     0,
  1550.      0,     0,   589,    15,   236,   237,   238,    16,     0,   239,
  1551.      0,    17,     0,   240,   241,   791,   242,    19,   243,   244,
  1552.      0,     0,   245,   246,   247,   248,   249,    21,     0,   713,
  1553.    588,     0,     0,     0,     7,     8,     0,     0,   250,     0,
  1554.      0,   251,     0,     0,     0,     0,     0,   531,    64,   252,
  1555.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1556.      0,   589,   589,   358,   258,   714,     0,     0,   259,     0,
  1557.      0,     0,    19,     0,     0,     0,    64,     0,     0,    64,
  1558.    260,     0,    21,    64,    22,     0,     0,     0,     0,     0,
  1559.    116,     0,     0,     0,     0,     0,   378,     0,     0,     0,
  1560.      0,     0,   585,     0,     0,     0,   379,   150,   791,   791,
  1561.      0,     0,     0,     0,    26,     0,     0,     0,     0,   141,
  1562.      0,     0,     0,    64,    64,    64,    64,     0,   589,     0,
  1563.      0,    64,     0,     0,     0,     0,     0,    64,     0,    64,
  1564.      0,   115,   115,     0,     0,     0,     0,     0,    64,     0,
  1565.      0,     0,     0,     0,    64,     0,     0,    64,   150,    42,
  1566.     42,   110,   110,     0,   190,     0,    42,   848,   848,   848,
  1567.      0,   116,   116,     0,     0,     0,    64,    64,     0,    64,
  1568.      0,     0,     0,     0,   150,     0,     0,     0,     0,     0,
  1569.      0,     0,     0,     0,    42,     0,     0,    42,     0,    42,
  1570.      0,     0,   150,   150,   381,     0,     0,     0,     0,     0,
  1571.      0,     0,   791,   791,     0,  1105,     0,   966,   967,    92,
  1572.     10,   232,   233,   234,     0,   235,    12,   968,   150,   969,
  1573.    970,   971,   972,   973,   974,   975,   976,   977,   978,    13,
  1574.     14,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1575.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1576.    245,   246,   247,   248,   249,    21,   190,   979,   347,     0,
  1577.    980,     0,     0,     0,     0,    42,   250,     0,     0,   251,
  1578.      0,     0,     0,     0,   793,     0,     0,   252,   253,   254,
  1579.      0,     0,     0,     0,   434,   255,   256,   257,     0,     0,
  1580.      0,     0,   258,     0,   981,     0,   259,    42,    42,    42,
  1581.      0,     0,     0,     0,     0,    64,     0,  1106,   260,     0,
  1582.      0,    42,    42,     0,    42,     7,     8,     0,     0,    11,
  1583.      0,     8,    92,    10,    11,     0,     0,   354,     0,    12,
  1584.    518,   518,   518,     0,     0,     0,     0,     0,   150,     0,
  1585.      0,     0,    42,     0,    15,     0,     0,     0,    16,     0,
  1586.      0,     0,    17,    19,     0,     0,    64,    64,   115,     0,
  1587.      0,   510,     0,    21,   850,    22,     0,     0,    21,     0,
  1588.     93,     0,     0,     0,     0,     0,     0,   139,     0,     0,
  1589.     64,    64,   511,    64,     0,     0,     0,   140,     0,     0,
  1590.      0,     0,   512,     0,     0,    26,     0,     0,     0,     0,
  1591.    141,     0,   513,     0,     0,   514,   515,     0,     0,     0,
  1592.    355,     0,   115,   607,   848,   607,   607,   518,     0,   120,
  1593.      0,     7,     8,    92,    10,    11,     0,   150,     0,   150,
  1594.     12,   381,   381,     0,     0,     0,     7,     8,   150,     0,
  1595.    424,   516,   516,   516,   150,    15,   793,   150,     0,    16,
  1596.      0,     0,     0,    17,     0,     0,     0,     0,   148,    19,
  1597.      0,     0,     0,     0,     0,     0,   150,     0,     0,    21,
  1598.      0,    22,     0,     0,    19,     0,     0,   510,     0,     0,
  1599.    191,     0,     0,    24,    21,     0,    22,     0,     0,   848,
  1600.    848,   848,     0,    25,     0,     0,     7,   100,   603,   191,
  1601.    424,    26,     0,     0,     0,     0,    27,     0,   604,   148,
  1602.      0,     0,     0,     0,     0,     0,    26,     0,   513,     0,
  1603.      0,   605,   515,     0,   516,     0,   516,   516,   516,     0,
  1604.      0,     0,     0,    42,    19,   148,     0,     0,     0,   793,
  1605.    793,     0,     0,     0,    21,     0,    22,   531,     0,     0,
  1606.      0,     0,   757,   148,   148,   148,     0,     0,    24,     0,
  1607.      0,     0,     0,   390,   518,   518,     0,   518,    25,     0,
  1608.      0,     0,   585,     0,   518,     0,    26,     0,     0,   148,
  1609.      0,    27,     0,     0,     0,     0,     0,     0,     0,     0,
  1610.     64,    64,   115,   115,     0,     0,     0,    64,   850,   850,
  1611.    850,     0,     0,     0,     0,   607,     0,     0,     0,   191,
  1612.      0,     0,    62,     0,     0,     0,     0,     0,     0,     0,
  1613.      0,     0,     0,     0,     0,    64,     0,     0,    64,     0,
  1614.     64,     0,   102,   106,     0,     0,     0,   100,     0,   159,
  1615.    160,   125,     0,   793,   793,    12,     0,     0,     0,     0,
  1616.      0,     0,     0,     0,   157,     0,   607,   607,   843,     0,
  1617.      0,     0,     0,     0,   843,     0,     0,     0,    17,     0,
  1618.      0,     0,     0,     0,     0,   516,   516,   510,   516,     0,
  1619.    150,   150,     0,   150,    21,   790,    93,     0,     8,   151,
  1620.     10,   152,     0,     0,     0,     0,    12,   191,   511,   148,
  1621.      0,     0,     0,     0,     0,     0,    64,     0,   512,   306,
  1622.      0,    15,   381,   308,     0,    16,   516,     0,   513,    17,
  1623.      0,   514,   515,     0,     0,     0,     0,    62,     0,     0,
  1624.    330,   518,     7,     8,     0,    21,   184,    93,    64,    64,
  1625.     64,   434,   434,   434,     0,     0,     0,   102,   106,     0,
  1626.      0,     0,    64,    64,     0,    64,     0,     0,     0,     0,
  1627.      0,     0,     0,     0,     0,     0,     0,   516,   516,   516,
  1628.     19,     0,     0,     0,   148,   790,   148,   148,     0,     0,
  1629.     21,     0,    22,    64,     0,     0,     0,     0,   148,     0,
  1630.    148,   419,   148,   148,   139,     0,     7,     8,     0,   148,
  1631.     11,   425,     0,     0,   140,   148,     0,     0,   148,     0,
  1632.      0,     0,    26,     0,     0,     0,    83,   141,     0,     0,
  1633.      0,     0,   518,     0,   518,     0,     0,   148,    83,    83,
  1634.      0,    83,     0,     0,    19,   518,     0,     0,     0,   518,
  1635.    518,   518,   516,     0,    21,     0,    22,     0,     0,     0,
  1636.      0,     0,     0,     0,     0,   850,   177,     0,   378,     0,
  1637.      0,     0,     0,     0,     0,     0,     0,     0,   379,     0,
  1638.      0,     0,     0,     0,     0,     0,    26,     0,     0,     0,
  1639.      0,   141,     0,     0,     0,     0,     0,     0,     0,     0,
  1640.    607,   607,   843,   843,     0,     0,     0,   607,   843,   843,
  1641.    843,     0,     0,     0,     0,    83,     0,    83,    83,    83,
  1642.      0,     0,    83,    83,     0,     7,     8,     0,     0,   424,
  1643.      0,   559,     0,     0,   560,   150,     0,     0,   561,     0,
  1644.    850,   850,   850,   516,     0,   516,     0,     0,   191,     0,
  1645.      0,     0,     0,     0,     0,     0,   516,     0,     0,     0,
  1646.    790,   790,   790,    19,     0,     0,     0,     0,     0,     0,
  1647.      0,     0,     0,    21,     0,    22,   148,     0,     0,   609,
  1648.      0,     0,   757,   757,    64,   757,   619,   139,     0,     0,
  1649.      0,     0,   306,     0,   308,     0,     0,   140,     0,     0,
  1650.      0,     0,     0,   518,   518,    26,     0,    83,     0,   425,
  1651.    141,   516,   516,   516,   516,     0,     0,     0,   516,   790,
  1652.    790,   790,     0,     0,     0,     0,     0,   148,   148,   841,
  1653.      0,   666,   669,     0,   419,   841,     0,     0,     0,     0,
  1654.   -304,     8,  -304,    10,   184,    83,     0,     0,   150,    12,
  1655.    150,   148,   148,     0,   148,     0,     0,     0,     0,     0,
  1656.      0,     0,   607,   607,    15,   607,     0,     0,    16,     0,
  1657.      0,     0,    17,     0,     0,     0,     0,     0,  -304,     0,
  1658.      0,   510,     0,   841,     0,     0,     0,     0,    21,    83,
  1659.     93,    83,    83,     0,     0,     0,     0,     0,     0,     0,
  1660.      0,     0,   511,     0,     0,     0,     0,     0,     0,     0,
  1661.      0,     0,   512,     0,   790,   790,     0,     0,     0,     0,
  1662.   -304,    83,   513,     0,     0,   514,   515,    83,     0,     0,
  1663.     83,     0,     0,     0,    83,   471,   472,   473,   474,   475,
  1664.    476,   477,   478,   479,   480,   481,   482,   483,   484,   485,
  1665.    486,   487,   353,     0,     7,     8,    92,    10,   232,   233,
  1666.    234,   354,   235,    12,     0,   381,     0,     0,     0,     0,
  1667.      0,     0,     0,   516,   516,     0,   516,     0,    15,   236,
  1668.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  1669.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  1670.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  1671.      0,     0,     0,   250,     0,     0,   251,     0,     0,     0,
  1672.      0,   102,   106,     0,   252,   253,   254,     0,     0,     0,
  1673.      0,     0,   255,   256,   257,     0,     0,     0,     0,   258,
  1674.    381,   381,   381,   259,   355,   559,   560,    83,   561,     0,
  1675.      0,     0,     0,  -666,     0,   260,     0,     0,     0,     0,
  1676.      0,   148,   148,   148,   148,     0,  1001,     0,   148,   841,
  1677.    841,   841,     0,     0,     0,     0,     0,     0,     0,     0,
  1678.      0,     0,     0,     0,   150,     0,     0,     0,     0,     0,
  1679.      0,     0,     0,     0,     0,     0,   148,     0,     0,     0,
  1680.      0,   455,     0,     7,     8,    92,    10,   232,   233,   234,
  1681.    354,   235,    12,    83,     0,     0,     0,     0,     0,     0,
  1682.      0,     0,     0,    83,     0,    83,    83,    15,   236,   237,
  1683.    238,    16,     0,   239,     0,    17,     0,   240,   241,     0,
  1684.    242,    19,   243,   244,   510,     0,   245,   246,   247,   248,
  1685.    249,    21,     0,    22,  -237,     0,     0,     0,     0,     0,
  1686.      0,     0,   250,     0,     0,   940,     0,   177,   191,     0,
  1687.      0,     0,     0,   252,   253,   941,     0,     0,     0,     0,
  1688.      0,   255,   256,   257,     0,   513,     0,     0,   788,   515,
  1689.      0,     0,   259,   355,     0,     0,     7,     8,   158,   159,
  1690.    160,     0,     0,     0,   260,    12,     0,     0,     0,   148,
  1691.      0,   148,     0,     0,     0,     0,     0,     0,     0,     0,
  1692.      0,     0,     0,   148,   148,     0,   148,     0,    17,     0,
  1693.      0,     0,     0,     0,    19,     0,     0,   510,     0,     0,
  1694.      0,     0,     0,     0,    21,     0,    22,     0,     0,     0,
  1695.      0,     0,     0,     0,     0,   306,   308,     0,   603,     0,
  1696.      0,     0,   425,     0,     0,     0,     0,     0,   604,     0,
  1697.      0,     0,     0,     0,     0,     0,    26,     0,   513,     0,
  1698.      0,   611,   515,     0,     0,     0,     0,     0,     0,     0,
  1699.   1026,     0,    83,  1026,     0,   419,     0,     0,     0,     0,
  1700.      0,     0,    83,    83,    83,     0,   455,     0,     7,     8,
  1701.     92,    10,   232,   233,   234,   354,   235,    12,     0,     0,
  1702.      0,     0,     0,     0,     0,     0,   841,     0,     0,     0,
  1703.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1704.     17,     0,   240,   241,     0,   242,    19,   243,   244,   510,
  1705.      0,   245,   246,   247,   248,   249,    21,     0,    22,  -237,
  1706.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1707.    845,   419,     0,     0,  1164,     0,     0,     0,   252,   253,
  1708.    846,     0,     0,    83,     0,    83,   255,   256,   257,     0,
  1709.    513,     0,     0,   847,   515,     0,    83,   259,   355,     0,
  1710.      0,   841,   841,   841,  1101,     0,     0,     0,     0,   260,
  1711.      0,     0,     0,     0,     0,     0,     0,   559,   560,     0,
  1712.    561,   466,   467,   468,  1165,   469,   470,   471,   472,   473,
  1713.    474,   475,   476,   477,   478,   479,   480,   481,   482,   483,
  1714.    484,   485,   486,   487,     0,   148,     0,     0,   419,     0,
  1715.      0,     0,     0,     0,     0,     0,     0,     0,  1255,     0,
  1716.    966,   967,    92,    10,   232,   233,   234,     0,   235,    12,
  1717.    968,     0,   969,   970,   971,   972,   973,   974,   975,   976,
  1718.    977,   978,    13,    14,    15,   236,   237,   238,    16,    83,
  1719.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  1720.    244,     0,     0,   245,   246,   247,   248,   249,    21,     0,
  1721.    979,   347,     0,   980,     0,     0,     0,     0,     0,   250,
  1722.      0,     0,   251,     0,     0,     0,     0,     0,     0,     0,
  1723.    252,   253,   254,    83,    83,     0,    83,     0,   255,   256,
  1724.    257,     0,     0,     0,     0,   258,     0,   981,     0,   259,
  1725.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1726.   1256,   260,  1277,     0,   966,   967,    92,    10,   232,   233,
  1727.    234,     0,   235,    12,   968,     0,   969,   970,   971,   972,
  1728.    973,   974,   975,   976,   977,   978,    13,    14,    15,   236,
  1729.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  1730.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  1731.    248,   249,    21,     0,   979,   347,     0,   980,     0,     0,
  1732.      0,     0,     0,   250,     0,     0,   251,     0,     0,     0,
  1733.      0,     0,     0,     0,   252,   253,   254,     0,     0,     0,
  1734.      0,     0,   255,   256,   257,     0,     0,     0,     0,   258,
  1735.      0,   981,     0,   259,     0,     0,     0,     0,     0,     0,
  1736.      0,     0,     0,     0,  1278,   260,  1277,     0,   966,   967,
  1737.     92,    10,   232,   233,   234,     0,   235,    12,   968,     0,
  1738.    969,   970,   971,   972,   973,   974,   975,   976,   977,   978,
  1739.     13,    14,    15,   236,   237,   238,    16,     0,   239,     0,
  1740.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1741.      0,   245,   246,   247,   248,   249,    21,     0,   979,   347,
  1742.      0,   980,     0,     0,     0,     0,     0,   250,     0,     0,
  1743.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1744.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1745.      0,     0,     0,   258,     0,   981,     0,   259,     0,     0,
  1746.      0,     0,     0,     0,     0,     0,     0,     0,  1283,   260,
  1747.   1277,     0,   966,   967,    92,    10,   232,   233,   234,     0,
  1748.    235,    12,   968,     0,   969,   970,   971,   972,   973,   974,
  1749.    975,   976,   977,   978,    13,    14,    15,   236,   237,   238,
  1750.     16,     0,   239,     0,    17,     0,   240,   241,     0,   242,
  1751.     19,   243,   244,     0,     0,   245,   246,   247,   248,   249,
  1752.     21,     0,   979,   347,     0,   980,     0,     0,     0,     0,
  1753.      0,   250,     0,     0,   251,     0,     0,     0,     0,     0,
  1754.      0,     0,   252,   253,   254,     0,     0,     0,     0,     0,
  1755.    255,   256,   257,     0,     0,     0,     0,   258,     0,   981,
  1756.      0,   259,     0,     0,     0,     0,     0,     0,     0,     0,
  1757.      0,     0,  1322,   260,   965,     0,   966,   967,    92,    10,
  1758.    232,   233,   234,     0,   235,    12,   968,     0,   969,   970,
  1759.    971,   972,   973,   974,   975,   976,   977,   978,    13,    14,
  1760.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1761.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1762.    246,   247,   248,   249,    21,     0,   979,   347,     0,   980,
  1763.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1764.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1765.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1766.      0,   258,     0,   981,  1249,   259,   966,   967,    92,    10,
  1767.    232,   233,   234,     0,   235,    12,   968,   260,   969,   970,
  1768.    971,   972,   973,   974,   975,   976,   977,   978,    13,    14,
  1769.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1770.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1771.    246,   247,   248,   249,    21,     0,   979,   347,     0,   980,
  1772.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1773.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1774.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1775.      0,   258,     0,   981,  1310,   259,   966,   967,    92,    10,
  1776.    232,   233,   234,     0,   235,    12,   968,   260,   969,   970,
  1777.    971,   972,   973,   974,   975,   976,   977,   978,    13,    14,
  1778.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1779.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1780.    246,   247,   248,   249,    21,     0,   979,   347,     0,   980,
  1781.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1782.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1783.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1784.      0,   258,     0,   981,   634,   259,     7,     8,    92,    10,
  1785.    232,   233,   234,   354,   235,    12,     0,   260,     0,     0,
  1786.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1787.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1788.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1789.    246,   247,   248,   249,    21,     0,    22,     0,     0,     0,
  1790.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1791.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1792.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1793.      0,   258,     0,     0,     0,   259,   355,     0,     0,     0,
  1794.      0,     0,     0,     0,     0,  -666,   587,   260,   711,   712,
  1795.      0,    10,   437,   233,   234,     0,   235,    12,   474,   475,
  1796.    476,   477,   478,   479,   480,   481,   482,   483,   484,   485,
  1797.    486,   487,    15,   236,   237,   238,    16,     0,   239,     0,
  1798.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1799.      0,   245,   246,   247,   248,   249,    21,     0,   713,   588,
  1800.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1801.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1802.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1803.      0,     0,     0,   258,   714,     0,   587,   259,   711,   712,
  1804.      0,    10,   437,   233,   234,     0,   235,    12,   826,   260,
  1805.      0,     0,     0,     0,  1042,     0,     0,     0,     0,     0,
  1806.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1807.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1808.      0,   245,   246,   247,   248,   249,    21,     0,   713,   588,
  1809.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1810.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1811.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1812.      0,     0,     0,   258,     0,     0,   587,   259,   711,   712,
  1813.      0,    10,   437,   233,   234,     0,   235,    12,  -384,   260,
  1814.      0,     0,     0,     0,  1042,     0,     0,     0,     0,     0,
  1815.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1816.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1817.      0,   245,   246,   247,   248,   249,    21,     0,   713,   588,
  1818.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1819.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1820.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1821.      0,     0,     0,   258,     0,     0,  1158,   259,     7,     8,
  1822.     92,    10,   232,   233,   234,     0,   235,    12,  1071,   260,
  1823.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1824.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1825.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1826.      0,   245,   246,   247,   248,   249,    21,     0,    22,  1159,
  1827.      0,  1160,     0,     0,     0,     0,     0,   250,     0,     0,
  1828.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1829.    254,     0,     0,     0,     0,     0,   255,   256,   257,   196,
  1830.      0,     0,     8,   258,    10,    11,     0,   259,     0,     0,
  1831.     12,     0,     0,     0,     0,     0,     0,     0,     0,   260,
  1832.      0,     0,     0,     0,     0,    15,     0,     0,     0,    16,
  1833.      0,     0,     0,    17,     0,   197,   198,     0,     0,     0,
  1834.      0,     0,   199,     0,     0,     0,     0,     0,     0,    21,
  1835.      0,    93,     0,   200,     0,   201,   202,   203,     0,   204,
  1836.    205,   206,   207,   208,   209,   210,   211,   212,   213,   214,
  1837.    215,   216,   217,   218,   219,   220,   221,     0,     0,   222,
  1838.    223,   224,     0,   455,   225,     7,     8,   226,    10,   232,
  1839.    233,   234,     0,   235,    12,     0,     0,     0,     0,     0,
  1840.      0,     0,   227,     0,     0,     0,     0,     0,     0,    15,
  1841.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1842.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1843.    247,   248,   249,    21,     0,    22,  -237,     0,     0,     0,
  1844.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1845.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1846.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1847.    258,     0,     0,   587,   259,     7,     8,     0,    10,   437,
  1848.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1849.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1850.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1851.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1852.    247,   248,   249,    21,     0,    22,   588,     0,     0,     0,
  1853.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1854.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1855.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1856.    258,     0,     0,   455,   259,     7,     8,     0,    10,   232,
  1857.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1858.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1859.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1860.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1861.    247,   248,   249,    21,     0,    22,  -237,     0,     0,     0,
  1862.      0,     0,     0,     0,   250,     0,     0,  1177,     0,     0,
  1863.      0,     0,     0,     0,     0,   252,   253,  1178,     0,     0,
  1864.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1865.   1179,     0,     0,  1229,   259,     7,     8,     0,    10,   232,
  1866.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1867.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1868.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1869.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1870.    247,   248,   249,    21,     0,    22,     0,     0,  -139,     0,
  1871.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1872.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1873.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1874.    258,     0,     0,   721,   259,     7,     8,     0,    10,   437,
  1875.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1876.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1877.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1878.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1879.    247,   248,   249,    21,     0,    22,     0,     0,     0,     0,
  1880.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1881.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1882.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1883.    258,     0,     0,     0,   259,     0,     0,     0,     0,     0,
  1884.      0,     0,     0,     0,  -656,   800,   260,     7,     8,     0,
  1885.     10,   437,   233,   234,     0,   235,    12,   475,   476,   477,
  1886.    478,   479,   480,   481,   482,   483,   484,   485,   486,   487,
  1887.      0,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1888.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1889.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  1890.      0,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  1891.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  1892.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  1893.      0,     0,   258,     0,     0,   802,   259,     7,     8,     0,
  1894.     10,   437,   233,   234,     0,   235,    12,     0,   260,     0,
  1895.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1896.      0,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1897.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1898.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  1899.      0,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  1900.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  1901.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  1902.      0,     0,   258,     0,     7,     8,   259,    10,   437,   233,
  1903.    234,     0,   235,    12,     0,     0,     0,     0,   260,     0,
  1904.      0,     0,     0,     0,     0,     0,     0,     0,    15,   236,
  1905.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  1906.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  1907.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  1908.      0,     0,     0,   250,     0,     0,   251,     0,     0,     0,
  1909.      0,     0,     0,     0,   252,   253,   254,     0,     0,     0,
  1910.      0,     0,   255,   256,   257,     0,     0,     0,     0,   258,
  1911.      0,     0,     0,   259,     0,     0,     0,     0,     0,     0,
  1912.      0,     0,     0,     0,     0,   260,   760,   966,   967,    92,
  1913.     10,   232,   233,   234,     0,   235,    12,   968,     0,   969,
  1914.    970,   971,   972,   973,   974,   975,   976,   977,   978,    13,
  1915.     14,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1916.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1917.    245,   246,   247,   248,   249,    21,     0,   979,   347,     0,
  1918.    980,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  1919.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  1920.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  1921.      0,     0,   258,     0,   981,     0,   259,     0,     0,     0,
  1922.      0,     0,     0,     0,     0,     0,     0,  1110,   260,   966,
  1923.    967,    92,    10,   232,   233,   234,     0,   235,    12,   968,
  1924.      0,   969,   970,   971,   972,   973,   974,   975,   976,   977,
  1925.    978,    13,    14,    15,   236,   237,   238,    16,     0,   239,
  1926.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1927.      0,     0,   245,   246,   247,   248,   249,    21,     0,   979,
  1928.    347,     0,   980,     0,     0,     0,     0,     0,   250,     0,
  1929.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  1930.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1931.      0,     0,     0,     0,   258,     0,   981,     0,   259,   966,
  1932.    967,    92,    10,   232,   233,   234,     0,   235,    12,   968,
  1933.    260,   969,   970,   971,   972,   973,   974,   975,   976,   977,
  1934.    978,    13,    14,    15,   236,   237,   238,    16,     0,   239,
  1935.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1936.      0,     0,   245,   246,   247,   248,   249,    21,     0,   979,
  1937.   1270,     0,   980,     0,     0,     0,     0,     0,   250,     0,
  1938.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  1939.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1940.      0,     0,     0,     0,   258,     0,   981,     0,   259,   966,
  1941.    967,    92,    10,   232,   233,   234,     0,   235,    12,   968,
  1942.    260,   969,   970,   971,   972,   973,   974,   975,   976,   977,
  1943.    978,    13,    14,    15,   236,   237,   238,    16,     0,   239,
  1944.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1945.      0,     0,   245,   246,   247,   248,   249,    21,     0,   979,
  1946.      0,     0,   980,     0,     0,     0,     0,     0,   250,     0,
  1947.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  1948.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1949.      0,     0,     0,     0,   258,     0,   981,     0,   259,     7,
  1950.      8,    92,    10,   232,   233,   234,   354,   235,    12,     0,
  1951.    260,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1952.      0,     0,     0,    15,   236,   237,   238,    16,     0,   239,
  1953.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1954.    510,     0,   245,   246,   247,   248,   249,    21,     0,    22,
  1955.      0,     0,     0,     0,     0,     0,     0,     0,   250,     0,
  1956.      0,   786,     0,     0,     0,     0,     0,     0,     0,   252,
  1957.    253,   787,     0,     0,     0,     0,     0,   255,   256,   257,
  1958.      0,   513,     0,     0,   788,   515,     0,     0,   259,   355,
  1959.      7,     8,    92,    10,   232,   233,   234,   354,   235,    12,
  1960.    260,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1961.      0,     0,     0,     0,    15,   236,   237,   238,    16,     0,
  1962.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  1963.    244,   510,     0,   245,   246,   247,   248,   249,    21,     0,
  1964.     22,     0,     0,     0,     0,     0,     0,     0,     0,   250,
  1965.      0,     0,   845,     0,     0,     0,     0,     0,     0,     0,
  1966.    252,   253,   846,     0,     0,     0,     0,     0,   255,   256,
  1967.    257,     0,   513,     0,     0,   847,   515,     0,     0,   259,
  1968.    355,     7,     8,     0,    10,   232,   233,   234,     0,   235,
  1969.     12,   260,     0,     0,     0,     0,     0,     0,     0,     0,
  1970.      0,     0,     0,     0,     0,    15,   236,   237,   238,    16,
  1971.      0,   239,     0,    17,     0,   240,   241,     0,   242,    19,
  1972.    243,   244,   510,     0,   245,   246,   247,   248,   249,    21,
  1973.      0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  1974.    250,     0,     0,   786,     0,     0,     0,     0,     0,     0,
  1975.      0,   252,   253,   787,     0,     0,     0,     0,     0,   255,
  1976.    256,   257,     0,   513,     0,     0,   788,   515,     7,     8,
  1977.      0,    10,   232,   233,   234,     0,   235,    12,     0,     0,
  1978.      0,     0,   260,     0,     0,     0,     0,     0,     0,     0,
  1979.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1980.     17,     0,   240,   241,     0,   242,    19,   243,   244,   510,
  1981.      0,   245,   246,   247,   248,   249,    21,     0,    22,     0,
  1982.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1983.    845,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1984.    846,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1985.    513,     0,     0,   847,   515,     7,     8,     0,    10,   232,
  1986.    233,   234,     0,   235,    12,     0,     0,     0,     0,   260,
  1987.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1988.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1989.    241,     0,   242,    19,   243,   244,   510,     0,   245,   246,
  1990.    247,   248,   249,    21,     0,    22,     0,     0,     0,     0,
  1991.      0,     0,     0,     0,   250,     0,     0,   940,     0,     0,
  1992.      0,     0,     0,     0,     0,   252,   253,   941,     0,     0,
  1993.      0,     0,     0,   255,   256,   257,     0,   513,     0,     0,
  1994.    788,   515,     7,     8,     0,    10,   232,   233,   234,     0,
  1995.    235,    12,     0,     0,     0,     0,   260,     0,     0,     0,
  1996.      0,     0,     0,     0,     0,     0,    15,   236,   237,   238,
  1997.     16,     0,   239,     0,    17,     0,   240,   241,     0,   242,
  1998.     19,   243,   244,     0,     0,   245,   246,   247,   248,   249,
  1999.     21,     0,    22,     0,     0,     0,     0,     0,     0,     0,
  2000.      0,   250,     0,     0,   251,     0,     0,     0,     0,   304,
  2001.      0,     0,   252,   253,   254,     0,     0,     0,     0,     0,
  2002.    255,   256,   257,     0,     0,     0,     0,   258,     0,     7,
  2003.      8,   259,    10,   437,   233,   234,     0,   235,    12,     0,
  2004.      0,     0,     0,   260,     0,     0,     0,     0,     0,     0,
  2005.      0,     0,     0,    15,   236,   237,   238,    16,     0,   239,
  2006.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  2007.      0,     0,   245,   246,   247,   248,   249,    21,     0,    22,
  2008.      0,     0,  1087,     0,     0,     0,     0,     0,   250,     0,
  2009.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  2010.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  2011.      0,     0,     0,     0,   258,     0,     7,     8,   259,    10,
  2012.    232,   233,   234,     0,   235,    12,     0,     0,     0,     0,
  2013.    260,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  2014.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  2015.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  2016.    246,   247,   248,   249,    21,     0,    22,     0,     0,     0,
  2017.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  2018.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  2019.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  2020.      0,   258,     0,     7,     8,   259,    10,   437,   233,   234,
  2021.      0,   235,    12,     0,     0,     0,     0,   260,     0,     0,
  2022.      0,     0,     0,     0,     0,     0,     0,    15,   236,   237,
  2023.    238,    16,     0,   239,     0,    17,     0,   240,   241,     0,
  2024.    242,    19,   243,   244,     0,     0,   245,   246,   247,   248,
  2025.    249,    21,     0,    22,   463,     0,     0,     0,     0,     0,
  2026.      0,     0,   250,     0,     0,   251,     0,     0,     0,     0,
  2027.      0,     0,     0,   252,   253,   254,     0,     0,     0,     0,
  2028.      0,   255,   256,   257,     0,     0,     7,     8,   464,    10,
  2029.    437,   233,   234,     0,   235,    12,     0,     0,     0,     0,
  2030.      0,     0,     0,     0,   260,     0,     0,     0,     0,     0,
  2031.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  2032.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  2033.    246,   247,   248,   249,    21,     0,    22,     0,     0,     0,
  2034.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  2035.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  2036.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  2037.      0,   258,   500,     7,     8,     0,    10,   437,   233,   234,
  2038.      0,   235,    12,     0,     0,     0,     0,   260,     0,     0,
  2039.      0,     0,     0,     0,     0,     0,     0,    15,   236,   237,
  2040.    238,    16,     0,   239,     0,    17,     0,   240,   241,     0,
  2041.    242,    19,   243,   244,     0,     0,   245,   246,   247,   248,
  2042.    249,    21,     0,    22,     0,     0,     0,     0,     0,     0,
  2043.      0,     0,   250,     0,     0,   251,     0,     0,     0,     0,
  2044.      0,     0,     0,   252,   253,   254,     0,     0,     0,     0,
  2045.      0,   255,   256,   257,     0,     0,     0,     0,   258,     0,
  2046.      7,   697,   259,    10,   437,   233,   234,     0,   235,    12,
  2047.      0,     0,     0,     0,   260,     0,     0,     0,     0,     0,
  2048.      0,     0,     0,     0,    15,   236,   237,   238,    16,     0,
  2049.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  2050.    244,     0,     0,   245,   246,   247,   248,   249,    21,     0,
  2051.     22,     0,     0,     0,     0,     0,     0,     0,     0,   250,
  2052.      0,     0,   251,     0,     0,     0,     0,     0,     0,     0,
  2053.    252,   253,   254,     0,     0,     0,     0,     0,   255,   256,
  2054.    257,     0,     0,     0,     0,   258,     0,     7,     8,   259,
  2055.     10,   437,   233,   234,     0,   235,    12,     0,     0,     0,
  2056.      0,   260,     0,     0,     0,     0,     0,     0,     0,     0,
  2057.      0,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  2058.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  2059.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  2060.      0,     0,     0,     0,     0,     0,   250,     0,     0,   890,
  2061.      0,     0,     0,     0,     0,     0,     0,   252,   253,   891,
  2062.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  2063.      0,     0,   258,     0,     7,     8,   259,    10,   437,   233,
  2064.    234,     0,   235,    12,     0,     0,     0,     0,   260,     0,
  2065.      0,     0,     0,     0,     0,     0,     0,     0,    15,   236,
  2066.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  2067.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  2068.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  2069.      0,     0,     0,   250,     0,     0,  1177,     0,     0,     0,
  2070.      0,     0,     0,     0,   252,   253,  1178,     0,     0,     0,
  2071.      0,     0,   255,   256,   257,     0,     0,     0,     0,  1179,
  2072.      0,  1242,     8,   259,    10,   437,   233,   234,     0,   235,
  2073.     12,     0,     0,     0,     0,   260,     0,     0,     0,     0,
  2074.      0,     0,     0,     0,     0,    15,   236,   237,   238,    16,
  2075.      0,   239,     0,    17,     0,   240,   241,     0,   242,    19,
  2076.    243,   244,     0,     0,   245,   246,   247,   248,   249,    21,
  2077.      0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  2078.    250,     0,     0,   251,     0,     0,     0,     0,     0,     0,
  2079.      0,   252,   253,   254,     0,     0,     0,     0,     0,   255,
  2080.    256,   257,     0,     0,     0,     0,   258,     0,     7,     8,
  2081.    259,    10,   437,   233,   234,     0,   235,    12,     0,     0,
  2082.      0,     0,   260,     0,     0,     0,     0,     0,     0,     0,
  2083.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  2084.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  2085.      0,   245,   246,   247,   248,   249,    21,     0,    22,     0,
  2086.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  2087.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  2088.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  2089.      0,     7,     8,   258,    10,   437,   233,   234,     0,   235,
  2090.     12,     0,     0,     0,     0,     0,     0,     0,     0,   260,
  2091.      0,     0,     0,     0,     0,    15,   236,   237,   238,    16,
  2092.      0,   239,     0,    17,     0,   240,   241,     0,   242,    19,
  2093.    243,   244,     0,     0,   245,   246,   247,   248,   249,    21,
  2094.      0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  2095.    250,     0,     0,   890,     0,     0,     0,     0,     0,     0,
  2096.      0,   252,   253,   891,     0,     0,     0,     0,     0,   255,
  2097.    256,   257,     0,     0,     7,     8,   258,    10,   232,   233,
  2098.    234,     0,   235,    12,     0,     0,     0,     0,     0,     0,
  2099.      0,     0,   260,     0,     0,     0,     0,     0,    15,   236,
  2100.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  2101.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  2102.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  2103.      0,     0,     0,   250,     0,     0,  1177,     0,     0,     0,
  2104.      0,     0,     0,     0,   252,   253,  1178,     0,     0,     0,
  2105.      0,     0,   255,   256,   257,     0,     0,     7,     8,  1179,
  2106.     10,   437,   233,   234,     0,   235,    12,     0,     0,     0,
  2107.      0,     0,     0,     0,     0,   260,     0,     0,     0,     0,
  2108.      0,    15,   236,     0,     0,    16,     0,   239,     0,    17,
  2109.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  2110.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  2111.      0,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  2112.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  2113.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  2114.      7,     8,   441,    10,   437,   233,   234,     0,   235,    12,
  2115.      0,     0,     0,     0,     0,     0,     0,     0,   260,     0,
  2116.      0,     0,     0,     0,    15,   236,   237,   238,    16,     0,
  2117.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  2118.    244,     0,     0,   245,   246,   247,   248,   249,    21,     0,
  2119.     22,     0,     7,     8,   158,   159,   160,     0,     0,     0,
  2120.      0,    12,     0,     0,     0,     0,     0,     7,     8,   151,
  2121.     10,   152,     0,     0,     0,     0,    12,     0,   255,   256,
  2122.    257,     0,     0,     0,    17,   258,     0,     0,     0,   259,
  2123.     19,    15,     0,   510,     0,    16,     0,     0,     0,    17,
  2124.     21,   260,    22,     0,     0,    19,     0,     0,     0,     0,
  2125.      0,     0,     0,     0,   603,    21,     0,    22,     0,     0,
  2126.    153,     0,     0,     0,   604,     0,     0,     0,     0,    24,
  2127.      0,     0,    26,     0,   513,     0,     0,   605,   515,    25,
  2128.      0,     7,     8,    92,    10,    11,     0,    26,   618,     0,
  2129.     12,     0,    27,     0,     0,     0,     0,     0,   655,     8,
  2130.    151,    10,   152,     0,     0,    15,     0,    12,     0,    16,
  2131.      0,     0,     0,    17,     0,     0,     0,     0,     0,    19,
  2132.      0,     0,    15,     0,     0,     0,    16,     0,     0,    21,
  2133.     17,    22,     0,     0,     0,     0,    19,     0,     0,     0,
  2134.      0,     0,     0,    24,     0,     0,    21,     0,    22,     0,
  2135.      0,     0,     0,    25,     0,   658,     0,     0,     0,     0,
  2136.     24,    26,     0,     0,     0,     0,    27,     0,     0,     0,
  2137.     25,     7,     8,   151,    10,   152,     0,     0,    26,     0,
  2138.     12,     0,     0,    27,     0,     0,     0,     0,     7,     8,
  2139.    151,    10,   152,     0,     0,    15,     0,    12,     0,    16,
  2140.      0,     0,     0,    17,     0,     0,     0,     0,     0,    19,
  2141.      0,     0,    15,     0,     0,     0,    16,     0,     0,    21,
  2142.     17,    22,     0,     0,  1099,     0,    19,     0,     0,     0,
  2143.      0,     0,     8,    24,    10,   184,    21,     0,    22,     0,
  2144.     12,     0,     0,    25,     0,     0,     0,     0,     0,     0,
  2145.     24,    26,     0,     0,     0,    15,    27,     0,     0,    16,
  2146.     25,     0,     0,    17,     0,     0,     0,     0,    26,     0,
  2147.      0,     0,   510,    27,     0,     0,     0,     0,     0,    21,
  2148.      0,    93,     0,     0,     0,     0,     0,     0,     0,     0,
  2149.    466,   467,   468,   511,   469,   470,   471,   472,   473,   474,
  2150.    475,   476,   477,   512,   479,   480,   481,   482,   483,   484,
  2151.    485,   486,   487,   513,     0,     0,   514,   515,   466,   467,
  2152.    468,     0,   469,   470,   471,   472,   473,   474,   475,   476,
  2153.    477,   478,   479,   480,   481,   482,   483,   484,   485,   486,
  2154.    487,   543,   682,   466,   467,   468,     0,   469,   470,   471,
  2155.    472,   473,   474,   475,   476,   477,   478,   479,   480,   481,
  2156.    482,   483,   484,   485,   486,   487,  1040,   466,   467,   468,
  2157.      0,   469,   470,   471,   472,   473,   474,   475,   476,   477,
  2158.    478,   479,   480,   481,   482,   483,   484,   485,   486,   487,
  2159.    466,   467,   468,  1204,   469,   470,   471,   472,   473,   474,
  2160.    475,   476,   477,   478,   479,   480,   481,   482,   483,   484,
  2161.    485,   486,   487,   466,   467,   468,  1253,   469,   470,   471,
  2162.    472,   473,   474,   475,   476,   477,   478,   479,   480,   481,
  2163.    482,   483,   484,   485,   486,   487,   466,   467,   468,     0,
  2164.    469,   470,   471,   472,   473,   474,   475,   476,   477,   478,
  2165.    479,   480,   481,   482,   483,   484,   485,   486,   487,   468,
  2166.      0,   469,   470,   471,   472,   473,   474,   475,   476,   477,
  2167.    478,   479,   480,   481,   482,   483,   484,   485,   486,   487,
  2168.    470,   471,   472,   473,   474,   475,   476,   477,   478,   479,
  2169.    480,   481,   482,   483,   484,   485,   486,   487,   472,   473,
  2170.    474,   475,   476,   477,   478,   479,   480,   481,   482,   483,
  2171.    484,   485,   486,   487,   473,   474,   475,   476,   477,   478,
  2172.    479,   480,   481,   482,   483,   484,   485,   486,   487
  2173. };
  2174.  
  2175. static const short yycheck[] = {     4,
  2176.      4,   188,   265,   136,   416,   284,   117,    12,   108,   109,
  2177.      4,   339,    12,   299,     4,    20,    20,   389,   388,    24,
  2178.     25,    52,    27,   284,   131,   347,   749,    71,    33,    33,
  2179.     20,    20,   154,   161,   162,   130,   131,   134,   129,    44,
  2180.    299,    46,   816,    33,   136,   988,  1155,    52,  1047,   181,
  2181.   1183,   299,    52,    34,    59,   988,     9,     1,     9,     4,
  2182.      9,    48,   995,    55,    88,    70,    71,   278,  1216,    70,
  2183.     34,   154,    77,    77,    10,     3,     4,    44,  1226,   407,
  2184.      7,    10,    87,    55,    55,    56,    87,    77,    77,    36,
  2185.     95,    96,     4,    98,     3,     4,   101,    98,    70,   104,
  2186.    105,    36,   185,   108,   109,    51,     4,    60,    53,   368,
  2187.     54,   103,     4,  1246,   119,   119,   121,   122,    44,    55,
  2188.    368,    62,   103,    69,    60,    53,    55,    54,    95,   119,
  2189.     75,    60,   136,    60,   139,   140,   141,    12,  1247,   103,
  2190.     56,    53,     4,   515,    53,  1144,  1279,    75,  1296,   102,
  2191.    337,   102,   363,   102,   121,    53,   103,    93,    76,    51,
  2192.    165,    53,    88,     4,    93,    92,   102,   154,   103,   301,
  2193.     88,    89,     4,    65,   161,   162,   102,    52,   183,   183,
  2194.    954,    99,  1163,    75,   125,    27,    44,   103,   193,   286,
  2195.    913,    53,    44,   183,   188,    60,    51,    89,   185,    56,
  2196.     58,   142,     0,    44,    69,    60,    58,   299,    55,    54,
  2197.     51,   398,    53,    75,    69,    60,   157,    44,   136,  1328,
  2198.   1329,    53,    56,    70,    65,   230,   231,   271,  1209,   440,
  2199.     88,    89,   107,  1166,    75,     0,    88,   344,   345,     6,
  2200.      7,    55,   229,    75,    85,    12,   103,    88,    89,   344,
  2201.    345,   346,   343,   532,     4,   388,     3,     4,    88,    89,
  2202.     60,    88,    89,    66,   392,   393,   271,   109,    35,   103,
  2203.    275,   393,   277,   278,   279,   102,   368,    44,   378,   379,
  2204.    285,     4,    85,   284,     7,    56,    56,    44,   102,   659,
  2205.   1223,   278,   420,    56,   299,   299,   388,    44,    51,   141,
  2206.    103,    23,   102,    53,    51,    60,    53,  1250,   313,    44,
  2207.    985,   316,   987,    56,  1257,   320,    69,  1250,   285,   324,
  2208.    324,    88,   650,    55,  1257,    75,    97,  1050,    51,    92,
  2209.     53,    88,    89,   103,   324,   324,    55,    10,    60,    88,
  2210.    258,    88,    65,   337,    45,   102,   149,   102,  1281,   102,
  2211.     56,    56,    75,    88,     4,   360,   361,   362,   363,   364,
  2212.    103,    56,   457,   368,   368,    60,    89,     3,  1311,   374,
  2213.    102,   376,    56,   378,   379,   250,   363,   136,  1311,   566,
  2214.    385,   299,    55,   102,   388,    58,   391,    60,   329,   394,
  2215.    384,     4,   195,   360,     7,   362,   363,   103,   103,     3,
  2216.      4,    51,   407,    53,   398,   392,   393,    55,   413,   414,
  2217.      1,   416,   416,   785,   784,    65,   421,    55,    56,   103,
  2218.     93,    54,   514,    69,    44,    75,   416,    60,   258,   521,
  2219.     44,    44,    23,   420,    25,    26,    88,    41,    51,    44,
  2220.     53,    32,   447,   448,   449,   450,   413,    55,    56,    53,
  2221.    368,    44,    65,   497,   102,    44,   643,    27,    44,    92,
  2222.     54,   402,    75,    54,    55,    56,    60,    58,    88,    60,
  2223.    388,    75,    85,    55,    88,    88,    89,    44,   419,    83,
  2224.    283,    44,    54,    88,    89,   592,     3,     4,    70,   676,
  2225.     56,   819,   497,    51,   499,    88,    89,   592,    92,    88,
  2226.     89,    92,    88,   421,   307,    44,   511,   512,     4,   514,
  2227.    514,     7,   640,   605,    56,   794,   521,   521,   804,   611,
  2228.    438,    88,   553,   441,    41,    88,   659,   790,   446,   447,
  2229.    448,   449,   450,   794,   862,    60,    53,   379,   108,   109,
  2230.     44,    54,   460,   373,    69,   804,   464,   552,   553,    88,
  2231.     92,   923,    44,   553,    58,    51,   804,    53,    75,     3,
  2232.      4,    44,     6,   103,   385,   552,    83,   659,    54,    65,
  2233.    681,   141,   566,   394,    55,    25,    26,    58,   496,    75,
  2234.    102,     3,     4,   342,    88,   552,     3,     4,   463,    70,
  2235.     55,    56,     3,     4,     3,     4,    88,    41,   603,   604,
  2236.    605,   605,   102,    51,    54,    88,   611,   611,   438,    53,
  2237.     60,   441,    60,   443,   444,   102,   446,    51,  1030,    41,
  2238.    102,    69,   627,   628,    41,   630,    60,    25,    26,   388,
  2239.    433,    53,    41,    37,   464,    69,    53,     9,   468,    83,
  2240.     51,   102,    53,    54,    53,   650,    54,    51,    56,   643,
  2241.    972,   784,    60,   640,   659,   659,    54,   103,    75,     6,
  2242.      7,    83,    60,    92,   494,    12,    83,     4,     3,     6,
  2243.    500,    97,    27,   678,    83,    12,    60,   436,   553,   521,
  2244.     25,    26,   676,   688,   689,   690,   873,   874,    35,   876,
  2245.     27,   678,   784,   105,    31,    88,   788,    89,    35,   136,
  2246.      3,     4,     5,     6,     7,   105,   509,   918,     5,     6,
  2247.      7,    51,   804,   588,    51,    12,    53,    78,    79,   660,
  2248.     60,   524,    55,    56,   665,   666,    55,    56,   669,    69,
  2249.    919,   920,    35,   922,   493,    89,   495,   496,    35,   839,
  2250.    840,   659,    60,   748,    88,   845,   846,    88,    51,    88,
  2251.     53,    54,    88,   108,   109,   847,  1078,  1079,    69,    54,
  2252.     69,    56,   521,   605,   769,    60,   771,    69,   527,   611,
  2253.   1092,    69,    54,   778,    56,     9,   987,   782,    60,   784,
  2254.    784,   786,   787,   788,   788,   102,   141,   103,    23,   794,
  2255.   1112,  1113,    55,   794,   102,    98,    99,   100,   102,   804,
  2256.    804,   806,   102,     3,     4,     5,     6,     7,   378,   379,
  2257.      3,     3,     4,   103,   688,   689,   690,   659,    54,    54,
  2258.     58,    56,   581,    58,     7,    60,    55,    56,    55,    56,
  2259.    748,   102,   837,   838,   839,   840,   102,  1159,   102,   844,
  2260.    845,   846,   847,   847,    58,    37,    38,  1328,  1329,    41,
  2261.    105,   693,   611,    53,   102,     4,   105,   862,    88,    51,
  2262.    778,    53,    32,    12,   235,   236,   784,   872,  1290,  1291,
  2263.    875,    20,   877,   877,   879,    24,    25,   105,    27,   873,
  2264.    874,   105,   876,   102,    33,   102,   804,   877,    75,    76,
  2265.     77,    78,    79,     4,   102,    44,     7,    46,    51,    25,
  2266.     26,     6,   105,    52,    88,   342,    32,    44,    58,    55,
  2267.     59,     5,     6,     7,   919,   920,    58,   922,    12,    58,
  2268.     56,    56,    71,    56,    56,    56,   756,   868,    77,    55,
  2269.     56,    55,    58,    44,   693,   940,   941,   102,  1125,  1126,
  2270.     51,    35,    53,   861,    58,   787,    95,    96,   953,   953,
  2271.    102,   388,   101,    55,    65,   830,   105,   102,   788,   108,
  2272.    109,   879,   102,   953,    75,     3,     4,   105,    88,     7,
  2273.    119,    60,   121,   122,    85,    55,    55,    88,    89,    60,
  2274.    985,   986,   987,    58,    88,  1080,   102,   102,    70,  1176,
  2275.    139,   140,   141,   752,   999,  1000,   102,  1002,   840,   436,
  2276.    987,   102,   102,    41,   846,   847,   765,   102,   767,  1220,
  2277.    102,    70,    70,    51,    70,    53,   165,   847,   985,   102,
  2278.    987,    60,    55,   378,   379,  1030,  1030,    65,    60,   102,
  2279.    905,   861,    60,   102,   183,   605,   102,    75,   105,   842,
  2280.   1030,   611,   103,    89,   193,    83,    83,   102,   105,   891,
  2281.     88,    44,   102,   102,     3,     4,   493,   105,   495,   496,
  2282.   1171,   105,   821,   103,   823,    34,   825,   102,     4,     5,
  2283.      6,     7,  1331,   102,    10,   102,    12,  1177,  1178,   102,
  2284.    102,   230,   231,  1331,  1025,  1026,   961,    58,  1183,   659,
  2285.    527,    27,    41,  1280,    58,    31,   102,  1102,    88,    35,
  2286.     88,    88,    51,   978,    53,     7,    88,    56,    10,    88,
  2287.    105,   103,     6,   102,   105,    51,    65,    53,   102,   102,
  2288.     60,   102,   271,   103,   102,   102,    75,   102,   277,   278,
  2289.    279,  1125,  1126,    88,    83,   284,   285,   102,    60,    88,
  2290.     56,   944,    44,    56,   581,     7,    54,   977,    14,    56,
  2291.    299,  1246,    58,    55,   102,   102,    58,    93,    60,  1034,
  2292.   1101,   341,    60,    60,   313,    44,   105,   316,    70,    88,
  2293.     56,   320,  1177,  1178,  1179,   324,    56,    88,    88,  1173,
  2294.   1121,    58,  1176,    58,  1279,   102,    88,    89,   102,    15,
  2295.    339,    93,    56,   105,     4,     5,    56,  1072,   102,   102,
  2296.    102,    56,   103,   102,    56,    56,  1036,  1037,  1038,  1039,
  2297.    102,   360,   361,   362,   363,   364,  1221,    58,  1048,   368,
  2298.     58,    31,     9,    56,   102,   374,    36,   376,   102,   378,
  2299.    379,    56,    56,  1220,    88,    55,   385,  1332,    56,  1331,
  2300.     88,    51,   391,    53,   102,   394,     4,     5,    91,   102,
  2301.    605,  1081,   102,   102,  1221,    58,   611,   102,   407,  1089,
  2302.   1102,  1179,     9,    56,   413,   414,     1,   416,   102,   839,
  2303.    840,   102,   421,    31,    56,   845,   846,   847,    36,     9,
  2304.      0,     0,   118,   326,     2,     1,  1280,   119,    23,   804,
  2305.     25,    26,   119,    51,   129,    53,   819,    32,   447,   448,
  2306.    449,   450,    99,   460,   659,  1144,  1154,    23,  1185,    25,
  2307.     26,  1252,   509,  1081,   986,   752,    32,   684,  1197,    54,
  2308.     55,    56,  1197,    58,   799,    60,  1331,  1331,   765,   588,
  2309.    767,    33,    33,  1163,   862,   650,  1178,  1179,    54,    55,
  2310.     56,   809,    58,  1102,    60,   877,   953,    12,   497,  1179,
  2311.    499,     4,   414,   497,  1184,  1185,   875,    92,     4,     5,
  2312.      6,     7,   511,   512,    10,   514,    12,    20,   540,   797,
  2313.   1270,   833,   521,  1304,  1306,    -1,    92,    44,   879,  1209,
  2314.     33,    27,   368,   532,   821,    31,   823,    -1,   825,    35,
  2315.     -1,     3,     4,    46,    71,    72,    73,    74,    75,    76,
  2316.     77,    78,    79,   552,   553,    51,    59,    53,    -1,    -1,
  2317.     -1,    -1,    -1,  1331,    81,    82,    -1,    -1,    71,    86,
  2318.     87,    88,    89,    76,    77,    -1,    -1,    -1,    -1,    41,
  2319.     -1,    -1,    44,    -1,    -1,    88,    89,    -1,    -1,    51,
  2320.   1199,    53,   622,    96,  1274,    -1,    99,    -1,    60,    -1,
  2321.     -1,    -1,    -1,    65,   603,   604,   605,    -1,    -1,    -1,
  2322.   1290,  1291,   611,    75,    -1,    -1,   119,    -1,    -1,   122,
  2323.     -1,    83,    -1,  1303,    -1,    -1,    88,    -1,   627,   628,
  2324.     -1,   630,    -1,   136,   839,   840,    -1,    -1,    -1,    -1,
  2325.    845,   846,   847,    -1,    -1,    -1,     4,     5,     6,     7,
  2326.     -1,   650,    -1,    -1,    12,    -1,  1265,    -1,     3,     4,
  2327.    659,    -1,     7,   139,   140,   141,    71,    -1,    -1,    27,
  2328.     -1,    76,    -1,    31,    -1,    -1,    -1,    35,    -1,   678,
  2329.    183,    -1,  1102,    88,    89,    -1,    -1,    -1,    -1,   688,
  2330.    689,   690,    -1,    51,    99,    53,    41,    -1,    -1,    44,
  2331.     -1,    -1,    -1,    -1,    -1,    -1,    51,    -1,    53,    -1,
  2332.     -1,    69,    -1,    -1,    -1,    -1,   251,    24,    25,   254,
  2333.     65,   751,   257,    -1,    -1,    -1,    -1,   230,   263,    -1,
  2334.     75,   136,    -1,    -1,    -1,    -1,    -1,   272,    83,    -1,
  2335.     85,    -1,    -1,    88,    89,    -1,    -1,    -1,    -1,   748,
  2336.     -1,    -1,    -1,    -1,    -1,   258,    -1,  1177,  1178,  1179,
  2337.     -1,    -1,    -1,     4,    71,     6,     7,    -1,   271,    76,
  2338.    769,    12,   771,    -1,    -1,    -1,   279,    -1,   808,   778,
  2339.     -1,    88,    89,   782,    -1,   784,    27,   786,   787,   788,
  2340.     31,    -1,    99,    -1,    35,   794,   299,    -1,    -1,    -1,
  2341.     -1,   108,   109,    -1,    -1,   804,    -1,   806,    -1,    -1,
  2342.     51,    -1,    53,    -1,    -1,    -1,    -1,    -1,   577,    -1,
  2343.    819,   324,   852,    -1,    -1,    -1,    -1,    -1,    -1,   136,
  2344.     -1,    -1,   139,   140,    -1,    -1,    -1,    -1,   837,   838,
  2345.    839,   840,    -1,    -1,    -1,   844,   845,   846,   847,    -1,
  2346.     -1,    -1,    -1,   258,    -1,    -1,    -1,    -1,   361,    -1,
  2347.     -1,   364,    -1,   862,    -1,   368,   271,    -1,    -1,    -1,
  2348.     -1,    -1,   631,   872,   904,   905,   875,    -1,   877,    -1,
  2349.    879,    -1,    -1,   642,    -1,   388,    73,    74,    75,    76,
  2350.     77,    78,    79,    -1,   299,    -1,    -1,  1102,   374,    -1,
  2351.    376,    69,   378,   379,    -1,    -1,    -1,    -1,    -1,    -1,
  2352.    445,   414,  1199,   416,    -1,   391,    -1,    -1,   421,    -1,
  2353.    919,   920,    -1,   922,    -1,    -1,    -1,     3,     4,    -1,
  2354.     -1,   961,    -1,    -1,    -1,   438,    -1,   413,   441,    -1,
  2355.     -1,   940,   941,   446,   447,   448,   449,   450,   116,    -1,
  2356.     -1,   258,    -1,    -1,   953,    -1,    -1,   460,    -1,    -1,
  2357.     -1,   464,    -1,   368,   271,    41,    -1,   135,    44,    -1,
  2358.     -1,    -1,  1177,  1178,  1179,    51,    -1,    53,  1265,    -1,
  2359.     -1,    -1,   150,   388,    -1,    -1,   985,   986,   987,    65,
  2360.     -1,    -1,   299,   496,   497,    -1,    -1,    -1,    -1,    75,
  2361.    999,  1000,    -1,  1002,    -1,  1035,    -1,    83,    -1,    85,
  2362.   1040,   514,    88,    89,    -1,    -1,   421,    -1,   521,    -1,
  2363.     -1,    -1,    -1,    -1,     1,    -1,     3,     4,     5,     6,
  2364.      7,  1030,    -1,   438,    -1,    12,   441,    -1,    -1,    -1,
  2365.     -1,   446,   447,   448,   449,   450,    -1,    -1,    25,    26,
  2366.     27,    -1,   811,    -1,    31,   460,    -1,    -1,    35,   464,
  2367.     -1,   368,    39,    -1,    41,    -1,    -1,    -1,    45,    -1,
  2368.     -1,   378,   379,    -1,    51,    -1,    53,    -1,    -1,    56,
  2369.     -1,   388,    -1,    -1,  1114,  1115,    -1,    -1,    65,    -1,
  2370.     -1,   496,   497,    -1,    -1,    -1,    -1,    -1,    75,    -1,
  2371.     -1,   860,   605,  1102,    -1,    -1,    83,    -1,   611,   514,
  2372.    869,    88,    -1,  1143,   421,    -1,   521,    94,    95,   878,
  2373.     -1,    -1,    -1,     3,     4,    -1,    -1,   603,   604,   605,
  2374.     -1,   438,    -1,    -1,   441,   611,    -1,    -1,    -1,   446,
  2375.    447,   448,   449,   450,    -1,    -1,    -1,    -1,    10,    -1,
  2376.     -1,   627,   628,   460,   630,    -1,   659,   464,  1188,    -1,
  2377.     -1,    41,    -1,    25,    26,  1195,  1196,    -1,    -1,    -1,
  2378.     32,    51,    -1,    53,  1204,    -1,    56,    -1,  1177,  1178,
  2379.   1179,    -1,    44,   659,    -1,    65,    -1,    -1,    -1,   496,
  2380.    497,    -1,    -1,    55,    56,    75,    58,    -1,    60,     4,
  2381.    605,    -1,     7,    83,   511,   512,   611,   514,    88,    -1,
  2382.     -1,    -1,    -1,   381,   521,    -1,    -1,    -1,    -1,   387,
  2383.     -1,    -1,  1221,    -1,    -1,   760,    88,    89,    -1,    -1,
  2384.     92,    93,    -1,  1263,  1264,    -1,    -1,    -1,    -1,    44,
  2385.    102,    -1,    -1,    -1,    -1,   748,    51,    -1,    53,   752,
  2386.     -1,   786,   787,    -1,   659,  1014,  1015,    -1,    -1,    -1,
  2387.     65,    -1,    -1,   431,   432,    -1,   434,    -1,  1027,  1028,
  2388.     75,    -1,    -1,    -1,    -1,   778,    -1,    -1,    -1,    -1,
  2389.     85,   784,    -1,    88,    89,   788,     4,     5,     6,     7,
  2390.     -1,    -1,    -1,    -1,    12,    -1,   603,   604,   605,    -1,
  2391.   1330,   804,    -1,   806,   611,    -1,    -1,    -1,    -1,    27,
  2392.    845,   846,    -1,    31,    -1,    -1,    -1,    35,    -1,    -1,
  2393.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   832,
  2394.     -1,    -1,  1331,    51,    -1,    53,    -1,    -1,   277,   278,
  2395.    279,    -1,    -1,   748,   847,    -1,    -1,    -1,    -1,   517,
  2396.    518,    -1,   659,    -1,   522,   890,   891,    -1,   861,    -1,
  2397.     -1,   837,   838,   839,   840,  1124,     3,     4,   844,   845,
  2398.    846,   847,    -1,   778,   877,    -1,   879,    -1,    -1,   784,
  2399.     -1,    -1,    -1,   788,    -1,    -1,    -1,    -1,    -1,    -1,
  2400.    925,    -1,    -1,    -1,    -1,    -1,   872,    -1,    -1,   804,
  2401.     -1,    -1,    -1,    -1,    41,   940,   941,    -1,    -1,    -1,
  2402.     -1,    -1,    -1,    -1,    51,    -1,    53,    -1,    -1,    -1,
  2403.     -1,   360,    -1,   362,   363,   364,    -1,    -1,    65,   597,
  2404.    598,  1190,  1191,    -1,  1193,  1194,    -1,    -1,    75,   607,
  2405.     -1,   748,   847,    -1,    -1,   613,    83,    -1,    -1,    -1,
  2406.    953,    88,    -1,    -1,    -1,    -1,   861,    -1,    -1,    -1,
  2407.     -1,     1,    -1,     3,     4,     5,     6,     7,    -1,    -1,
  2408.     -1,   778,    12,    -1,   879,    -1,    -1,   784,    -1,   786,
  2409.    787,   788,    -1,   986,    -1,   988,    -1,    27,    -1,   657,
  2410.     -1,    31,   995,    -1,    -1,    35,    36,   804,    -1,     3,
  2411.      4,    41,    -1,     7,    -1,    -1,    -1,    -1,     3,     4,
  2412.     -1,    51,     7,    53,    -1,    -1,    56,    -1,    -1,    -1,
  2413.     60,    -1,    -1,   999,  1000,    65,  1002,  1030,    -1,    -1,
  2414.     -1,    -1,   839,   840,    76,    75,    -1,    41,   845,   846,
  2415.    847,  1300,    -1,    83,    -1,    -1,    41,    51,    88,    53,
  2416.     -1,    -1,    -1,    -1,   861,    -1,    51,    99,    53,    -1,
  2417.     -1,    65,    -1,   103,    -1,    -1,    -1,    -1,     3,     4,
  2418.     65,    75,   879,   512,    -1,   514,    -1,    -1,  1081,    83,
  2419.     75,    -1,   521,    -1,    88,    -1,   754,   755,    83,   757,
  2420.     -1,    -1,    -1,    88,   136,    -1,    -1,     1,    -1,     3,
  2421.      4,     5,     6,     7,    -1,    -1,    41,    -1,    12,    -1,
  2422.     -1,    -1,    -1,   552,    -1,   783,    51,    -1,    53,    -1,
  2423.     -1,    -1,    -1,    27,    -1,    60,  1102,    31,    -1,    -1,
  2424.     65,    35,    36,   940,   941,    -1,    -1,    41,    -1,    -1,
  2425.     75,    -1,  1177,  1178,    -1,    -1,    -1,    51,    83,    53,
  2426.     -1,    -1,  1155,    88,    -1,    -1,    60,    -1,    -1,    -1,
  2427.   1163,    65,    -1,  1166,    -1,   604,   605,    -1,    -1,    -1,
  2428.     -1,    75,   611,    -1,    -1,   843,  1179,    -1,    -1,    83,
  2429.     -1,  1184,  1185,    -1,    88,    -1,    -1,   855,   856,   857,
  2430.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   103,
  2431.     -1,  1177,  1178,  1179,    -1,    -1,  1209,    -1,    -1,    -1,
  2432.     -1,    -1,    -1,  1216,    -1,    -1,    -1,   259,    -1,    -1,
  2433.   1223,    -1,     4,  1226,     6,     7,    -1,    -1,    -1,    -1,
  2434.     12,    -1,    -1,    -1,     3,     4,     5,     6,     7,   678,
  2435.     -1,    -1,    -1,    12,  1247,    27,    -1,  1250,    -1,    31,
  2436.     -1,    -1,    -1,    35,  1257,    -1,    -1,     1,  1163,     3,
  2437.      4,     5,     6,     7,    -1,   933,    35,    -1,    12,    51,
  2438.     -1,    53,    41,    -1,  1179,    44,    -1,    -1,  1281,  1184,
  2439.   1185,    -1,    51,    27,    53,    -1,    -1,    31,    -1,    -1,
  2440.     -1,    35,    36,  1296,    -1,    -1,    65,    41,    -1,   341,
  2441.    342,    -1,    -1,    -1,  1209,    -1,    75,    51,  1311,    53,
  2442.     -1,    -1,    56,    -1,    83,    -1,    60,    -1,    -1,    88,
  2443.     -1,    65,    -1,    -1,    -1,  1328,  1329,    -1,  1331,    -1,
  2444.    769,    75,   771,    -1,    -1,    -1,    -1,    -1,    -1,    83,
  2445.     -1,    -1,    -1,   782,    88,    -1,   388,    -1,   787,   788,
  2446.   1018,    -1,    -1,    -1,    -1,    -1,  1163,    -1,    -1,   103,
  2447.     -1,    -1,    -1,    -1,    -1,     4,    -1,     6,     7,   411,
  2448.   1177,  1178,  1179,    12,    -1,    -1,    -1,  1184,  1185,    -1,
  2449.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    -1,
  2450.     -1,    -1,    31,    -1,   436,  1063,    35,    -1,   837,   838,
  2451.     -1,   840,  1209,    -1,    -1,   844,    -1,   846,   847,     3,
  2452.      4,    -1,    51,     7,    53,    54,    -1,    -1,   460,    -1,
  2453.     -1,   463,    -1,    -1,   466,   467,  1331,   469,   470,   471,
  2454.    472,   473,   474,   475,   476,   477,   478,   479,   480,   481,
  2455.    482,   483,   484,   485,   486,   487,    -1,    41,    -1,    88,
  2456.     44,   493,    -1,   495,   496,    -1,    -1,    51,    -1,    53,
  2457.      3,     4,     5,     6,     7,    -1,    -1,    10,    -1,    12,
  2458.     -1,    65,     4,    -1,     6,     7,    -1,    -1,    -1,   521,
  2459.     12,    75,    -1,    -1,    27,   527,     4,    -1,    31,    83,
  2460.     -1,    85,    35,    -1,    88,    89,    -1,    -1,    41,    -1,
  2461.    542,   543,   941,    35,    -1,    -1,    24,    25,    51,    27,
  2462.     53,    -1,    44,    -1,    -1,    33,    -1,    -1,    -1,    51,
  2463.     -1,    53,    65,    -1,  1331,    -1,    44,    -1,    46,    -1,
  2464.     -1,    -1,    75,    65,    -1,    -1,    -1,    -1,    -1,   581,
  2465.     83,    -1,    -1,    75,    -1,    88,   588,    -1,    66,    -1,
  2466.     93,    -1,    -1,    85,    -1,    -1,    88,    89,    -1,    -1,
  2467.    999,  1000,     1,  1002,     3,     4,     5,     6,     7,   611,
  2468.     -1,    -1,    -1,    12,    -1,    -1,    -1,    95,    -1,    -1,
  2469.    622,    -1,    -1,   101,    -1,   103,    -1,   105,    27,    -1,
  2470.    108,   109,    31,    -1,    -1,    -1,    35,    -1,    -1,    -1,
  2471.     -1,   119,    41,   121,   122,    -1,    45,    -1,    -1,    -1,
  2472.     -1,    -1,    51,    -1,    53,    -1,   658,    56,    -1,    -1,
  2473.     -1,   139,   140,   141,    -1,    -1,    65,    -1,    -1,    -1,
  2474.     -1,   149,    -1,    -1,    -1,    -1,    75,    -1,    -1,    -1,
  2475.     -1,    -1,    -1,    -1,    83,    -1,    -1,   165,    -1,    88,
  2476.     -1,   693,    -1,    -1,    -1,    94,     1,    -1,     3,     4,
  2477.     -1,     6,     7,     8,     9,   183,    11,    12,    -1,    -1,
  2478.     -1,    -1,   714,    -1,    -1,   193,    -1,    -1,    -1,    -1,
  2479.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2480.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2481.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,   751,
  2482.    752,    -1,    -1,    -1,    -1,    60,    -1,    62,    -1,    -1,
  2483.     65,    -1,    -1,   765,    -1,   767,    -1,    -1,    73,    74,
  2484.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2485.     -1,    -1,    -1,    88,    -1,    -1,    -1,    92,    -1,    -1,
  2486.     -1,    -1,    -1,    -1,   796,    -1,    -1,   275,    -1,   104,
  2487.     -1,    -1,    -1,    -1,    -1,   283,   808,   285,    -1,     3,
  2488.      4,    -1,     6,     7,     8,     9,    -1,    11,    12,   821,
  2489.     -1,   823,    -1,   825,    -1,    -1,    -1,    -1,    -1,    -1,
  2490.     -1,    -1,    -1,    27,    28,   313,    -1,    31,   316,    33,
  2491.     -1,    35,   320,    37,    38,    -1,    40,    41,    42,    43,
  2492.    852,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2493.     -1,    -1,    -1,    -1,   866,   867,    -1,    -1,    62,    -1,
  2494.     -1,    65,    -1,    -1,    -1,    -1,    -1,     3,     4,    73,
  2495.     74,    75,   360,   361,   362,   363,    -1,    81,    82,    83,
  2496.    368,    -1,    -1,    -1,    88,    -1,   374,    -1,   376,    -1,
  2497.    378,   379,   904,   905,    -1,    -1,   908,   385,    -1,    -1,
  2498.    104,    -1,    -1,   391,    -1,    41,   394,    -1,     1,    -1,
  2499.      3,     4,     5,     6,     7,    51,    -1,    53,    -1,    12,
  2500.     -1,     3,     4,    -1,    60,   413,   414,    -1,   416,    65,
  2501.     -1,    -1,    -1,    -1,    27,    -1,    -1,    -1,    31,    75,
  2502.     -1,    -1,    35,    36,    -1,    -1,    -1,    83,    41,   961,
  2503.     -1,    -1,    88,    -1,    -1,    -1,    -1,     4,    51,    41,
  2504.     53,   973,    -1,    -1,     3,     4,    -1,    60,     7,    51,
  2505.     -1,    53,    65,    -1,    -1,    -1,    -1,    24,    25,    -1,
  2506.     27,    -1,    75,    65,    -1,    -1,    33,    -1,    -1,    -1,
  2507.     83,    -1,    -1,    75,    -1,    88,    -1,    44,    -1,    46,
  2508.     -1,    83,    41,    -1,    -1,    44,    88,    -1,    -1,  1021,
  2509.    103,    -1,    51,    -1,    53,     3,     4,     5,     6,     7,
  2510.     -1,   509,    10,  1035,    12,    -1,    65,    -1,  1040,    -1,
  2511.   1042,    -1,    -1,   521,    -1,    -1,    75,    -1,    -1,    27,
  2512.     -1,    -1,    -1,    31,    83,    -1,    85,    35,    95,    88,
  2513.     89,    -1,    -1,    41,   101,    -1,    44,    -1,   105,    -1,
  2514.     -1,   108,   109,    51,   552,    53,    -1,    -1,    -1,    -1,
  2515.     -1,    -1,   119,    -1,   121,   122,    -1,    65,    -1,    -1,
  2516.     -1,     4,    -1,     6,     7,    -1,    -1,    75,    -1,    12,
  2517.   1102,    -1,   139,   140,   141,    83,    -1,    85,    -1,    -1,
  2518.     88,    89,  1114,  1115,    27,    93,    -1,    -1,    31,    -1,
  2519.   1122,  1123,    35,    -1,    -1,   603,   604,   605,   165,    -1,
  2520.     -1,    -1,    -1,   611,    -1,    -1,    -1,    -1,    51,    -1,
  2521.     53,  1143,    -1,    -1,    -1,    -1,   183,    -1,    -1,   627,
  2522.    628,    -1,   630,    -1,    -1,    -1,   193,    -1,    -1,    -1,
  2523.     -1,    -1,  1164,    68,    69,    70,    71,    72,    73,    74,
  2524.     75,    76,    77,    78,    79,    88,    -1,     1,    -1,     3,
  2525.      4,   659,     6,     7,     8,     9,  1188,    11,    12,    -1,
  2526.     -1,    -1,    -1,  1195,  1196,    -1,    -1,  1199,    -1,    -1,
  2527.     -1,    -1,  1204,    27,    28,    29,    30,    31,    -1,    33,
  2528.     -1,    35,    -1,    37,    38,   693,    40,    41,    42,    43,
  2529.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2530.     54,    -1,    -1,    -1,     3,     4,    -1,    -1,    62,    -1,
  2531.     -1,    65,    -1,    -1,    -1,    -1,    -1,   284,   285,    73,
  2532.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2533.     -1,  1263,  1264,  1265,    88,    89,    -1,    -1,    92,    -1,
  2534.     -1,    -1,    41,    -1,    -1,    -1,   313,    -1,    -1,   316,
  2535.    104,    -1,    51,   320,    53,    -1,    -1,    -1,    -1,    -1,
  2536.     27,    -1,    -1,    -1,    -1,    -1,    65,    -1,    -1,    -1,
  2537.     -1,    -1,   339,    -1,    -1,    -1,    75,    44,   786,   787,
  2538.     -1,    -1,    -1,    -1,    83,    -1,    -1,    -1,    -1,    88,
  2539.     -1,    -1,    -1,   360,   361,   362,   363,    -1,  1330,    -1,
  2540.     -1,   368,    -1,    -1,    -1,    -1,    -1,   374,    -1,   376,
  2541.     -1,   378,   379,    -1,    -1,    -1,    -1,    -1,   385,    -1,
  2542.     -1,    -1,    -1,    -1,   391,    -1,    -1,   394,    95,   837,
  2543.    838,   839,   840,    -1,   842,    -1,   844,   845,   846,   847,
  2544.     -1,   108,   109,    -1,    -1,    -1,   413,   414,    -1,   416,
  2545.     -1,    -1,    -1,    -1,   121,    -1,    -1,    -1,    -1,    -1,
  2546.     -1,    -1,    -1,    -1,   872,    -1,    -1,   875,    -1,   877,
  2547.     -1,    -1,   139,   140,   141,    -1,    -1,    -1,    -1,    -1,
  2548.     -1,    -1,   890,   891,    -1,     1,    -1,     3,     4,     5,
  2549.      6,     7,     8,     9,    -1,    11,    12,    13,   165,    15,
  2550.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  2551.     26,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2552.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2553.     46,    47,    48,    49,    50,    51,   944,    53,    54,    -1,
  2554.     56,    -1,    -1,    -1,    -1,   953,    62,    -1,    -1,    65,
  2555.     -1,    -1,    -1,    -1,   521,    -1,    -1,    73,    74,    75,
  2556.     -1,    -1,    -1,    -1,   231,    81,    82,    83,    -1,    -1,
  2557.     -1,    -1,    88,    -1,    90,    -1,    92,   985,   986,   987,
  2558.     -1,    -1,    -1,    -1,    -1,   552,    -1,   103,   104,    -1,
  2559.     -1,   999,  1000,    -1,  1002,     3,     4,    -1,    -1,     7,
  2560.     -1,     4,     5,     6,     7,    -1,    -1,    10,    -1,    12,
  2561.    277,   278,   279,    -1,    -1,    -1,    -1,    -1,   285,    -1,
  2562.     -1,    -1,  1030,    -1,    27,    -1,    -1,    -1,    31,    -1,
  2563.     -1,    -1,    35,    41,    -1,    -1,   603,   604,   605,    -1,
  2564.     -1,    44,    -1,    51,   611,    53,    -1,    -1,    51,    -1,
  2565.     53,    -1,    -1,    -1,    -1,    -1,    -1,    65,    -1,    -1,
  2566.    627,   628,    65,   630,    -1,    -1,    -1,    75,    -1,    -1,
  2567.     -1,    -1,    75,    -1,    -1,    83,    -1,    -1,    -1,    -1,
  2568.     88,    -1,    85,    -1,    -1,    88,    89,    -1,    -1,    -1,
  2569.     93,    -1,   659,   360,  1102,   362,   363,   364,    -1,     1,
  2570.     -1,     3,     4,     5,     6,     7,    -1,   374,    -1,   376,
  2571.     12,   378,   379,    -1,    -1,    -1,     3,     4,   385,    -1,
  2572.      7,   277,   278,   279,   391,    27,   693,   394,    -1,    31,
  2573.     -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,    44,    41,
  2574.     -1,    -1,    -1,    -1,    -1,    -1,   413,    -1,    -1,    51,
  2575.     -1,    53,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,
  2576.     66,    -1,    -1,    65,    51,    -1,    53,    -1,    -1,  1177,
  2577.   1178,  1179,    -1,    75,    -1,    -1,     3,     4,    65,    85,
  2578.      7,    83,    -1,    -1,    -1,    -1,    88,    -1,    75,    95,
  2579.     -1,    -1,    -1,    -1,    -1,    -1,    83,    -1,    85,    -1,
  2580.     -1,    88,    89,    -1,   360,    -1,   362,   363,   364,    -1,
  2581.     -1,    -1,    -1,  1221,    41,   121,    -1,    -1,    -1,   786,
  2582.    787,    -1,    -1,    -1,    51,    -1,    53,   794,    -1,    -1,
  2583.     -1,    -1,   499,   139,   140,   141,    -1,    -1,    65,    -1,
  2584.     -1,    -1,    -1,   149,   511,   512,    -1,   514,    75,    -1,
  2585.     -1,    -1,   819,    -1,   521,    -1,    83,    -1,    -1,   165,
  2586.     -1,    88,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2587.    837,   838,   839,   840,    -1,    -1,    -1,   844,   845,   846,
  2588.    847,    -1,    -1,    -1,    -1,   552,    -1,    -1,    -1,   195,
  2589.     -1,    -1,     4,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2590.     -1,    -1,    -1,    -1,    -1,   872,    -1,    -1,   875,    -1,
  2591.    877,    -1,    24,    25,    -1,    -1,    -1,     4,    -1,     6,
  2592.      7,    33,    -1,   890,   891,    12,    -1,    -1,    -1,    -1,
  2593.     -1,    -1,    -1,    -1,    46,    -1,   603,   604,   605,    -1,
  2594.     -1,    -1,    -1,    -1,   611,    -1,    -1,    -1,    35,    -1,
  2595.     -1,    -1,    -1,    -1,    -1,   511,   512,    44,   514,    -1,
  2596.    627,   628,    -1,   630,    51,   521,    53,    -1,     4,     5,
  2597.      6,     7,    -1,    -1,    -1,    -1,    12,   283,    65,   285,
  2598.     -1,    -1,    -1,    -1,    -1,    -1,   953,    -1,    75,   101,
  2599.     -1,    27,   659,   105,    -1,    31,   552,    -1,    85,    35,
  2600.     -1,    88,    89,    -1,    -1,    -1,    -1,   119,    -1,    -1,
  2601.    122,   678,     3,     4,    -1,    51,     7,    53,   985,   986,
  2602.    987,   688,   689,   690,    -1,    -1,    -1,   139,   140,    -1,
  2603.     -1,    -1,   999,  1000,    -1,  1002,    -1,    -1,    -1,    -1,
  2604.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   603,   604,   605,
  2605.     41,    -1,    -1,    -1,   360,   611,   362,   363,    -1,    -1,
  2606.     51,    -1,    53,  1030,    -1,    -1,    -1,    -1,   374,    -1,
  2607.    376,   183,   378,   379,    65,    -1,     3,     4,    -1,   385,
  2608.      7,   193,    -1,    -1,    75,   391,    -1,    -1,   394,    -1,
  2609.     -1,    -1,    83,    -1,    -1,    -1,    12,    88,    -1,    -1,
  2610.     -1,    -1,   769,    -1,   771,    -1,    -1,   413,    24,    25,
  2611.     -1,    27,    -1,    -1,    41,   782,    -1,    -1,    -1,   786,
  2612.    787,   788,   678,    -1,    51,    -1,    53,    -1,    -1,    -1,
  2613.     -1,    -1,    -1,    -1,    -1,  1102,    52,    -1,    65,    -1,
  2614.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    75,    -1,
  2615.     -1,    -1,    -1,    -1,    -1,    -1,    83,    -1,    -1,    -1,
  2616.     -1,    88,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2617.    837,   838,   839,   840,    -1,    -1,    -1,   844,   845,   846,
  2618.    847,    -1,    -1,    -1,    -1,   101,    -1,   103,   104,   105,
  2619.     -1,    -1,   108,   109,    -1,     3,     4,    -1,    -1,     7,
  2620.     -1,   313,    -1,    -1,   316,   872,    -1,    -1,   320,    -1,
  2621.   1177,  1178,  1179,   769,    -1,   771,    -1,    -1,   524,    -1,
  2622.     -1,    -1,    -1,    -1,    -1,    -1,   782,    -1,    -1,    -1,
  2623.    786,   787,   788,    41,    -1,    -1,    -1,    -1,    -1,    -1,
  2624.     -1,    -1,    -1,    51,    -1,    53,   552,    -1,    -1,   361,
  2625.     -1,    -1,   919,   920,  1221,   922,   368,    65,    -1,    -1,
  2626.     -1,    -1,   374,    -1,   376,    -1,    -1,    75,    -1,    -1,
  2627.     -1,    -1,    -1,   940,   941,    83,    -1,   193,    -1,   391,
  2628.     88,   837,   838,   839,   840,    -1,    -1,    -1,   844,   845,
  2629.    846,   847,    -1,    -1,    -1,    -1,    -1,   603,   604,   605,
  2630.     -1,   413,   414,    -1,   416,   611,    -1,    -1,    -1,    -1,
  2631.      3,     4,     5,     6,     7,   231,    -1,    -1,   985,    12,
  2632.    987,   627,   628,    -1,   630,    -1,    -1,    -1,    -1,    -1,
  2633.     -1,    -1,   999,  1000,    27,  1002,    -1,    -1,    31,    -1,
  2634.     -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,
  2635.     -1,    44,    -1,   659,    -1,    -1,    -1,    -1,    51,   275,
  2636.     53,   277,   278,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2637.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2638.     -1,    -1,    75,    -1,   940,   941,    -1,    -1,    -1,    -1,
  2639.     83,   307,    85,    -1,    -1,    88,    89,   313,    -1,    -1,
  2640.    316,    -1,    -1,    -1,   320,    63,    64,    65,    66,    67,
  2641.     68,    69,    70,    71,    72,    73,    74,    75,    76,    77,
  2642.     78,    79,     1,    -1,     3,     4,     5,     6,     7,     8,
  2643.      9,    10,    11,    12,    -1,  1102,    -1,    -1,    -1,    -1,
  2644.     -1,    -1,    -1,   999,  1000,    -1,  1002,    -1,    27,    28,
  2645.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2646.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  2647.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  2648.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  2649.     -1,   603,   604,    -1,    73,    74,    75,    -1,    -1,    -1,
  2650.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  2651.   1177,  1178,  1179,    92,    93,   627,   628,   433,   630,    -1,
  2652.     -1,    -1,    -1,   102,    -1,   104,    -1,    -1,    -1,    -1,
  2653.     -1,   837,   838,   839,   840,    -1,   842,    -1,   844,   845,
  2654.    846,   847,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2655.     -1,    -1,    -1,    -1,  1221,    -1,    -1,    -1,    -1,    -1,
  2656.     -1,    -1,    -1,    -1,    -1,    -1,   872,    -1,    -1,    -1,
  2657.     -1,     1,    -1,     3,     4,     5,     6,     7,     8,     9,
  2658.     10,    11,    12,   499,    -1,    -1,    -1,    -1,    -1,    -1,
  2659.     -1,    -1,    -1,   509,    -1,   511,   512,    27,    28,    29,
  2660.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  2661.     40,    41,    42,    43,    44,    -1,    46,    47,    48,    49,
  2662.     50,    51,    -1,    53,    54,    -1,    -1,    -1,    -1,    -1,
  2663.     -1,    -1,    62,    -1,    -1,    65,    -1,   553,   944,    -1,
  2664.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  2665.     -1,    81,    82,    83,    -1,    85,    -1,    -1,    88,    89,
  2666.     -1,    -1,    92,    93,    -1,    -1,     3,     4,     5,     6,
  2667.      7,    -1,    -1,    -1,   104,    12,    -1,    -1,    -1,   985,
  2668.     -1,   987,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2669.     -1,    -1,    -1,   999,  1000,    -1,  1002,    -1,    35,    -1,
  2670.     -1,    -1,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,
  2671.     -1,    -1,    -1,    -1,    51,    -1,    53,    -1,    -1,    -1,
  2672.     -1,    -1,    -1,    -1,    -1,   837,   838,    -1,    65,    -1,
  2673.     -1,    -1,   844,    -1,    -1,    -1,    -1,    -1,    75,    -1,
  2674.     -1,    -1,    -1,    -1,    -1,    -1,    83,    -1,    85,    -1,
  2675.     -1,    88,    89,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2676.    872,    -1,   678,   875,    -1,   877,    -1,    -1,    -1,    -1,
  2677.     -1,    -1,   688,   689,   690,    -1,     1,    -1,     3,     4,
  2678.      5,     6,     7,     8,     9,    10,    11,    12,    -1,    -1,
  2679.     -1,    -1,    -1,    -1,    -1,    -1,  1102,    -1,    -1,    -1,
  2680.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2681.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    44,
  2682.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2683.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2684.     65,   953,    -1,    -1,    10,    -1,    -1,    -1,    73,    74,
  2685.     75,    -1,    -1,   769,    -1,   771,    81,    82,    83,    -1,
  2686.     85,    -1,    -1,    88,    89,    -1,   782,    92,    93,    -1,
  2687.     -1,  1177,  1178,  1179,   986,    -1,    -1,    -1,    -1,   104,
  2688.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   999,  1000,    -1,
  2689.   1002,    57,    58,    59,    60,    61,    62,    63,    64,    65,
  2690.     66,    67,    68,    69,    70,    71,    72,    73,    74,    75,
  2691.     76,    77,    78,    79,    -1,  1221,    -1,    -1,  1030,    -1,
  2692.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,     1,    -1,
  2693.      3,     4,     5,     6,     7,     8,     9,    -1,    11,    12,
  2694.     13,    -1,    15,    16,    17,    18,    19,    20,    21,    22,
  2695.     23,    24,    25,    26,    27,    28,    29,    30,    31,   875,
  2696.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2697.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  2698.     53,    54,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,
  2699.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2700.     73,    74,    75,   919,   920,    -1,   922,    -1,    81,    82,
  2701.     83,    -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,
  2702.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2703.    103,   104,     1,    -1,     3,     4,     5,     6,     7,     8,
  2704.      9,    -1,    11,    12,    13,    -1,    15,    16,    17,    18,
  2705.     19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
  2706.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2707.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  2708.     49,    50,    51,    -1,    53,    54,    -1,    56,    -1,    -1,
  2709.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  2710.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  2711.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  2712.     -1,    90,    -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,
  2713.     -1,    -1,    -1,    -1,   103,   104,     1,    -1,     3,     4,
  2714.      5,     6,     7,     8,     9,    -1,    11,    12,    13,    -1,
  2715.     15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
  2716.     25,    26,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2717.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2718.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2719.     -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2720.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2721.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2722.     -1,    -1,    -1,    88,    -1,    90,    -1,    92,    -1,    -1,
  2723.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   103,   104,
  2724.      1,    -1,     3,     4,     5,     6,     7,     8,     9,    -1,
  2725.     11,    12,    13,    -1,    15,    16,    17,    18,    19,    20,
  2726.     21,    22,    23,    24,    25,    26,    27,    28,    29,    30,
  2727.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  2728.     41,    42,    43,    -1,    -1,    46,    47,    48,    49,    50,
  2729.     51,    -1,    53,    54,    -1,    56,    -1,    -1,    -1,    -1,
  2730.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,
  2731.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  2732.     81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,    90,
  2733.     -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2734.     -1,    -1,   103,   104,     1,    -1,     3,     4,     5,     6,
  2735.      7,     8,     9,    -1,    11,    12,    13,    -1,    15,    16,
  2736.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  2737.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2738.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2739.     47,    48,    49,    50,    51,    -1,    53,    54,    -1,    56,
  2740.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2741.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2742.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2743.     -1,    88,    -1,    90,     1,    92,     3,     4,     5,     6,
  2744.      7,     8,     9,    -1,    11,    12,    13,   104,    15,    16,
  2745.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  2746.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2747.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2748.     47,    48,    49,    50,    51,    -1,    53,    54,    -1,    56,
  2749.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2750.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2751.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2752.     -1,    88,    -1,    90,     1,    92,     3,     4,     5,     6,
  2753.      7,     8,     9,    -1,    11,    12,    13,   104,    15,    16,
  2754.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  2755.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2756.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2757.     47,    48,    49,    50,    51,    -1,    53,    54,    -1,    56,
  2758.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2759.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2760.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2761.     -1,    88,    -1,    90,     1,    92,     3,     4,     5,     6,
  2762.      7,     8,     9,    10,    11,    12,    -1,   104,    -1,    -1,
  2763.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2764.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2765.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2766.     47,    48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,
  2767.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2768.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2769.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2770.     -1,    88,    -1,    -1,    -1,    92,    93,    -1,    -1,    -1,
  2771.     -1,    -1,    -1,    -1,    -1,   102,     1,   104,     3,     4,
  2772.     -1,     6,     7,     8,     9,    -1,    11,    12,    66,    67,
  2773.     68,    69,    70,    71,    72,    73,    74,    75,    76,    77,
  2774.     78,    79,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2775.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2776.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2777.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2778.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2779.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2780.     -1,    -1,    -1,    88,    89,    -1,     1,    92,     3,     4,
  2781.     -1,     6,     7,     8,     9,    -1,    11,    12,   103,   104,
  2782.     -1,    -1,    -1,    -1,    19,    -1,    -1,    -1,    -1,    -1,
  2783.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2784.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2785.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2786.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2787.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2788.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2789.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2790.     -1,     6,     7,     8,     9,    -1,    11,    12,   103,   104,
  2791.     -1,    -1,    -1,    -1,    19,    -1,    -1,    -1,    -1,    -1,
  2792.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2793.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2794.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2795.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2796.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2797.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2798.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2799.      5,     6,     7,     8,     9,    -1,    11,    12,   103,   104,
  2800.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2801.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2802.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2803.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2804.     -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2805.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2806.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,     1,
  2807.     -1,    -1,     4,    88,     6,     7,    -1,    92,    -1,    -1,
  2808.     12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   104,
  2809.     -1,    -1,    -1,    -1,    -1,    27,    -1,    -1,    -1,    31,
  2810.     -1,    -1,    -1,    35,    -1,    37,    38,    -1,    -1,    -1,
  2811.     -1,    -1,    44,    -1,    -1,    -1,    -1,    -1,    -1,    51,
  2812.     -1,    53,    -1,    55,    -1,    57,    58,    59,    -1,    61,
  2813.     62,    63,    64,    65,    66,    67,    68,    69,    70,    71,
  2814.     72,    73,    74,    75,    76,    77,    78,    -1,    -1,    81,
  2815.     82,    83,    -1,     1,    86,     3,     4,    89,     6,     7,
  2816.      8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,
  2817.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2818.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2819.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2820.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2821.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2822.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2823.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2824.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2825.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2826.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2827.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2828.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2829.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2830.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2831.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2832.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2833.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2834.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2835.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2836.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2837.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2838.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2839.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2840.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2841.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2842.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2843.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2844.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2845.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2846.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2847.     48,    49,    50,    51,    -1,    53,    -1,    -1,    56,    -1,
  2848.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2849.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2850.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2851.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2852.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2853.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2854.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2855.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2856.     48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,
  2857.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2858.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2859.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2860.     88,    -1,    -1,    -1,    92,    -1,    -1,    -1,    -1,    -1,
  2861.     -1,    -1,    -1,    -1,   102,     1,   104,     3,     4,    -1,
  2862.      6,     7,     8,     9,    -1,    11,    12,    67,    68,    69,
  2863.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  2864.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2865.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2866.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  2867.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2868.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2869.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2870.     -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,    -1,
  2871.      6,     7,     8,     9,    -1,    11,    12,    -1,   104,    -1,
  2872.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2873.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2874.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2875.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  2876.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2877.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2878.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2879.     -1,    -1,    88,    -1,     3,     4,    92,     6,     7,     8,
  2880.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,
  2881.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,
  2882.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2883.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  2884.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  2885.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  2886.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  2887.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  2888.     -1,    -1,    -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,
  2889.     -1,    -1,    -1,    -1,    -1,   104,   105,     3,     4,     5,
  2890.      6,     7,     8,     9,    -1,    11,    12,    13,    -1,    15,
  2891.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  2892.     26,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2893.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2894.     46,    47,    48,    49,    50,    51,    -1,    53,    54,    -1,
  2895.     56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2896.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2897.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2898.     -1,    -1,    88,    -1,    90,    -1,    92,    -1,    -1,    -1,
  2899.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   103,   104,     3,
  2900.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  2901.     -1,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  2902.     24,    25,    26,    27,    28,    29,    30,    31,    -1,    33,
  2903.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2904.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2905.     54,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2906.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2907.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2908.     -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,     3,
  2909.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  2910.    104,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  2911.     24,    25,    26,    27,    28,    29,    30,    31,    -1,    33,
  2912.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2913.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2914.     54,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2915.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2916.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2917.     -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,     3,
  2918.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  2919.    104,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  2920.     24,    25,    26,    27,    28,    29,    30,    31,    -1,    33,
  2921.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2922.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2923.     -1,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2924.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2925.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2926.     -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,     3,
  2927.      4,     5,     6,     7,     8,     9,    10,    11,    12,    -1,
  2928.    104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2929.     -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,    33,
  2930.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2931.     44,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2932.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2933.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2934.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2935.     -1,    85,    -1,    -1,    88,    89,    -1,    -1,    92,    93,
  2936.      3,     4,     5,     6,     7,     8,     9,    10,    11,    12,
  2937.    104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2938.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  2939.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2940.     43,    44,    -1,    46,    47,    48,    49,    50,    51,    -1,
  2941.     53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,
  2942.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2943.     73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,
  2944.     83,    -1,    85,    -1,    -1,    88,    89,    -1,    -1,    92,
  2945.     93,     3,     4,    -1,     6,     7,     8,     9,    -1,    11,
  2946.     12,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2947.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  2948.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  2949.     42,    43,    44,    -1,    46,    47,    48,    49,    50,    51,
  2950.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2951.     62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,
  2952.     -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,
  2953.     82,    83,    -1,    85,    -1,    -1,    88,    89,     3,     4,
  2954.     -1,     6,     7,     8,     9,    -1,    11,    12,    -1,    -1,
  2955.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2956.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2957.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    44,
  2958.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    -1,
  2959.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2960.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2961.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2962.     85,    -1,    -1,    88,    89,     3,     4,    -1,     6,     7,
  2963.      8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,   104,
  2964.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2965.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2966.     38,    -1,    40,    41,    42,    43,    44,    -1,    46,    47,
  2967.     48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,
  2968.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2969.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2970.     -1,    -1,    -1,    81,    82,    83,    -1,    85,    -1,    -1,
  2971.     88,    89,     3,     4,    -1,     6,     7,     8,     9,    -1,
  2972.     11,    12,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,
  2973.     -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,
  2974.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  2975.     41,    42,    43,    -1,    -1,    46,    47,    48,    49,    50,
  2976.     51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2977.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    70,
  2978.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  2979.     81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,     3,
  2980.      4,    92,     6,     7,     8,     9,    -1,    11,    12,    -1,
  2981.     -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,
  2982.     -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,    33,
  2983.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2984.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2985.     -1,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2986.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2987.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2988.     -1,    -1,    -1,    -1,    88,    -1,     3,     4,    92,     6,
  2989.      7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,
  2990.    104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2991.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2992.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2993.     47,    48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,
  2994.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2995.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2996.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2997.     -1,    88,    -1,     3,     4,    92,     6,     7,     8,     9,
  2998.     -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,    -1,
  2999.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  3000.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  3001.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  3002.     50,    51,    -1,    53,    54,    -1,    -1,    -1,    -1,    -1,
  3003.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,
  3004.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  3005.     -1,    81,    82,    83,    -1,    -1,     3,     4,    88,     6,
  3006.      7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,
  3007.     -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,
  3008.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  3009.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  3010.     47,    48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,
  3011.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  3012.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  3013.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  3014.     -1,    88,    89,     3,     4,    -1,     6,     7,     8,     9,
  3015.     -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,    -1,
  3016.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  3017.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  3018.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  3019.     50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,
  3020.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,
  3021.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  3022.     -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,
  3023.      3,     4,    92,     6,     7,     8,     9,    -1,    11,    12,
  3024.     -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,
  3025.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  3026.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  3027.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  3028.     53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,
  3029.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3030.     73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,
  3031.     83,    -1,    -1,    -1,    -1,    88,    -1,     3,     4,    92,
  3032.      6,     7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,
  3033.     -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3034.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  3035.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  3036.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  3037.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  3038.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  3039.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  3040.     -1,    -1,    88,    -1,     3,     4,    92,     6,     7,     8,
  3041.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,
  3042.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,
  3043.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  3044.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  3045.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  3046.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  3047.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  3048.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  3049.     -1,     3,     4,    92,     6,     7,     8,     9,    -1,    11,
  3050.     12,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,
  3051.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  3052.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  3053.     42,    43,    -1,    -1,    46,    47,    48,    49,    50,    51,
  3054.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3055.     62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,
  3056.     -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,
  3057.     82,    83,    -1,    -1,    -1,    -1,    88,    -1,     3,     4,
  3058.     92,     6,     7,     8,     9,    -1,    11,    12,    -1,    -1,
  3059.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3060.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  3061.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  3062.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    -1,
  3063.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  3064.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  3065.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  3066.     -1,     3,     4,    88,     6,     7,     8,     9,    -1,    11,
  3067.     12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   104,
  3068.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  3069.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  3070.     42,    43,    -1,    -1,    46,    47,    48,    49,    50,    51,
  3071.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3072.     62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,
  3073.     -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,
  3074.     82,    83,    -1,    -1,     3,     4,    88,     6,     7,     8,
  3075.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,    -1,
  3076.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    27,    28,
  3077.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  3078.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  3079.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  3080.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  3081.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  3082.     -1,    -1,    81,    82,    83,    -1,    -1,     3,     4,    88,
  3083.      6,     7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,
  3084.     -1,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,
  3085.     -1,    27,    28,    -1,    -1,    31,    -1,    33,    -1,    35,
  3086.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  3087.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  3088.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  3089.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  3090.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  3091.      3,     4,    88,     6,     7,     8,     9,    -1,    11,    12,
  3092.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   104,    -1,
  3093.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  3094.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  3095.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  3096.     53,    -1,     3,     4,     5,     6,     7,    -1,    -1,    -1,
  3097.     -1,    12,    -1,    -1,    -1,    -1,    -1,     3,     4,     5,
  3098.      6,     7,    -1,    -1,    -1,    -1,    12,    -1,    81,    82,
  3099.     83,    -1,    -1,    -1,    35,    88,    -1,    -1,    -1,    92,
  3100.     41,    27,    -1,    44,    -1,    31,    -1,    -1,    -1,    35,
  3101.     51,   104,    53,    -1,    -1,    41,    -1,    -1,    -1,    -1,
  3102.     -1,    -1,    -1,    -1,    65,    51,    -1,    53,    -1,    -1,
  3103.     56,    -1,    -1,    -1,    75,    -1,    -1,    -1,    -1,    65,
  3104.     -1,    -1,    83,    -1,    85,    -1,    -1,    88,    89,    75,
  3105.     -1,     3,     4,     5,     6,     7,    -1,    83,    10,    -1,
  3106.     12,    -1,    88,    -1,    -1,    -1,    -1,    -1,     3,     4,
  3107.      5,     6,     7,    -1,    -1,    27,    -1,    12,    -1,    31,
  3108.     -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    41,
  3109.     -1,    -1,    27,    -1,    -1,    -1,    31,    -1,    -1,    51,
  3110.     35,    53,    -1,    -1,    -1,    -1,    41,    -1,    -1,    -1,
  3111.     -1,    -1,    -1,    65,    -1,    -1,    51,    -1,    53,    -1,
  3112.     -1,    -1,    -1,    75,    -1,    60,    -1,    -1,    -1,    -1,
  3113.     65,    83,    -1,    -1,    -1,    -1,    88,    -1,    -1,    -1,
  3114.     75,     3,     4,     5,     6,     7,    -1,    -1,    83,    -1,
  3115.     12,    -1,    -1,    88,    -1,    -1,    -1,    -1,     3,     4,
  3116.      5,     6,     7,    -1,    -1,    27,    -1,    12,    -1,    31,
  3117.     -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    41,
  3118.     -1,    -1,    27,    -1,    -1,    -1,    31,    -1,    -1,    51,
  3119.     35,    53,    -1,    -1,    56,    -1,    41,    -1,    -1,    -1,
  3120.     -1,    -1,     4,    65,     6,     7,    51,    -1,    53,    -1,
  3121.     12,    -1,    -1,    75,    -1,    -1,    -1,    -1,    -1,    -1,
  3122.     65,    83,    -1,    -1,    -1,    27,    88,    -1,    -1,    31,
  3123.     75,    -1,    -1,    35,    -1,    -1,    -1,    -1,    83,    -1,
  3124.     -1,    -1,    44,    88,    -1,    -1,    -1,    -1,    -1,    51,
  3125.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3126.     57,    58,    59,    65,    61,    62,    63,    64,    65,    66,
  3127.     67,    68,    69,    75,    71,    72,    73,    74,    75,    76,
  3128.     77,    78,    79,    85,    -1,    -1,    88,    89,    57,    58,
  3129.     59,    -1,    61,    62,    63,    64,    65,    66,    67,    68,
  3130.     69,    70,    71,    72,    73,    74,    75,    76,    77,    78,
  3131.     79,    55,    32,    57,    58,    59,    -1,    61,    62,    63,
  3132.     64,    65,    66,    67,    68,    69,    70,    71,    72,    73,
  3133.     74,    75,    76,    77,    78,    79,   105,    57,    58,    59,
  3134.     -1,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  3135.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  3136.     57,    58,    59,    60,    61,    62,    63,    64,    65,    66,
  3137.     67,    68,    69,    70,    71,    72,    73,    74,    75,    76,
  3138.     77,    78,    79,    57,    58,    59,    60,    61,    62,    63,
  3139.     64,    65,    66,    67,    68,    69,    70,    71,    72,    73,
  3140.     74,    75,    76,    77,    78,    79,    57,    58,    59,    -1,
  3141.     61,    62,    63,    64,    65,    66,    67,    68,    69,    70,
  3142.     71,    72,    73,    74,    75,    76,    77,    78,    79,    59,
  3143.     -1,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  3144.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  3145.     62,    63,    64,    65,    66,    67,    68,    69,    70,    71,
  3146.     72,    73,    74,    75,    76,    77,    78,    79,    64,    65,
  3147.     66,    67,    68,    69,    70,    71,    72,    73,    74,    75,
  3148.     76,    77,    78,    79,    65,    66,    67,    68,    69,    70,
  3149.     71,    72,    73,    74,    75,    76,    77,    78,    79
  3150. };
  3151. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  3152. #line 3 "/gnu/lib/bison.simple"
  3153.  
  3154. /* Skeleton output parser for bison,
  3155.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  3156.  
  3157.    This program is free software; you can redistribute it and/or modify
  3158.    it under the terms of the GNU General Public License as published by
  3159.    the Free Software Foundation; either version 1, or (at your option)
  3160.    any later version.
  3161.  
  3162.    This program is distributed in the hope that it will be useful,
  3163.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  3164.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  3165.    GNU General Public License for more details.
  3166.  
  3167.    You should have received a copy of the GNU General Public License
  3168.    along with this program; if not, write to the Free Software
  3169.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  3170.  
  3171.  
  3172. #ifndef alloca
  3173. #ifdef __GNUC__
  3174. #define alloca __builtin_alloca
  3175. #else /* not GNU C.  */
  3176. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  3177. #include <alloca.h>
  3178. #else /* not sparc */
  3179. #if defined (MSDOS) && !defined (__TURBOC__)
  3180. #include <malloc.h>
  3181. #else /* not MSDOS, or __TURBOC__ */
  3182. #if defined(_AIX)
  3183. #include <malloc.h>
  3184.  #pragma alloca
  3185. #else /* not MSDOS, __TURBOC__, or _AIX */
  3186. #ifdef __hpux
  3187. #ifdef __cplusplus
  3188. extern "C" {
  3189. void *alloca (unsigned int);
  3190. };
  3191. #else /* not __cplusplus */
  3192. void *alloca ();
  3193. #endif /* not __cplusplus */
  3194. #endif /* __hpux */
  3195. #endif /* not _AIX */
  3196. #endif /* not MSDOS, or __TURBOC__ */
  3197. #endif /* not sparc.  */
  3198. #endif /* not GNU C.  */
  3199. #endif /* alloca not defined.  */
  3200.  
  3201. /* This is the parser code that is written into each bison parser
  3202.   when the %semantic_parser declaration is not specified in the grammar.
  3203.   It was written by Richard Stallman by simplifying the hairy parser
  3204.   used when %semantic_parser is specified.  */
  3205.  
  3206. /* Note: there must be only one dollar sign in this file.
  3207.    It is replaced by the list of actions, each action
  3208.    as one case of the switch.  */
  3209.  
  3210. #define yyerrok        (yyerrstatus = 0)
  3211. #define yyclearin    (yychar = YYEMPTY)
  3212. #define YYEMPTY        -2
  3213. #define YYEOF        0
  3214. #define YYACCEPT    return(0)
  3215. #define YYABORT     return(1)
  3216. #define YYERROR        goto yyerrlab1
  3217. /* Like YYERROR except do call yyerror.
  3218.    This remains here temporarily to ease the
  3219.    transition to the new meaning of YYERROR, for GCC.
  3220.    Once GCC version 2 has supplanted version 1, this can go.  */
  3221. #define YYFAIL        goto yyerrlab
  3222. #define YYRECOVERING()  (!!yyerrstatus)
  3223. #define YYBACKUP(token, value) \
  3224. do                                \
  3225.   if (yychar == YYEMPTY && yylen == 1)                \
  3226.     { yychar = (token), yylval = (value);            \
  3227.       yychar1 = YYTRANSLATE (yychar);                \
  3228.       YYPOPSTACK;                        \
  3229.       goto yybackup;                        \
  3230.     }                                \
  3231.   else                                \
  3232.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  3233. while (0)
  3234.  
  3235. #define YYTERROR    1
  3236. #define YYERRCODE    256
  3237.  
  3238. #ifndef YYPURE
  3239. #define YYLEX        yylex()
  3240. #endif
  3241.  
  3242. #ifdef YYPURE
  3243. #ifdef YYLSP_NEEDED
  3244. #define YYLEX        yylex(&yylval, &yylloc)
  3245. #else
  3246. #define YYLEX        yylex(&yylval)
  3247. #endif
  3248. #endif
  3249.  
  3250. /* If nonreentrant, generate the variables here */
  3251.  
  3252. #ifndef YYPURE
  3253.  
  3254. int    yychar;            /*  the lookahead symbol        */
  3255. YYSTYPE    yylval;            /*  the semantic value of the        */
  3256.                 /*  lookahead symbol            */
  3257.  
  3258. #ifdef YYLSP_NEEDED
  3259. YYLTYPE yylloc;            /*  location data for the lookahead    */
  3260.                 /*  symbol                */
  3261. #endif
  3262.  
  3263. int yynerrs;            /*  number of parse errors so far       */
  3264. #endif  /* not YYPURE */
  3265.  
  3266. #if YYDEBUG != 0
  3267. int yydebug;            /*  nonzero means print parse trace    */
  3268. /* Since this is uninitialized, it does not stop multiple parsers
  3269.    from coexisting.  */
  3270. #endif
  3271.  
  3272. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  3273.  
  3274. #ifndef    YYINITDEPTH
  3275. #define YYINITDEPTH 200
  3276. #endif
  3277.  
  3278. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  3279.     (effective only if the built-in stack extension method is used).  */
  3280.  
  3281. #if YYMAXDEPTH == 0
  3282. #undef YYMAXDEPTH
  3283. #endif
  3284.  
  3285. #ifndef YYMAXDEPTH
  3286. #define YYMAXDEPTH 10000
  3287. #endif
  3288.  
  3289. /* Prevent warning if -Wstrict-prototypes.  */
  3290. #ifdef __GNUC__
  3291. int yyparse (void);
  3292. #endif
  3293.  
  3294. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  3295. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  3296. #else                /* not GNU C or C++ */
  3297. #ifndef __cplusplus
  3298.  
  3299. /* This is the most reliable way to avoid incompatibilities
  3300.    in available built-in functions on various systems.  */
  3301. static void
  3302. __yy_bcopy (from, to, count)
  3303.      char *from;
  3304.      char *to;
  3305.      int count;
  3306. {
  3307.   register char *f = from;
  3308.   register char *t = to;
  3309.   register int i = count;
  3310.  
  3311.   while (i-- > 0)
  3312.     *t++ = *f++;
  3313. }
  3314.  
  3315. #else /* __cplusplus */
  3316.  
  3317. /* This is the most reliable way to avoid incompatibilities
  3318.    in available built-in functions on various systems.  */
  3319. static void
  3320. __yy_bcopy (char *from, char *to, int count)
  3321. {
  3322.   register char *f = from;
  3323.   register char *t = to;
  3324.   register int i = count;
  3325.  
  3326.   while (i-- > 0)
  3327.     *t++ = *f++;
  3328. }
  3329.  
  3330. #endif
  3331. #endif
  3332.  
  3333. #line 184 "/gnu/lib/bison.simple"
  3334. int
  3335. yyparse()
  3336. {
  3337.   register int yystate;
  3338.   register int yyn;
  3339.   register short *yyssp;
  3340.   register YYSTYPE *yyvsp;
  3341.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  3342.   int yychar1 = 0;        /*  lookahead token as an internal (translated) token number */
  3343.  
  3344.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  3345.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  3346.  
  3347.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  3348.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  3349.  
  3350. #ifdef YYLSP_NEEDED
  3351.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  3352.   YYLTYPE *yyls = yylsa;
  3353.   YYLTYPE *yylsp;
  3354.  
  3355. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  3356. #else
  3357. #define YYPOPSTACK   (yyvsp--, yyssp--)
  3358. #endif
  3359.  
  3360.   int yystacksize = YYINITDEPTH;
  3361.  
  3362. #ifdef YYPURE
  3363.   int yychar;
  3364.   YYSTYPE yylval;
  3365.   int yynerrs;
  3366. #ifdef YYLSP_NEEDED
  3367.   YYLTYPE yylloc;
  3368. #endif
  3369. #endif
  3370.  
  3371.   YYSTYPE yyval;        /*  the variable used to return        */
  3372.                 /*  semantic values from the action    */
  3373.                 /*  routines                */
  3374.  
  3375.   int yylen;
  3376.  
  3377. #if YYDEBUG != 0
  3378.   if (yydebug)
  3379.     fprintf(stderr, "Starting parse\n");
  3380. #endif
  3381.  
  3382.   yystate = 0;
  3383.   yyerrstatus = 0;
  3384.   yynerrs = 0;
  3385.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  3386.  
  3387.   /* Initialize stack pointers.
  3388.      Waste one element of value and location stack
  3389.      so that they stay on the same level as the state stack.
  3390.      The wasted elements are never initialized.  */
  3391.  
  3392.   yyssp = yyss - 1;
  3393.   yyvsp = yyvs;
  3394. #ifdef YYLSP_NEEDED
  3395.   yylsp = yyls;
  3396. #endif
  3397.  
  3398. /* Push a new state, which is found in  yystate  .  */
  3399. /* In all cases, when you get here, the value and location stacks
  3400.    have just been pushed. so pushing a state here evens the stacks.  */
  3401. yynewstate:
  3402.  
  3403.   *++yyssp = yystate;
  3404.  
  3405.   if (yyssp >= yyss + yystacksize - 1)
  3406.     {
  3407.       /* Give user a chance to reallocate the stack */
  3408.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  3409.       YYSTYPE *yyvs1 = yyvs;
  3410.       short *yyss1 = yyss;
  3411. #ifdef YYLSP_NEEDED
  3412.       YYLTYPE *yyls1 = yyls;
  3413. #endif
  3414.  
  3415.       /* Get the current used size of the three stacks, in elements.  */
  3416.       int size = yyssp - yyss + 1;
  3417.  
  3418. #ifdef yyoverflow
  3419.       /* Each stack pointer address is followed by the size of
  3420.      the data in use in that stack, in bytes.  */
  3421. #ifdef YYLSP_NEEDED
  3422.       /* This used to be a conditional around just the two extra args,
  3423.      but that might be undefined if yyoverflow is a macro.  */
  3424.       yyoverflow("parser stack overflow",
  3425.          &yyss1, size * sizeof (*yyssp),
  3426.          &yyvs1, size * sizeof (*yyvsp),
  3427.          &yyls1, size * sizeof (*yylsp),
  3428.          &yystacksize);
  3429. #else
  3430.       yyoverflow("parser stack overflow",
  3431.          &yyss1, size * sizeof (*yyssp),
  3432.          &yyvs1, size * sizeof (*yyvsp),
  3433.          &yystacksize);
  3434. #endif
  3435.  
  3436.       yyss = yyss1; yyvs = yyvs1;
  3437. #ifdef YYLSP_NEEDED
  3438.       yyls = yyls1;
  3439. #endif
  3440. #else /* no yyoverflow */
  3441.       /* Extend the stack our own way.  */
  3442.       if (yystacksize >= YYMAXDEPTH)
  3443.     {
  3444.       yyerror("parser stack overflow");
  3445.       return 2;
  3446.     }
  3447.       yystacksize *= 2;
  3448.       if (yystacksize > YYMAXDEPTH)
  3449.     yystacksize = YYMAXDEPTH;
  3450.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  3451.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  3452.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  3453.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  3454. #ifdef YYLSP_NEEDED
  3455.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  3456.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  3457. #endif
  3458. #endif /* no yyoverflow */
  3459.  
  3460.       yyssp = yyss + size - 1;
  3461.       yyvsp = yyvs + size - 1;
  3462. #ifdef YYLSP_NEEDED
  3463.       yylsp = yyls + size - 1;
  3464. #endif
  3465.  
  3466. #if YYDEBUG != 0
  3467.       if (yydebug)
  3468.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  3469. #endif
  3470.  
  3471.       if (yyssp >= yyss + yystacksize - 1)
  3472.     YYABORT;
  3473.     }
  3474.  
  3475. #if YYDEBUG != 0
  3476.   if (yydebug)
  3477.     fprintf(stderr, "Entering state %d\n", yystate);
  3478. #endif
  3479.  
  3480.   goto yybackup;
  3481.  yybackup:
  3482.  
  3483. /* Do appropriate processing given the current state.  */
  3484. /* Read a lookahead token if we need one and don't already have one.  */
  3485. /* yyresume: */
  3486.  
  3487.   /* First try to decide what to do without reference to lookahead token.  */
  3488.  
  3489.   yyn = yypact[yystate];
  3490.   if (yyn == YYFLAG)
  3491.     goto yydefault;
  3492.  
  3493.   /* Not known => get a lookahead token if don't already have one.  */
  3494.  
  3495.   /* yychar is either YYEMPTY or YYEOF
  3496.      or a valid token in external form.  */
  3497.  
  3498.   if (yychar == YYEMPTY)
  3499.     {
  3500. #if YYDEBUG != 0
  3501.       if (yydebug)
  3502.     fprintf(stderr, "Reading a token: ");
  3503. #endif
  3504.       yychar = YYLEX;
  3505.     }
  3506.  
  3507.   /* Convert token to internal form (in yychar1) for indexing tables with */
  3508.  
  3509.   if (yychar <= 0)        /* This means end of input. */
  3510.     {
  3511.       yychar1 = 0;
  3512.       yychar = YYEOF;        /* Don't call YYLEX any more */
  3513.  
  3514. #if YYDEBUG != 0
  3515.       if (yydebug)
  3516.     fprintf(stderr, "Now at end of input.\n");
  3517. #endif
  3518.     }
  3519.   else
  3520.     {
  3521.       yychar1 = YYTRANSLATE(yychar);
  3522.  
  3523. #if YYDEBUG != 0
  3524.       if (yydebug)
  3525.     {
  3526.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  3527.       /* Give the individual parser a way to print the precise meaning
  3528.          of a token, for further debugging info.  */
  3529. #ifdef YYPRINT
  3530.       YYPRINT (stderr, yychar, yylval);
  3531. #endif
  3532.       fprintf (stderr, ")\n");
  3533.     }
  3534. #endif
  3535.     }
  3536.  
  3537.   yyn += yychar1;
  3538.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  3539.     goto yydefault;
  3540.  
  3541.   yyn = yytable[yyn];
  3542.  
  3543.   /* yyn is what to do for this token type in this state.
  3544.      Negative => reduce, -yyn is rule number.
  3545.      Positive => shift, yyn is new state.
  3546.        New state is final state => don't bother to shift,
  3547.        just return success.
  3548.      0, or most negative number => error.  */
  3549.  
  3550.   if (yyn < 0)
  3551.     {
  3552.       if (yyn == YYFLAG)
  3553.     goto yyerrlab;
  3554.       yyn = -yyn;
  3555.       goto yyreduce;
  3556.     }
  3557.   else if (yyn == 0)
  3558.     goto yyerrlab;
  3559.  
  3560.   if (yyn == YYFINAL)
  3561.     YYACCEPT;
  3562.  
  3563.   /* Shift the lookahead token.  */
  3564.  
  3565. #if YYDEBUG != 0
  3566.   if (yydebug)
  3567.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  3568. #endif
  3569.  
  3570.   /* Discard the token being shifted unless it is eof.  */
  3571.   if (yychar != YYEOF)
  3572.     yychar = YYEMPTY;
  3573.  
  3574.   *++yyvsp = yylval;
  3575. #ifdef YYLSP_NEEDED
  3576.   *++yylsp = yylloc;
  3577. #endif
  3578.  
  3579.   /* count tokens shifted since error; after three, turn off error status.  */
  3580.   if (yyerrstatus) yyerrstatus--;
  3581.  
  3582.   yystate = yyn;
  3583.   goto yynewstate;
  3584.  
  3585. /* Do the default action for the current state.  */
  3586. yydefault:
  3587.  
  3588.   yyn = yydefact[yystate];
  3589.   if (yyn == 0)
  3590.     goto yyerrlab;
  3591.  
  3592. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  3593. yyreduce:
  3594.   yylen = yyr2[yyn];
  3595.   if (yylen > 0)
  3596.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  3597.  
  3598. #if YYDEBUG != 0
  3599.   if (yydebug)
  3600.     {
  3601.       int i;
  3602.  
  3603.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  3604.            yyn, yyrline[yyn]);
  3605.  
  3606.       /* Print the symbols being reduced, and their result.  */
  3607.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  3608.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  3609.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  3610.     }
  3611. #endif
  3612.  
  3613.  
  3614.   switch (yyn) {
  3615.  
  3616. case 2:
  3617. #line 294 "parse.y"
  3618. {
  3619.           /* In case there were missing closebraces,
  3620.              get us back to the global binding level.  */
  3621.           while (! global_bindings_p ())
  3622.             poplevel (0, 0, 0);
  3623.           finish_file ();
  3624.         ;
  3625.     break;}
  3626. case 3:
  3627. #line 308 "parse.y"
  3628. { yyval.ttype = NULL_TREE; ;
  3629.     break;}
  3630. case 4:
  3631. #line 309 "parse.y"
  3632. { yyval.ttype = NULL_TREE; ;
  3633.     break;}
  3634. case 5:
  3635. #line 311 "parse.y"
  3636. { yyval.ttype = NULL_TREE; ;
  3637.     break;}
  3638. case 6:
  3639. #line 315 "parse.y"
  3640. { have_extern_spec = 1;
  3641.           used_extern_spec = 0;
  3642.           yyval.ttype = NULL_TREE; ;
  3643.     break;}
  3644. case 7:
  3645. #line 320 "parse.y"
  3646. { have_extern_spec = 0; ;
  3647.     break;}
  3648. case 10:
  3649. #line 329 "parse.y"
  3650. { if (pending_lang_change) do_pending_lang_change(); ;
  3651.     break;}
  3652. case 11:
  3653. #line 331 "parse.y"
  3654. { if (! global_bindings_p () && ! pseudo_global_level_p())
  3655.           pop_everything (); ;
  3656.     break;}
  3657. case 12:
  3658. #line 337 "parse.y"
  3659. { if (pending_inlines) do_pending_inlines (); ;
  3660.     break;}
  3661. case 13:
  3662. #line 339 "parse.y"
  3663. { if (pending_inlines) do_pending_inlines (); ;
  3664.     break;}
  3665. case 14:
  3666. #line 341 "parse.y"
  3667. { if (pending_inlines) do_pending_inlines (); ;
  3668.     break;}
  3669. case 16:
  3670. #line 344 "parse.y"
  3671. { if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
  3672.           assemble_asm (yyvsp[-2].ttype); ;
  3673.     break;}
  3674. case 17:
  3675. #line 347 "parse.y"
  3676. { pop_lang_context (); ;
  3677.     break;}
  3678. case 18:
  3679. #line 349 "parse.y"
  3680. { pop_lang_context (); ;
  3681.     break;}
  3682. case 19:
  3683. #line 351 "parse.y"
  3684. { if (pending_inlines) do_pending_inlines ();
  3685.           pop_lang_context (); ;
  3686.     break;}
  3687. case 20:
  3688. #line 354 "parse.y"
  3689. { if (pending_inlines) do_pending_inlines ();
  3690.           pop_lang_context (); ;
  3691.     break;}
  3692. case 21:
  3693. #line 360 "parse.y"
  3694. { push_lang_context (yyvsp[0].ttype); ;
  3695.     break;}
  3696. case 22:
  3697. #line 365 "parse.y"
  3698. { begin_template_parm_list (); ;
  3699.     break;}
  3700. case 23:
  3701. #line 367 "parse.y"
  3702. { yyval.ttype = end_template_parm_list (yyvsp[-1].ttype); ;
  3703.     break;}
  3704. case 24:
  3705. #line 372 "parse.y"
  3706. { yyval.ttype = process_template_parm (NULL_TREE, yyvsp[0].ttype); ;
  3707.     break;}
  3708. case 25:
  3709. #line 374 "parse.y"
  3710. { yyval.ttype = process_template_parm (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3711.     break;}
  3712. case 26:
  3713. #line 379 "parse.y"
  3714.           yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE);
  3715.          ttpa:
  3716.           if (TREE_PURPOSE (yyval.ttype) == signature_type_node)
  3717.             sorry ("signature as template type parameter");
  3718.           else if (TREE_PURPOSE (yyval.ttype) != class_type_node)
  3719.             pedwarn ("template type parameters must use the keyword `class'");
  3720.         ;
  3721.     break;}
  3722. case 27:
  3723. #line 388 "parse.y"
  3724. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); goto ttpa; ;
  3725.     break;}
  3726. case 28:
  3727. #line 400 "parse.y"
  3728. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  3729.     break;}
  3730. case 29:
  3731. #line 402 "parse.y"
  3732. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  3733.     break;}
  3734. case 31:
  3735. #line 408 "parse.y"
  3736. { warning ("use of `overload' is an anachronism"); ;
  3737.     break;}
  3738. case 32:
  3739. #line 412 "parse.y"
  3740. { declare_overloaded (yyvsp[0].ttype); ;
  3741.     break;}
  3742. case 33:
  3743. #line 414 "parse.y"
  3744. { declare_overloaded (yyvsp[0].ttype); ;
  3745.     break;}
  3746. case 34:
  3747. #line 421 "parse.y"
  3748. { yychar = '{'; goto template1; ;
  3749.     break;}
  3750. case 36:
  3751. #line 424 "parse.y"
  3752. { yychar = '{'; goto template1; ;
  3753.     break;}
  3754. case 38:
  3755. #line 427 "parse.y"
  3756. { yychar = ':'; goto template1; ;
  3757.     break;}
  3758. case 40:
  3759. #line 430 "parse.y"
  3760. {
  3761.           yychar = ':';
  3762.         template1:
  3763.           if (current_aggr == exception_type_node)
  3764.             error ("template type must define an aggregate or union");
  3765.           else if (current_aggr == signature_type_node)
  3766.             sorry ("template type defining a signature");
  3767.           /* Maybe pedantic warning for union?
  3768.              How about an enum? :-)  */
  3769.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 1);
  3770.           reinit_parse_for_template (yychar, yyvsp[-2].ttype, yyvsp[-1].ttype);
  3771.           yychar = YYEMPTY;
  3772.         ;
  3773.     break;}
  3774. case 42:
  3775. #line 445 "parse.y"
  3776. {
  3777.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
  3778.           /* declare $2 as template name with $1 parm list */
  3779.         ;
  3780.     break;}
  3781. case 43:
  3782. #line 450 "parse.y"
  3783. {
  3784.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
  3785.           /* declare $2 as template name with $1 parm list */
  3786.         ;
  3787.     break;}
  3788. case 44:
  3789. #line 457 "parse.y"
  3790. {
  3791.           tree d;
  3792.           int momentary;
  3793.           int def = (yyvsp[0].itype != ';');
  3794.           momentary = suspend_momentary ();
  3795.           d = start_decl (yyvsp[-4].ttype, /*current_declspecs*/NULL_TREE, 0,
  3796.                   yyvsp[-3].ttype);
  3797.           cplus_decl_attributes (d, yyvsp[-1].ttype);
  3798.           finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0);
  3799.           end_template_decl (yyvsp[-5].ttype, d, 0, def);
  3800.           if (def)
  3801.             reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-5].ttype, d);
  3802.           resume_momentary (momentary);
  3803.         ;
  3804.     break;}
  3805. case 45:
  3806. #line 474 "parse.y"
  3807. {
  3808.           tree d;
  3809.           int momentary;
  3810.           int def = (yyvsp[0].itype != ';');
  3811.  
  3812.           current_declspecs = yyvsp[-5].ttype;
  3813.           momentary = suspend_momentary ();
  3814.           d = start_decl (yyvsp[-4].ttype, current_declspecs,
  3815.                   0, yyvsp[-3].ttype);
  3816.           cplus_decl_attributes (d, yyvsp[-1].ttype);
  3817.           finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0);
  3818.           end_template_decl (yyvsp[-6].ttype, d, 0, def);
  3819.           if (def)
  3820.             {
  3821.               reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-6].ttype, d);
  3822.               yychar = YYEMPTY;
  3823.             }
  3824.           note_list_got_semicolon (yyvsp[-5].ttype);
  3825.           resume_momentary (momentary);
  3826.         ;
  3827.     break;}
  3828. case 46:
  3829. #line 495 "parse.y"
  3830. {
  3831.           int def = (yyvsp[0].itype != ';');
  3832.           tree d = start_decl (yyvsp[-1].ttype, yyvsp[-2].ttype, 0, NULL_TREE);
  3833.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3834.           end_template_decl (yyvsp[-3].ttype, d, 0, def);
  3835.           if (def)
  3836.             reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-3].ttype, d);
  3837.         ;
  3838.     break;}
  3839. case 47:
  3840. #line 504 "parse.y"
  3841. { end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
  3842.     break;}
  3843. case 48:
  3844. #line 505 "parse.y"
  3845. { end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
  3846.     break;}
  3847. case 49:
  3848. #line 508 "parse.y"
  3849. { yyval.itype = '{'; ;
  3850.     break;}
  3851. case 50:
  3852. #line 509 "parse.y"
  3853. { yyval.itype = ':'; ;
  3854.     break;}
  3855. case 51:
  3856. #line 510 "parse.y"
  3857. { yyval.itype = ';'; ;
  3858.     break;}
  3859. case 52:
  3860. #line 511 "parse.y"
  3861. { yyval.itype = '='; ;
  3862.     break;}
  3863. case 53:
  3864. #line 512 "parse.y"
  3865. { yyval.itype = RETURN; ;
  3866.     break;}
  3867. case 54:
  3868. #line 517 "parse.y"
  3869. {;
  3870.     break;}
  3871. case 55:
  3872. #line 519 "parse.y"
  3873. {;
  3874.     break;}
  3875. case 56:
  3876. #line 522 "parse.y"
  3877. { tree d;
  3878.           d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
  3879.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3880.         ;
  3881.     break;}
  3882. case 57:
  3883. #line 527 "parse.y"
  3884. {
  3885.           note_list_got_semicolon (yyval.ttype);
  3886.         ;
  3887.     break;}
  3888. case 58:
  3889. #line 532 "parse.y"
  3890. { tree d;
  3891.           d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
  3892.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3893.           note_list_got_semicolon (yyval.ttype);
  3894.         ;
  3895.     break;}
  3896. case 59:
  3897. #line 538 "parse.y"
  3898. { pedwarn ("empty declaration"); ;
  3899.     break;}
  3900. case 61:
  3901. #line 541 "parse.y"
  3902. {
  3903.         tree t = yyval.ttype;
  3904.         shadow_tag (t);
  3905.         if (TREE_CODE (t) == TREE_LIST
  3906.         && TREE_PURPOSE (t) == NULL_TREE)
  3907.           {
  3908.         t = TREE_VALUE (t);
  3909.         if (IS_AGGR_TYPE (t)
  3910.             && IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (t)))
  3911.           {
  3912.             if (CLASSTYPE_USE_TEMPLATE (t) == 0)
  3913.               SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
  3914.             else if (CLASSTYPE_TEMPLATE_INSTANTIATION (t))
  3915.               error ("override declaration for already-expanded template");
  3916.           }
  3917.           }
  3918.         note_list_got_semicolon (yyval.ttype);
  3919.       ;
  3920.     break;}
  3921. case 65:
  3922. #line 566 "parse.y"
  3923. {
  3924.           finish_function (lineno, 1);
  3925.           /* finish_function performs these three statements:
  3926.  
  3927.              expand_end_bindings (getdecls (), 1, 0);
  3928.              poplevel (1, 1, 0);
  3929.  
  3930.              expand_end_bindings (0, 0, 0);
  3931.              poplevel (0, 0, 1);
  3932.              */
  3933.           if (yyval.ttype) process_next_inline (yyval.ttype);
  3934.         ;
  3935.     break;}
  3936. case 66:
  3937. #line 579 "parse.y"
  3938. {
  3939.           finish_function (lineno, 1);
  3940.           /* finish_function performs these three statements:
  3941.  
  3942.              expand_end_bindings (getdecls (), 1, 0);
  3943.              poplevel (1, 1, 0);
  3944.  
  3945.              expand_end_bindings (0, 0, 0);
  3946.              poplevel (0, 0, 1);
  3947.              */
  3948.           if (yyval.ttype) process_next_inline (yyval.ttype);
  3949.         ;
  3950.     break;}
  3951. case 67:
  3952. #line 592 "parse.y"
  3953. { finish_function (lineno, 0);
  3954.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3955.     break;}
  3956. case 68:
  3957. #line 595 "parse.y"
  3958. { finish_function (lineno, 0);
  3959.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3960.     break;}
  3961. case 69:
  3962. #line 598 "parse.y"
  3963. { finish_function (lineno, 0);
  3964.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3965.     break;}
  3966. case 70:
  3967. #line 601 "parse.y"
  3968. {;
  3969.     break;}
  3970. case 71:
  3971. #line 603 "parse.y"
  3972. {;
  3973.     break;}
  3974. case 72:
  3975. #line 605 "parse.y"
  3976. {;
  3977.     break;}
  3978. case 73:
  3979. #line 610 "parse.y"
  3980. { if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
  3981.             YYERROR1;
  3982.           reinit_parse_for_function ();
  3983.           yyval.ttype = NULL_TREE; ;
  3984.     break;}
  3985. case 74:
  3986. #line 615 "parse.y"
  3987. { if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
  3988.             YYERROR1;
  3989.           reinit_parse_for_function ();
  3990.           yyval.ttype = NULL_TREE; ;
  3991.     break;}
  3992. case 75:
  3993. #line 620 "parse.y"
  3994. { if (! start_function (NULL_TREE, yyval.ttype, yyvsp[0].ttype, 0))
  3995.             YYERROR1;
  3996.           reinit_parse_for_function ();
  3997.           yyval.ttype = NULL_TREE; ;
  3998.     break;}
  3999. case 76:
  4000. #line 625 "parse.y"
  4001. { start_function (NULL_TREE, TREE_VALUE (yyval.ttype), NULL_TREE, 1);
  4002.           reinit_parse_for_function (); ;
  4003.     break;}
  4004. case 77:
  4005. #line 633 "parse.y"
  4006. {
  4007.           yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-5].ttype), yyvsp[-3].ttype, yyvsp[-1].ttype);
  4008.           yyval.ttype = start_method (TREE_CHAIN (yyvsp[-5].ttype), yyval.ttype, yyvsp[0].ttype);
  4009.          rest_of_mdef:
  4010.           if (! yyval.ttype)
  4011.             YYERROR1;
  4012.           if (yychar == YYEMPTY)
  4013.             yychar = YYLEX;
  4014.           reinit_parse_for_method (yychar, yyval.ttype); ;
  4015.     break;}
  4016. case 78:
  4017. #line 643 "parse.y"
  4018. {
  4019.           yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-3].ttype),
  4020.                      empty_parms (), yyvsp[-1].ttype);
  4021.           yyval.ttype = start_method (TREE_CHAIN (yyvsp[-3].ttype), yyval.ttype, yyvsp[0].ttype);
  4022.           goto rest_of_mdef;
  4023.         ;
  4024.     break;}
  4025. case 79:
  4026. #line 650 "parse.y"
  4027. { yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4028.     break;}
  4029. case 80:
  4030. #line 652 "parse.y"
  4031. { yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4032.     break;}
  4033. case 81:
  4034. #line 654 "parse.y"
  4035. { yyval.ttype = start_method (NULL_TREE, yyval.ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4036.     break;}
  4037. case 82:
  4038. #line 658 "parse.y"
  4039. {
  4040.           if (! current_function_parms_stored)
  4041.             store_parm_decls ();
  4042.           yyval.ttype = yyvsp[0].ttype;
  4043.         ;
  4044.     break;}
  4045. case 83:
  4046. #line 666 "parse.y"
  4047. { store_return_init (yyval.ttype, NULL_TREE); ;
  4048.     break;}
  4049. case 84:
  4050. #line 668 "parse.y"
  4051. { store_return_init (yyval.ttype, yyvsp[0].ttype); ;
  4052.     break;}
  4053. case 85:
  4054. #line 670 "parse.y"
  4055. { store_return_init (yyval.ttype, yyvsp[-1].ttype); ;
  4056.     break;}
  4057. case 86:
  4058. #line 672 "parse.y"
  4059. { store_return_init (yyval.ttype, NULL_TREE); ;
  4060.     break;}
  4061. case 87:
  4062. #line 677 "parse.y"
  4063. {
  4064.           if (yyvsp[0].itype == 0)
  4065.             error ("no base initializers given following ':'");
  4066.           setup_vtbl_ptr ();
  4067.           /* Always keep the BLOCK node associated with the outermost
  4068.              pair of curley braces of a function.  These are needed
  4069.              for correct operation of dwarfout.c.  */
  4070.           keep_next_level ();
  4071.         ;
  4072.     break;}
  4073. case 88:
  4074. #line 690 "parse.y"
  4075. {
  4076.           if (! current_function_parms_stored)
  4077.             store_parm_decls ();
  4078.  
  4079.           /* Flag that we are processing base and member initializers.  */
  4080.           current_vtable_decl = error_mark_node;
  4081.  
  4082.           if (DECL_CONSTRUCTOR_P (current_function_decl))
  4083.             {
  4084.               /* Make a contour for the initializer list.  */
  4085.               pushlevel (0);
  4086.               clear_last_expr ();
  4087.               expand_start_bindings (0);
  4088.             }
  4089.           else if (current_class_type == NULL_TREE)
  4090.             error ("base initializers not allowed for non-member functions");
  4091.           else if (! DECL_CONSTRUCTOR_P (current_function_decl))
  4092.             error ("only constructors take base initializers");
  4093.         ;
  4094.     break;}
  4095. case 89:
  4096. #line 713 "parse.y"
  4097. { yyval.itype = 0; ;
  4098.     break;}
  4099. case 90:
  4100. #line 715 "parse.y"
  4101. { yyval.itype = 1; ;
  4102.     break;}
  4103. case 93:
  4104. #line 721 "parse.y"
  4105. {
  4106.           if (current_class_name && !flag_traditional)
  4107.             pedwarn ("anachronistic old style base class initializer");
  4108.           expand_member_init (C_C_D, NULL_TREE, yyvsp[-1].ttype);
  4109.         ;
  4110.     break;}
  4111. case 94:
  4112. #line 727 "parse.y"
  4113. {
  4114.           if (current_class_name && !flag_traditional)
  4115.             pedwarn ("anachronistic old style base class initializer");
  4116.           expand_member_init (C_C_D, NULL_TREE, void_type_node);
  4117.         ;
  4118.     break;}
  4119. case 95:
  4120. #line 733 "parse.y"
  4121. { expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
  4122.     break;}
  4123. case 96:
  4124. #line 735 "parse.y"
  4125. { expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
  4126.     break;}
  4127. case 97:
  4128. #line 737 "parse.y"
  4129. { expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
  4130.     break;}
  4131. case 98:
  4132. #line 739 "parse.y"
  4133. { expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
  4134.     break;}
  4135. case 99:
  4136. #line 742 "parse.y"
  4137. {
  4138.           do_member_init (OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
  4139.         ;
  4140.     break;}
  4141. case 100:
  4142. #line 746 "parse.y"
  4143. {
  4144.           do_member_init (OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), void_type_node);
  4145.         ;
  4146.     break;}
  4147. case 109:
  4148. #line 770 "parse.y"
  4149. { do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, NULL_TREE); ;
  4150.     break;}
  4151. case 110:
  4152. #line 772 "parse.y"
  4153. { do_function_instantiation (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE); ;
  4154.     break;}
  4155. case 111:
  4156. #line 774 "parse.y"
  4157. { do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, yyvsp[-3].ttype); ;
  4158.     break;}
  4159. case 112:
  4160. #line 776 "parse.y"
  4161. { do_function_instantiation (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype); ;
  4162.     break;}
  4163. case 113:
  4164. #line 781 "parse.y"
  4165. { if (yyvsp[0].ttype) yyval.ttype = yyvsp[0].ttype; ;
  4166.     break;}
  4167. case 114:
  4168. #line 786 "parse.y"
  4169. { yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4170.     break;}
  4171. case 115:
  4172. #line 788 "parse.y"
  4173. { yyval.ttype = lookup_template_class (yyval.ttype, NULL_TREE, NULL_TREE); ;
  4174.     break;}
  4175. case 116:
  4176. #line 790 "parse.y"
  4177. { yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4178.     break;}
  4179. case 117:
  4180. #line 795 "parse.y"
  4181. { yyval.ttype = instantiate_class_template (yyvsp[0].ttype, 1); ;
  4182.     break;}
  4183. case 118:
  4184. #line 800 "parse.y"
  4185. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  4186.     break;}
  4187. case 119:
  4188. #line 802 "parse.y"
  4189. { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4190.     break;}
  4191. case 120:
  4192. #line 807 "parse.y"
  4193. { yyval.ttype = groktypename (yyval.ttype); ;
  4194.     break;}
  4195. case 122:
  4196. #line 813 "parse.y"
  4197. {
  4198.           tree t, decl, tmpl;
  4199.  
  4200.           tmpl = TREE_PURPOSE (IDENTIFIER_TEMPLATE (yyvsp[-1].ttype));
  4201.           t = xref_tag (DECL_TEMPLATE_INFO (tmpl)->aggr, yyvsp[-1].ttype, yyvsp[0].ttype, 0);
  4202.           set_current_level_tags_transparency (1);
  4203.           my_friendly_assert (TREE_CODE (t) == RECORD_TYPE
  4204.                       || TREE_CODE (t) == UNION_TYPE, 257);
  4205.           yyval.ttype = t;
  4206.  
  4207.           /* Now, put a copy of the decl in global scope, to avoid
  4208.              recursive expansion.  */
  4209.           decl = IDENTIFIER_LOCAL_VALUE (yyvsp[-1].ttype);
  4210.           if (!decl)
  4211.             decl = IDENTIFIER_CLASS_VALUE (yyvsp[-1].ttype);
  4212.           /* Now, put a copy of the decl in global scope, to avoid
  4213.              recursive expansion.  */
  4214.                   if (decl)
  4215.                     {
  4216.               /* Need to copy it to clear the chain pointer,
  4217.              and need to get it into permanent storage.  */
  4218.                       my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 258);
  4219.               push_obstacks (&permanent_obstack, &permanent_obstack);
  4220.                       decl = copy_node (decl);
  4221.               if (DECL_LANG_SPECIFIC (decl))
  4222.             copy_lang_decl (decl);
  4223.               pop_obstacks ();
  4224.               pushdecl_top_level (decl);
  4225.             }
  4226.           /* Kludge; see instantiate_class_template.  */
  4227.           TYPE_BEING_DEFINED (t) = 0;
  4228.         ;
  4229.     break;}
  4230. case 123:
  4231. #line 846 "parse.y"
  4232. {
  4233.           tree t = finish_struct (yyvsp[-3].ttype, yyvsp[-1].ttype, 0);
  4234.  
  4235.           pop_obstacks ();
  4236.           end_template_instantiation (yyvsp[-5].ttype);
  4237.  
  4238.                   /* Now go after the methods & class data.  */
  4239.                   instantiate_member_templates (yyvsp[-5].ttype);
  4240.  
  4241.           pop_tinst_level();
  4242.  
  4243.           CLASSTYPE_GOT_SEMICOLON (t) = 1;
  4244.         ;
  4245.     break;}
  4246. case 124:
  4247. #line 863 "parse.y"
  4248. { yyval.ttype = NULL_TREE; ;
  4249.     break;}
  4250. case 125:
  4251. #line 865 "parse.y"
  4252. { yyval.ttype = yyvsp[0].ttype; ;
  4253.     break;}
  4254. case 126:
  4255. #line 870 "parse.y"
  4256. { yyval.ttype = NULL_TREE; /* never used from here... */;
  4257.     break;}
  4258. case 127:
  4259. #line 872 "parse.y"
  4260. { yyval.ttype = yyvsp[-1].ttype; /*???*/ ;
  4261.     break;}
  4262. case 128:
  4263. #line 876 "parse.y"
  4264. { yyval.code = NEGATE_EXPR; ;
  4265.     break;}
  4266. case 129:
  4267. #line 878 "parse.y"
  4268. { yyval.code = CONVERT_EXPR; ;
  4269.     break;}
  4270. case 130:
  4271. #line 880 "parse.y"
  4272. { yyval.code = PREINCREMENT_EXPR; ;
  4273.     break;}
  4274. case 131:
  4275. #line 882 "parse.y"
  4276. { yyval.code = PREDECREMENT_EXPR; ;
  4277.     break;}
  4278. case 132:
  4279. #line 884 "parse.y"
  4280. { yyval.code = TRUTH_NOT_EXPR; ;
  4281.     break;}
  4282. case 133:
  4283. #line 888 "parse.y"
  4284. { yyval.ttype = build_x_compound_expr (yyval.ttype); ;
  4285.     break;}
  4286. case 135:
  4287. #line 894 "parse.y"
  4288. { error ("ANSI C++ forbids an empty condition for `%s'",
  4289.              cond_stmt_keyword);
  4290.           yyval.ttype = integer_zero_node; ;
  4291.     break;}
  4292. case 136:
  4293. #line 898 "parse.y"
  4294. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4295.                    bool_truthvalue_conversion (yyvsp[-1].ttype)); ;
  4296.     break;}
  4297. case 137:
  4298. #line 904 "parse.y"
  4299. { error ("ANSI C++ forbids an empty condition for `%s'",
  4300.              cond_stmt_keyword);
  4301.           yyval.ttype = integer_zero_node; ;
  4302.     break;}
  4303. case 138:
  4304. #line 908 "parse.y"
  4305. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4306.                    bool_truthvalue_conversion (yyvsp[-1].ttype)); ;
  4307.     break;}
  4308. case 139:
  4309. #line 914 "parse.y"
  4310. { yyval.ttype = NULL_TREE; ;
  4311.     break;}
  4312. case 140:
  4313. #line 916 "parse.y"
  4314. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4315.                    bool_truthvalue_conversion (yyval.ttype)); ;
  4316.     break;}
  4317. case 141:
  4318. #line 919 "parse.y"
  4319. { yyval.ttype = NULL_TREE; ;
  4320.     break;}
  4321. case 142:
  4322. #line 924 "parse.y"
  4323. { {
  4324.           tree d;
  4325.           for (d = getdecls (); d; d = TREE_CHAIN (d))
  4326.             if (TREE_CODE (d) == TYPE_DECL) {
  4327.               tree s = TREE_TYPE (d);
  4328.               if (TREE_CODE (s) == RECORD_TYPE)
  4329.             cp_error ("definition of class `%T' in condition", s);
  4330.               else if (TREE_CODE (s) == ENUMERAL_TYPE)
  4331.             cp_error ("definition of enum `%T' in condition", s);
  4332.             }
  4333.           }
  4334.           current_declspecs = yyvsp[-5].ttype;
  4335.           yyvsp[0].itype = suspend_momentary ();
  4336.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  4337.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype);
  4338.         ;
  4339.     break;}
  4340. case 143:
  4341. #line 941 "parse.y"
  4342.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype, 0);
  4343.           resume_momentary (yyvsp[-2].itype);
  4344.           yyval.ttype = yyvsp[-1].ttype; 
  4345.           if (TREE_CODE (TREE_TYPE (yyval.ttype)) == ARRAY_TYPE)
  4346.             cp_error ("definition of array `%#D' in condition", yyval.ttype); 
  4347.         ;
  4348.     break;}
  4349. case 145:
  4350. #line 953 "parse.y"
  4351. { finish_stmt (); ;
  4352.     break;}
  4353. case 146:
  4354. #line 955 "parse.y"
  4355. { finish_stmt (); ;
  4356.     break;}
  4357. case 147:
  4358. #line 957 "parse.y"
  4359. { finish_stmt (); ;
  4360.     break;}
  4361. case 149:
  4362. #line 964 "parse.y"
  4363. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, 
  4364.                           build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4365.     break;}
  4366. case 150:
  4367. #line 967 "parse.y"
  4368. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, 
  4369.                           build_tree_list (NULL_TREE, error_mark_node)); ;
  4370.     break;}
  4371. case 151:
  4372. #line 970 "parse.y"
  4373. { chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4374.     break;}
  4375. case 152:
  4376. #line 972 "parse.y"
  4377. { chainon (yyval.ttype, build_tree_list (NULL_TREE, error_mark_node)); ;
  4378.     break;}
  4379. case 153:
  4380. #line 977 "parse.y"
  4381. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  4382.     break;}
  4383. case 155:
  4384. #line 983 "parse.y"
  4385. {
  4386. #if 0
  4387.           if (TREE_CODE (yyval.ttype) == TYPE_EXPR)
  4388.             yyval.ttype = build_component_type_expr (C_C_D, yyval.ttype, NULL_TREE, 1);
  4389. #endif
  4390.         ;
  4391.     break;}
  4392. case 156:
  4393. #line 991 "parse.y"
  4394. { yyvsp[0].itype = pedantic;
  4395.           pedantic = 0; ;
  4396.     break;}
  4397. case 157:
  4398. #line 994 "parse.y"
  4399. { yyval.ttype = yyvsp[0].ttype;
  4400.           pedantic = yyvsp[-2].itype; ;
  4401.     break;}
  4402. case 158:
  4403. #line 997 "parse.y"
  4404. { yyval.ttype = build_x_indirect_ref (yyvsp[0].ttype, "unary *"); ;
  4405.     break;}
  4406. case 159:
  4407. #line 999 "parse.y"
  4408. { yyval.ttype = build_x_unary_op (ADDR_EXPR, yyvsp[0].ttype); ;
  4409.     break;}
  4410. case 160:
  4411. #line 1001 "parse.y"
  4412. { yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, yyvsp[0].ttype); ;
  4413.     break;}
  4414. case 161:
  4415. #line 1003 "parse.y"
  4416. { yyval.ttype = build_x_unary_op (yyvsp[-1].code, yyvsp[0].ttype);
  4417.           if (yyvsp[-1].code == NEGATE_EXPR && TREE_CODE (yyvsp[0].ttype) == INTEGER_CST)
  4418.             TREE_NEGATED_INT (yyval.ttype) = 1;
  4419.           overflow_warning (yyval.ttype);
  4420.         ;
  4421.     break;}
  4422. case 162:
  4423. #line 1010 "parse.y"
  4424. { tree label = lookup_label (yyvsp[0].ttype);
  4425.           if (label == NULL_TREE)
  4426.             yyval.ttype = null_pointer_node;
  4427.           else
  4428.             {
  4429.               TREE_USED (label) = 1;
  4430.               yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
  4431.               TREE_CONSTANT (yyval.ttype) = 1;
  4432.             }
  4433.         ;
  4434.     break;}
  4435. case 163:
  4436. #line 1021 "parse.y"
  4437. { if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
  4438.               && DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
  4439.             error ("sizeof applied to a bit-field");
  4440.           /* ANSI says arrays and functions are converted inside comma.
  4441.              But we can't really convert them in build_compound_expr
  4442.              because that would break commas in lvalues.
  4443.              So do the conversion here if operand was a comma.  */
  4444.           if (TREE_CODE (yyvsp[0].ttype) == COMPOUND_EXPR
  4445.               && (TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == ARRAY_TYPE
  4446.               || TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == FUNCTION_TYPE))
  4447.             yyvsp[0].ttype = default_conversion (yyvsp[0].ttype);
  4448.           else if (TREE_CODE (yyvsp[0].ttype) == TREE_LIST)
  4449.                 {
  4450.               tree t = TREE_VALUE (yyvsp[0].ttype);
  4451.               if (t != NULL_TREE
  4452.               && TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
  4453.             pedwarn ("ANSI C++ forbids using sizeof() on a function");
  4454.             }
  4455.           yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
  4456.     break;}
  4457. case 164:
  4458. #line 1041 "parse.y"
  4459. { yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
  4460.     break;}
  4461. case 165:
  4462. #line 1043 "parse.y"
  4463. { yyval.ttype = grok_alignof (yyvsp[0].ttype); ;
  4464.     break;}
  4465. case 166:
  4466. #line 1045 "parse.y"
  4467. { yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
  4468.     break;}
  4469. case 167:
  4470. #line 1050 "parse.y"
  4471. { yyval.ttype = build_new (NULL_TREE, yyvsp[0].ttype, NULL_TREE, yyvsp[-1].itype); ;
  4472.     break;}
  4473. case 168:
  4474. #line 1052 "parse.y"
  4475. { yyval.ttype = build_new (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-2].itype); ;
  4476.     break;}
  4477. case 169:
  4478. #line 1054 "parse.y"
  4479. { yyval.ttype = build_new (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE, yyvsp[-2].itype); ;
  4480.     break;}
  4481. case 170:
  4482. #line 1056 "parse.y"
  4483. { yyval.ttype = build_new (yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].itype); ;
  4484.     break;}
  4485. case 171:
  4486. #line 1058 "parse.y"
  4487. { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-1].ttype),
  4488.                   NULL_TREE, yyvsp[-3].itype); ;
  4489.     break;}
  4490. case 172:
  4491. #line 1061 "parse.y"
  4492. { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-4].itype); ;
  4493.     break;}
  4494. case 173:
  4495. #line 1063 "parse.y"
  4496. { yyval.ttype = build_new (yyvsp[-3].ttype, groktypename(yyvsp[-1].ttype), NULL_TREE, yyvsp[-4].itype); ;
  4497.     break;}
  4498. case 174:
  4499. #line 1065 "parse.y"
  4500. { yyval.ttype = build_new (yyvsp[-4].ttype, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-5].itype); ;
  4501.     break;}
  4502. case 175:
  4503. #line 1068 "parse.y"
  4504. { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 0, yyvsp[-1].itype); ;
  4505.     break;}
  4506. case 176:
  4507. #line 1070 "parse.y"
  4508. { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 1, yyvsp[-3].itype);
  4509.           if (yychar == YYEMPTY)
  4510.             yychar = YYLEX; ;
  4511.     break;}
  4512. case 177:
  4513. #line 1074 "parse.y"
  4514. { yyval.ttype = delete_sanity (yyvsp[0].ttype, yyvsp[-2].ttype, 2, yyvsp[-4].itype);
  4515.           if (yychar == YYEMPTY)
  4516.             yychar = YYLEX; ;
  4517.     break;}
  4518. case 178:
  4519. #line 1081 "parse.y"
  4520. { yyval.ttype = yyvsp[-1].ttype; ;
  4521.     break;}
  4522. case 179:
  4523. #line 1083 "parse.y"
  4524. {
  4525.           yyval.ttype = yyvsp[-1].ttype; 
  4526.           pedwarn ("old style placement syntax, use () instead");
  4527.         ;
  4528.     break;}
  4529. case 180:
  4530. #line 1091 "parse.y"
  4531. { yyval.ttype = yyvsp[-1].ttype; ;
  4532.     break;}
  4533. case 181:
  4534. #line 1093 "parse.y"
  4535. { yyval.ttype = NULL_TREE; ;
  4536.     break;}
  4537. case 182:
  4538. #line 1095 "parse.y"
  4539. {
  4540.           cp_error ("`%T' is not a valid expression", yyvsp[-1].ttype);
  4541.           yyval.ttype = error_mark_node;
  4542.         ;
  4543.     break;}
  4544. case 183:
  4545. #line 1103 "parse.y"
  4546. {
  4547.           if (flag_ansi)
  4548.             pedwarn ("ANSI C++ forbids initialization of new expression with `='");
  4549.           yyval.ttype = yyvsp[0].ttype;
  4550.         ;
  4551.     break;}
  4552. case 184:
  4553. #line 1113 "parse.y"
  4554. { yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
  4555.           TREE_PARMLIST (yyvsp[-1].ttype) = 1;
  4556.           yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-1].ttype, 
  4557.                      NULL_TREE); ;
  4558.     break;}
  4559. case 185:
  4560. #line 1118 "parse.y"
  4561. { yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
  4562.           TREE_PARMLIST (yyvsp[-1].ttype) = 1;
  4563.           yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4564.     break;}
  4565. case 187:
  4566. #line 1126 "parse.y"
  4567. { yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, yyvsp[0].ttype); ;
  4568.     break;}
  4569. case 188:
  4570. #line 1128 "parse.y"
  4571.           tree init = build_nt (CONSTRUCTOR, NULL_TREE,
  4572.                     nreverse (yyvsp[-2].ttype)); 
  4573.           if (flag_ansi)
  4574.             pedwarn ("ANSI C++ forbids constructor-expressions");
  4575.           /* Indicate that this was a GNU C constructor expression.  */
  4576.           TREE_HAS_CONSTRUCTOR (init) = 1;
  4577.  
  4578.           yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, init);
  4579.         ;
  4580.     break;}
  4581. case 190:
  4582. #line 1143 "parse.y"
  4583. { yyval.ttype = build_headof (yyvsp[-1].ttype); ;
  4584.     break;}
  4585. case 191:
  4586. #line 1145 "parse.y"
  4587. { yyval.ttype = build_classof (yyvsp[-1].ttype); ;
  4588.     break;}
  4589. case 192:
  4590. #line 1147 "parse.y"
  4591. { if (is_aggr_typedef (yyvsp[-1].ttype, 1))
  4592.             {
  4593.               tree type = IDENTIFIER_TYPE_VALUE (yyvsp[-1].ttype);
  4594.               if (! IS_SIGNATURE(type))
  4595.             yyval.ttype = CLASSTYPE_DOSSIER (type);
  4596.               else
  4597.             {
  4598.               sorry ("signature name as argument of `classof'");
  4599.               yyval.ttype = error_mark_node;
  4600.             }
  4601.             }
  4602.           else
  4603.             yyval.ttype = error_mark_node;
  4604.         ;
  4605.     break;}
  4606. case 194:
  4607. #line 1167 "parse.y"
  4608. { yyval.ttype = build_x_binary_op (MEMBER_REF, yyval.ttype, yyvsp[0].ttype); ;
  4609.     break;}
  4610. case 195:
  4611. #line 1169 "parse.y"
  4612. { yyval.ttype = build_m_component_ref (yyval.ttype, yyvsp[0].ttype); ;
  4613.     break;}
  4614. case 196:
  4615. #line 1171 "parse.y"
  4616. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4617.     break;}
  4618. case 197:
  4619. #line 1173 "parse.y"
  4620. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4621.     break;}
  4622. case 198:
  4623. #line 1175 "parse.y"
  4624. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4625.     break;}
  4626. case 199:
  4627. #line 1177 "parse.y"
  4628. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4629.     break;}
  4630. case 200:
  4631. #line 1179 "parse.y"
  4632. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4633.     break;}
  4634. case 201:
  4635. #line 1181 "parse.y"
  4636. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4637.     break;}
  4638. case 202:
  4639. #line 1183 "parse.y"
  4640. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4641.     break;}
  4642. case 203:
  4643. #line 1185 "parse.y"
  4644. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4645.     break;}
  4646. case 204:
  4647. #line 1187 "parse.y"
  4648. { yyval.ttype = build_x_binary_op (LT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4649.     break;}
  4650. case 205:
  4651. #line 1189 "parse.y"
  4652. { yyval.ttype = build_x_binary_op (GT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4653.     break;}
  4654. case 206:
  4655. #line 1191 "parse.y"
  4656. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4657.     break;}
  4658. case 207:
  4659. #line 1193 "parse.y"
  4660. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4661.     break;}
  4662. case 208:
  4663. #line 1195 "parse.y"
  4664. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4665.     break;}
  4666. case 209:
  4667. #line 1197 "parse.y"
  4668. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4669.     break;}
  4670. case 210:
  4671. #line 1199 "parse.y"
  4672. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4673.     break;}
  4674. case 211:
  4675. #line 1201 "parse.y"
  4676. { yyval.ttype = build_x_binary_op (TRUTH_ANDIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4677.     break;}
  4678. case 212:
  4679. #line 1203 "parse.y"
  4680. { yyval.ttype = build_x_binary_op (TRUTH_ORIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4681.     break;}
  4682. case 213:
  4683. #line 1205 "parse.y"
  4684. { yyval.ttype = build_x_conditional_expr (yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  4685.     break;}
  4686. case 214:
  4687. #line 1207 "parse.y"
  4688. { yyval.ttype = build_modify_expr (yyval.ttype, NOP_EXPR, yyvsp[0].ttype); ;
  4689.     break;}
  4690. case 215:
  4691. #line 1209 "parse.y"
  4692. { register tree rval;
  4693.           if ((rval = build_opfncall (MODIFY_EXPR, LOOKUP_NORMAL, yyval.ttype, yyvsp[0].ttype,
  4694.                          make_node (yyvsp[-1].code))))
  4695.             yyval.ttype = rval;
  4696.           else
  4697.             yyval.ttype = build_modify_expr (yyval.ttype, yyvsp[-1].code, yyvsp[0].ttype); ;
  4698.     break;}
  4699. case 216:
  4700. #line 1216 "parse.y"
  4701. { yyval.ttype = build_throw (NULL_TREE); ;
  4702.     break;}
  4703. case 217:
  4704. #line 1218 "parse.y"
  4705. { yyval.ttype = build_throw (yyvsp[0].ttype); ;
  4706.     break;}
  4707. case 218:
  4708. #line 1236 "parse.y"
  4709. { yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype); ;
  4710.     break;}
  4711. case 226:
  4712. #line 1251 "parse.y"
  4713. { yyval.ttype = build_parse_node (INDIRECT_REF, yyvsp[0].ttype); ;
  4714.     break;}
  4715. case 227:
  4716. #line 1253 "parse.y"
  4717. { yyval.ttype = build_parse_node (ADDR_EXPR, yyvsp[0].ttype); ;
  4718.     break;}
  4719. case 230:
  4720. #line 1260 "parse.y"
  4721. { push_nested_class (TREE_TYPE (OP0 (yyval.ttype)), 3);
  4722.           TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
  4723.     break;}
  4724. case 231:
  4725. #line 1266 "parse.y"
  4726. {
  4727.           if (TREE_CODE (yyval.ttype) == BIT_NOT_EXPR)
  4728.             yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND (yyval.ttype, 0));
  4729.           else if (IDENTIFIER_OPNAME_P (yyval.ttype))
  4730.             {
  4731.               tree op = yyval.ttype;
  4732.               yyval.ttype = lookup_name (op, 0);
  4733.               if (yyval.ttype == NULL_TREE)
  4734.             {
  4735.               if (op != ansi_opname[ERROR_MARK])
  4736.                 error ("operator %s not defined",
  4737.                    operator_name_string (op));
  4738.               yyval.ttype = error_mark_node;
  4739.             }
  4740.             }
  4741.           else
  4742.             yyval.ttype = do_identifier (yyval.ttype);
  4743.         ;
  4744.     break;}
  4745. case 234:
  4746. #line 1287 "parse.y"
  4747. { yyval.ttype = combine_strings (yyval.ttype); ;
  4748.     break;}
  4749. case 235:
  4750. #line 1289 "parse.y"
  4751. { yyval.ttype = yyvsp[-1].ttype; ;
  4752.     break;}
  4753. case 236:
  4754. #line 1291 "parse.y"
  4755. { yyval.ttype = error_mark_node; ;
  4756.     break;}
  4757. case 237:
  4758. #line 1293 "parse.y"
  4759. { if (current_function_decl == 0)
  4760.             {
  4761.               error ("braced-group within expression allowed only inside a function");
  4762.               YYERROR;
  4763.             }
  4764.           keep_next_level ();
  4765.           yyval.ttype = expand_start_stmt_expr (); ;
  4766.     break;}
  4767. case 238:
  4768. #line 1301 "parse.y"
  4769. { tree rtl_exp;
  4770.           if (flag_ansi)
  4771.             pedwarn ("ANSI C++ forbids braced-groups within expressions");
  4772.           rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
  4773.           /* The statements have side effects, so the group does.  */
  4774.           TREE_SIDE_EFFECTS (rtl_exp) = 1;
  4775.  
  4776.           if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
  4777.             {
  4778.               /* Make a BIND_EXPR for the BLOCK already made.  */
  4779.               yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
  4780.                   NULL_TREE, rtl_exp, yyvsp[-1].ttype);
  4781.               /* Remove the block from the tree at this point.
  4782.              It gets put back at the proper place
  4783.              when the BIND_EXPR is expanded.  */
  4784.               delete_block (yyvsp[-1].ttype);
  4785.             }
  4786.           else
  4787.             yyval.ttype = yyvsp[-1].ttype;
  4788.         ;
  4789.     break;}
  4790. case 239:
  4791. #line 1322 "parse.y"
  4792. { /* [eichin:19911016.1902EST] */
  4793.                   yyval.ttype = build_x_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype, current_class_decl); 
  4794.                   /* here we instantiate_class_template as needed... */
  4795.                   do_pending_templates ();
  4796.                 ;
  4797.     break;}
  4798. case 240:
  4799. #line 1326 "parse.y"
  4800. {
  4801.                   if (TREE_CODE (yyvsp[-1].ttype) == CALL_EXPR
  4802.                       && TREE_TYPE (yyvsp[-1].ttype) != void_type_node)
  4803.                 yyval.ttype = require_complete_type (yyvsp[-1].ttype);
  4804.                   else
  4805.                     yyval.ttype = yyvsp[-1].ttype;
  4806.                 ;
  4807.     break;}
  4808. case 241:
  4809. #line 1334 "parse.y"
  4810. {
  4811.           yyval.ttype = build_x_function_call (yyval.ttype, NULL_TREE, current_class_decl);
  4812.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  4813.               && TREE_TYPE (yyval.ttype) != void_type_node)
  4814.             yyval.ttype = require_complete_type (yyval.ttype);
  4815.                 ;
  4816.     break;}
  4817. case 242:
  4818. #line 1341 "parse.y"
  4819. { yyval.ttype = grok_array_decl (yyval.ttype, yyvsp[-1].ttype); ;
  4820.     break;}
  4821. case 243:
  4822. #line 1343 "parse.y"
  4823. { /* If we get an OFFSET_REF, turn it into what it really
  4824.              means (e.g., a COMPONENT_REF).  This way if we've got,
  4825.              say, a reference to a static member that's being operated
  4826.              on, we don't end up trying to find a member operator for
  4827.              the class it's in.  */
  4828.           if (TREE_CODE (yyval.ttype) == OFFSET_REF)
  4829.             yyval.ttype = resolve_offset_ref (yyval.ttype);
  4830.           yyval.ttype = build_x_unary_op (POSTINCREMENT_EXPR, yyval.ttype); ;
  4831.     break;}
  4832. case 244:
  4833. #line 1352 "parse.y"
  4834. { if (TREE_CODE (yyval.ttype) == OFFSET_REF)
  4835.             yyval.ttype = resolve_offset_ref (yyval.ttype);
  4836.           yyval.ttype = build_x_unary_op (POSTDECREMENT_EXPR, yyval.ttype); ;
  4837.     break;}
  4838. case 245:
  4839. #line 1357 "parse.y"
  4840. { if (current_class_decl)
  4841.             {
  4842. #ifdef WARNING_ABOUT_CCD
  4843.               TREE_USED (current_class_decl) = 1;
  4844. #endif
  4845.               yyval.ttype = current_class_decl;
  4846.             }
  4847.           else if (current_function_decl
  4848.                && DECL_STATIC_FUNCTION_P (current_function_decl))
  4849.             {
  4850.               error ("`this' is unavailable for static member functions");
  4851.               yyval.ttype = error_mark_node;
  4852.             }
  4853.           else
  4854.             {
  4855.               if (current_function_decl)
  4856.             error ("invalid use of `this' in non-member function");
  4857.               else
  4858.             error ("invalid use of `this' at top level");
  4859.               yyval.ttype = error_mark_node;
  4860.             }
  4861.         ;
  4862.     break;}
  4863. case 246:
  4864. #line 1380 "parse.y"
  4865. {
  4866.           tree type;
  4867.           tree id = yyval.ttype;
  4868.  
  4869.           /* This is a C cast in C++'s `functional' notation.  */
  4870.           if (yyvsp[-1].ttype == error_mark_node)
  4871.             {
  4872.               yyval.ttype = error_mark_node;
  4873.               break;
  4874.             }
  4875. #if 0
  4876.           if (yyvsp[-1].ttype == NULL_TREE)
  4877.             {
  4878.               error ("cannot cast null list to type `%s'",
  4879.                      IDENTIFIER_POINTER (TYPE_NAME (id)));
  4880.               yyval.ttype = error_mark_node;
  4881.               break;
  4882.             }
  4883. #endif
  4884. #if 0
  4885.           /* type is not set! (mrs) */
  4886.           if (type == error_mark_node)
  4887.             yyval.ttype = error_mark_node;
  4888.           else
  4889. #endif
  4890.             {
  4891.               if (id == ridpointers[(int) RID_CONST])
  4892.                 type = build_type_variant (integer_type_node, 1, 0);
  4893.               else if (id == ridpointers[(int) RID_VOLATILE])
  4894.                 type = build_type_variant (integer_type_node, 0, 1);
  4895. #if 0
  4896.               /* should not be able to get here (mrs) */
  4897.               else if (id == ridpointers[(int) RID_FRIEND])
  4898.                 {
  4899.                   error ("cannot cast expression to `friend' type");
  4900.                   yyval.ttype = error_mark_node;
  4901.                   break;
  4902.                 }
  4903. #endif
  4904.               else my_friendly_abort (79);
  4905.               yyval.ttype = build_c_cast (type, build_compound_expr (yyvsp[-1].ttype));
  4906.             }
  4907.         ;
  4908.     break;}
  4909. case 248:
  4910. #line 1425 "parse.y"
  4911. { tree type = groktypename (yyvsp[-4].ttype);
  4912.           yyval.ttype = build_dynamic_cast (type, yyvsp[-1].ttype); ;
  4913.     break;}
  4914. case 249:
  4915. #line 1428 "parse.y"
  4916. { tree type = groktypename (yyvsp[-4].ttype);
  4917.           yyval.ttype = build_static_cast (type, yyvsp[-1].ttype); ;
  4918.     break;}
  4919. case 250:
  4920. #line 1431 "parse.y"
  4921. { tree type = groktypename (yyvsp[-4].ttype);
  4922.           yyval.ttype = build_reinterpret_cast (type, yyvsp[-1].ttype); ;
  4923.     break;}
  4924. case 251:
  4925. #line 1434 "parse.y"
  4926. { tree type = groktypename (yyvsp[-4].ttype);
  4927.           yyval.ttype = build_const_cast (type, yyvsp[-1].ttype); ;
  4928.     break;}
  4929. case 252:
  4930. #line 1437 "parse.y"
  4931. { yyval.ttype = build_typeid (yyvsp[-1].ttype); ;
  4932.     break;}
  4933. case 253:
  4934. #line 1439 "parse.y"
  4935. { tree type = groktypename (yyvsp[-1].ttype);
  4936.           yyval.ttype = get_typeid (type); ;
  4937.     break;}
  4938. case 254:
  4939. #line 1442 "parse.y"
  4940. {
  4941.         do_scoped_id:
  4942.           yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
  4943.           if (yychar == YYEMPTY)
  4944.             yychar = YYLEX;
  4945.           if (! yyval.ttype)
  4946.             {
  4947.               if (yychar == '(' || yychar == LEFT_RIGHT)
  4948.             yyval.ttype = implicitly_declare (yyvsp[0].ttype);
  4949.               else
  4950.             {
  4951.               if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node)
  4952.                 error ("undeclared variable `%s' (first use here)",
  4953.                    IDENTIFIER_POINTER (yyvsp[0].ttype));
  4954.               yyval.ttype = error_mark_node;
  4955.               /* Prevent repeated error messages.  */
  4956.               IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
  4957.             }
  4958.             }
  4959.           else
  4960.             {
  4961.               if (TREE_CODE (yyval.ttype) == ADDR_EXPR)
  4962.             assemble_external (TREE_OPERAND (yyval.ttype, 0));
  4963.               else
  4964.             assemble_external (yyval.ttype);
  4965.               TREE_USED (yyval.ttype) = 1;
  4966.             }
  4967.           if (TREE_CODE (yyval.ttype) == CONST_DECL)
  4968.             {
  4969.               /* XXX CHS - should we set TREE_USED of the constant? */
  4970.               yyval.ttype = DECL_INITIAL (yyval.ttype);
  4971.               /* This is to prevent an enum whose value is 0
  4972.              from being considered a null pointer constant.  */
  4973.               yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
  4974.               TREE_CONSTANT (yyval.ttype) = 1;
  4975.             }
  4976.  
  4977.         ;
  4978.     break;}
  4979. case 255:
  4980. #line 1481 "parse.y"
  4981. {
  4982.           got_scope = NULL_TREE;
  4983.           if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
  4984.             goto do_scoped_id;
  4985.           yyval.ttype = yyvsp[0].ttype;
  4986.         ;
  4987.     break;}
  4988. case 256:
  4989. #line 1488 "parse.y"
  4990. { yyval.ttype = build_offset_ref (OP0 (yyval.ttype), OP1 (yyval.ttype)); ;
  4991.     break;}
  4992. case 257:
  4993. #line 1490 "parse.y"
  4994. { yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), yyvsp[-1].ttype); ;
  4995.     break;}
  4996. case 258:
  4997. #line 1492 "parse.y"
  4998. { yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), NULL_TREE); ;
  4999.     break;}
  5000. case 259:
  5001. #line 1494 "parse.y"
  5002. { yyval.ttype = build_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ;
  5003.     break;}
  5004. case 260:
  5005. #line 1496 "parse.y"
  5006. { yyval.ttype = build_object_ref (yyval.ttype, OP0 (yyvsp[0].ttype), OP1 (yyvsp[0].ttype)); ;
  5007.     break;}
  5008. case 261:
  5009. #line 1498 "parse.y"
  5010. {
  5011. #if 0
  5012.           /* This is a future direction of this code, but because
  5013.              build_x_function_call cannot always undo what is done
  5014.              in build_component_ref entirely yet, we cannot do this. */
  5015.           yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-3].ttype, NULL_TREE, 1), yyvsp[-1].ttype, yyval.ttype);
  5016.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  5017.               && TREE_TYPE (yyval.ttype) != void_type_node)
  5018.             yyval.ttype = require_complete_type (yyval.ttype);
  5019. #else
  5020.           yyval.ttype = build_method_call (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE,
  5021.                       (LOOKUP_NORMAL|LOOKUP_AGGR));
  5022. #endif
  5023.         ;
  5024.     break;}
  5025. case 262:
  5026. #line 1513 "parse.y"
  5027. {
  5028. #if 0
  5029.           /* This is a future direction of this code, but because
  5030.              build_x_function_call cannot always undo what is done
  5031.              in build_component_ref entirely yet, we cannot do this. */
  5032.           yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, 1), NULL_TREE, yyval.ttype);
  5033.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  5034.               && TREE_TYPE (yyval.ttype) != void_type_node)
  5035.             yyval.ttype = require_complete_type (yyval.ttype);
  5036. #else
  5037.           yyval.ttype = build_method_call (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, NULL_TREE,
  5038.                       (LOOKUP_NORMAL|LOOKUP_AGGR));
  5039. #endif
  5040.         ;
  5041.     break;}
  5042. case 263:
  5043. #line 1528 "parse.y"
  5044. {
  5045.           if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-3].ttype))))
  5046.             {
  5047.               warning ("signature name in scope resolution ignored");
  5048.               yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype, NULL_TREE,
  5049.                           (LOOKUP_NORMAL|LOOKUP_AGGR));
  5050.             }
  5051.           else
  5052.             yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
  5053.         ;
  5054.     break;}
  5055. case 264:
  5056. #line 1539 "parse.y"
  5057. {
  5058.           if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-1].ttype))))
  5059.             {
  5060.               warning ("signature name in scope resolution ignored");
  5061.               yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-1].ttype), NULL_TREE, NULL_TREE,
  5062.                           (LOOKUP_NORMAL|LOOKUP_AGGR));
  5063.             }
  5064.           else
  5065.             yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), NULL_TREE);
  5066.         ;
  5067.     break;}
  5068. case 265:
  5069. #line 1551 "parse.y"
  5070.           if (TREE_CODE (TREE_TYPE (yyvsp[-3].ttype)) 
  5071.               != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-1].ttype))))
  5072.             cp_error ("`%E' is not of type `%T'", yyvsp[-3].ttype, yyvsp[-1].ttype);
  5073.           yyval.ttype = convert (void_type_node, yyvsp[-3].ttype);
  5074.         ;
  5075.     break;}
  5076. case 266:
  5077. #line 1558 "parse.y"
  5078.           if (yyvsp[-4].ttype != yyvsp[-1].ttype)
  5079.             cp_error ("destructor specifier `%T::~%T()' must have matching names", yyvsp[-4].ttype, yyvsp[-1].ttype);
  5080.           if (TREE_CODE (TREE_TYPE (yyvsp[-5].ttype))
  5081.               != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-4].ttype))))
  5082.             cp_error ("`%E' is not of type `%T'", yyvsp[-5].ttype, yyvsp[-4].ttype);
  5083.           yyval.ttype = convert (void_type_node, yyvsp[-5].ttype);
  5084.         ;
  5085.     break;}
  5086. case 267:
  5087. #line 1607 "parse.y"
  5088. { yyval.itype = 0; ;
  5089.     break;}
  5090. case 268:
  5091. #line 1609 "parse.y"
  5092. { got_scope = NULL_TREE; yyval.itype = 1; ;
  5093.     break;}
  5094. case 269:
  5095. #line 1613 "parse.y"
  5096. { yyval.itype = 0; ;
  5097.     break;}
  5098. case 270:
  5099. #line 1615 "parse.y"
  5100. { got_scope = NULL_TREE; yyval.itype = 1; ;
  5101.     break;}
  5102. case 271:
  5103. #line 1620 "parse.y"
  5104. { yyval.ttype = true_node; ;
  5105.     break;}
  5106. case 272:
  5107. #line 1622 "parse.y"
  5108. { yyval.ttype = false_node; ;
  5109.     break;}
  5110. case 274:
  5111. #line 1629 "parse.y"
  5112. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  5113.     break;}
  5114. case 275:
  5115. #line 1634 "parse.y"
  5116. {
  5117.           if (! current_function_parms_stored)
  5118.             store_parm_decls ();
  5119.           setup_vtbl_ptr ();
  5120.           /* Always keep the BLOCK node associated with the outermost
  5121.              pair of curley braces of a function.  These are needed
  5122.              for correct operation of dwarfout.c.  */
  5123.           keep_next_level ();
  5124.         ;
  5125.     break;}
  5126. case 277:
  5127. #line 1647 "parse.y"
  5128. {
  5129.           yyval.ttype = build_x_arrow (yyval.ttype);
  5130.         ;
  5131.     break;}
  5132. case 278:
  5133. #line 1655 "parse.y"
  5134. { tree d = get_decl_list (yyvsp[-2].ttype);
  5135.           int yes = suspend_momentary ();
  5136.           d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
  5137.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  5138.           resume_momentary (yes);
  5139.           if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
  5140.             note_got_semicolon (yyvsp[-2].ttype);
  5141.         ;
  5142.     break;}
  5143. case 279:
  5144. #line 1664 "parse.y"
  5145. { tree d = yyvsp[-2].ttype;
  5146.           int yes = suspend_momentary ();
  5147.           d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
  5148.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  5149.           resume_momentary (yes);
  5150.           note_list_got_semicolon (yyvsp[-2].ttype);
  5151.         ;
  5152.     break;}
  5153. case 280:
  5154. #line 1672 "parse.y"
  5155. {
  5156.           resume_momentary (yyvsp[-1].itype);
  5157.           if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
  5158.             note_got_semicolon (yyvsp[-2].ttype);
  5159.         ;
  5160.     break;}
  5161. case 281:
  5162. #line 1678 "parse.y"
  5163. {
  5164.           resume_momentary (yyvsp[-1].itype);
  5165.           note_list_got_semicolon (yyvsp[-2].ttype);
  5166.         ;
  5167.     break;}
  5168. case 282:
  5169. #line 1683 "parse.y"
  5170. { resume_momentary (yyvsp[-1].itype); ;
  5171.     break;}
  5172. case 283:
  5173. #line 1685 "parse.y"
  5174. {
  5175.           shadow_tag (yyvsp[-1].ttype);
  5176.           note_list_got_semicolon (yyvsp[-1].ttype);
  5177.         ;
  5178.     break;}
  5179. case 284:
  5180. #line 1690 "parse.y"
  5181. { warning ("empty declaration"); ;
  5182.     break;}
  5183. case 287:
  5184. #line 1704 "parse.y"
  5185. { yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, empty_parms (),
  5186.                      NULL_TREE); ;
  5187.     break;}
  5188. case 288:
  5189. #line 1707 "parse.y"
  5190. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), 
  5191.                      NULL_TREE); ;
  5192.     break;}
  5193. case 289:
  5194. #line 1714 "parse.y"
  5195. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  5196.     break;}
  5197. case 290:
  5198. #line 1716 "parse.y"
  5199. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  5200.     break;}
  5201. case 291:
  5202. #line 1718 "parse.y"
  5203. { yyval.ttype = build_decl_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
  5204.     break;}
  5205. case 292:
  5206. #line 1720 "parse.y"
  5207. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  5208.     break;}
  5209. case 293:
  5210. #line 1722 "parse.y"
  5211. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  5212.     break;}
  5213. case 296:
  5214. #line 1735 "parse.y"
  5215. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5216.     break;}
  5217. case 297:
  5218. #line 1737 "parse.y"
  5219. { yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
  5220.     break;}
  5221. case 298:
  5222. #line 1739 "parse.y"
  5223. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5224.     break;}
  5225. case 299:
  5226. #line 1741 "parse.y"
  5227. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5228.     break;}
  5229. case 300:
  5230. #line 1743 "parse.y"
  5231. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-2].ttype, 
  5232.                        chainon (yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype))); ;
  5233.     break;}
  5234. case 301:
  5235. #line 1749 "parse.y"
  5236. { if (extra_warnings)
  5237.             warning ("`%s' is not at beginning of declaration",
  5238.                  IDENTIFIER_POINTER (yyval.ttype));
  5239.           yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  5240.     break;}
  5241. case 302:
  5242. #line 1754 "parse.y"
  5243. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5244.     break;}
  5245. case 303:
  5246. #line 1756 "parse.y"
  5247. { if (extra_warnings)
  5248.             warning ("`%s' is not at beginning of declaration",
  5249.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  5250.           yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5251.     break;}
  5252. case 304:
  5253. #line 1768 "parse.y"
  5254. { TREE_STATIC (yyval.ttype) = 1; ;
  5255.     break;}
  5256. case 305:
  5257. #line 1770 "parse.y"
  5258. { yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
  5259.     break;}
  5260. case 306:
  5261. #line 1772 "parse.y"
  5262. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
  5263.           TREE_STATIC (yyval.ttype) = 1; ;
  5264.     break;}
  5265. case 307:
  5266. #line 1775 "parse.y"
  5267. { if (extra_warnings && TREE_STATIC (yyval.ttype))
  5268.             warning ("`%s' is not at beginning of declaration",
  5269.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  5270.           yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
  5271.           TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
  5272.     break;}
  5273. case 308:
  5274. #line 1791 "parse.y"
  5275. { yyval.ttype = get_decl_list (yyval.ttype); ;
  5276.     break;}
  5277. case 309:
  5278. #line 1793 "parse.y"
  5279. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5280.     break;}
  5281. case 310:
  5282. #line 1795 "parse.y"
  5283. { yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
  5284.     break;}
  5285. case 311:
  5286. #line 1797 "parse.y"
  5287. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5288.     break;}
  5289. case 312:
  5290. #line 1802 "parse.y"
  5291. { yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  5292.     break;}
  5293. case 313:
  5294. #line 1804 "parse.y"
  5295. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5296.     break;}
  5297. case 317:
  5298. #line 1815 "parse.y"
  5299. { yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
  5300.           if (flag_ansi)
  5301.             pedwarn ("ANSI C++ forbids `typeof'"); ;
  5302.     break;}
  5303. case 318:
  5304. #line 1819 "parse.y"
  5305. { yyval.ttype = groktypename (yyvsp[-1].ttype);
  5306.           if (flag_ansi)
  5307.             pedwarn ("ANSI C++ forbids `typeof'"); ;
  5308.     break;}
  5309. case 319:
  5310. #line 1823 "parse.y"
  5311. { tree type = TREE_TYPE (yyvsp[-1].ttype);
  5312.  
  5313.           if (IS_AGGR_TYPE (type))
  5314.             {
  5315.               sorry ("sigof type specifier");
  5316.               yyval.ttype = type;
  5317.             }
  5318.           else
  5319.             {
  5320.               error ("`sigof' applied to non-aggregate expression");
  5321.               yyval.ttype = error_mark_node;
  5322.             }
  5323.         ;
  5324.     break;}
  5325. case 320:
  5326. #line 1837 "parse.y"
  5327. { tree type = groktypename (yyvsp[-1].ttype);
  5328.  
  5329.           if (IS_AGGR_TYPE (type))
  5330.             {
  5331.               sorry ("sigof type specifier");
  5332.               yyval.ttype = type;
  5333.             }
  5334.           else
  5335.             {
  5336.               error("`sigof' applied to non-aggregate type");
  5337.               yyval.ttype = error_mark_node;
  5338.             }
  5339.         ;
  5340.     break;}
  5341. case 330:
  5342. #line 1876 "parse.y"
  5343. { yyval.ttype = NULL_TREE; ;
  5344.     break;}
  5345. case 331:
  5346. #line 1878 "parse.y"
  5347. { if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype); yyval.ttype = yyvsp[-1].ttype; ;
  5348.     break;}
  5349. case 332:
  5350. #line 1883 "parse.y"
  5351. { current_declspecs = yyvsp[-5].ttype;
  5352.           if (TREE_CODE (current_declspecs) != TREE_LIST)
  5353.             current_declspecs = get_decl_list (current_declspecs);
  5354.           if (have_extern_spec && !used_extern_spec)
  5355.             {
  5356.               current_declspecs = decl_tree_cons
  5357.             (NULL_TREE, get_identifier ("extern"), 
  5358.              current_declspecs);
  5359.               used_extern_spec = 1;
  5360.             }
  5361.           yyvsp[0].itype = suspend_momentary ();
  5362.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5363.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5364.     break;}
  5365. case 333:
  5366. #line 1898 "parse.y"
  5367. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5368.           yyval.itype = yyvsp[-2].itype; ;
  5369.     break;}
  5370. case 334:
  5371. #line 1901 "parse.y"
  5372. { tree d;
  5373.           current_declspecs = yyvsp[-4].ttype;
  5374.           if (TREE_CODE (current_declspecs) != TREE_LIST)
  5375.             current_declspecs = get_decl_list (current_declspecs);
  5376.           if (have_extern_spec && !used_extern_spec)
  5377.             {
  5378.               current_declspecs = decl_tree_cons
  5379.             (NULL_TREE, get_identifier ("extern"), 
  5380.              current_declspecs);
  5381.               used_extern_spec = 1;
  5382.             }
  5383.           yyval.itype = suspend_momentary ();
  5384.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5385.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5386.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5387.     break;}
  5388. case 335:
  5389. #line 1920 "parse.y"
  5390. { yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5391.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5392.     break;}
  5393. case 336:
  5394. #line 1924 "parse.y"
  5395. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0); ;
  5396.     break;}
  5397. case 337:
  5398. #line 1926 "parse.y"
  5399. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5400.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype);
  5401.           finish_decl (yyval.ttype, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5402.     break;}
  5403. case 338:
  5404. #line 1933 "parse.y"
  5405. { current_declspecs = yyvsp[-5].ttype;
  5406.           yyvsp[0].itype = suspend_momentary ();
  5407.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5408.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5409.     break;}
  5410. case 339:
  5411. #line 1939 "parse.y"
  5412. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5413.           yyval.itype = yyvsp[-2].itype; ;
  5414.     break;}
  5415. case 340:
  5416. #line 1942 "parse.y"
  5417. { tree d;
  5418.           current_declspecs = yyvsp[-4].ttype;
  5419.           yyval.itype = suspend_momentary ();
  5420.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5421.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5422.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5423.     break;}
  5424. case 341:
  5425. #line 1952 "parse.y"
  5426. { current_declspecs = NULL_TREE;
  5427.           yyvsp[0].itype = suspend_momentary ();
  5428.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5429.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5430.     break;}
  5431. case 342:
  5432. #line 1958 "parse.y"
  5433. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5434.           yyval.itype = yyvsp[-2].itype; ;
  5435.     break;}
  5436. case 343:
  5437. #line 1961 "parse.y"
  5438. { tree d;
  5439.           current_declspecs = NULL_TREE;
  5440.           yyval.itype = suspend_momentary ();
  5441.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5442.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5443.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5444.     break;}
  5445. case 344:
  5446. #line 1973 "parse.y"
  5447. { yyval.ttype = NULL_TREE; ;
  5448.     break;}
  5449. case 345:
  5450. #line 1975 "parse.y"
  5451. { yyval.ttype = yyvsp[0].ttype; ;
  5452.     break;}
  5453. case 346:
  5454. #line 1980 "parse.y"
  5455. { yyval.ttype = yyvsp[0].ttype; ;
  5456.     break;}
  5457. case 347:
  5458. #line 1982 "parse.y"
  5459. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  5460.     break;}
  5461. case 348:
  5462. #line 1987 "parse.y"
  5463. { yyval.ttype = yyvsp[-2].ttype; ;
  5464.     break;}
  5465. case 349:
  5466. #line 1992 "parse.y"
  5467. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  5468.     break;}
  5469. case 350:
  5470. #line 1994 "parse.y"
  5471. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  5472.     break;}
  5473. case 351:
  5474. #line 1999 "parse.y"
  5475. { yyval.ttype = NULL_TREE; ;
  5476.     break;}
  5477. case 352:
  5478. #line 2001 "parse.y"
  5479. { yyval.ttype = yyvsp[0].ttype; ;
  5480.     break;}
  5481. case 353:
  5482. #line 2003 "parse.y"
  5483. { yyval.ttype = tree_cons (yyvsp[-3].ttype, NULL_TREE, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
  5484.     break;}
  5485. case 354:
  5486. #line 2005 "parse.y"
  5487. { yyval.ttype = tree_cons (yyvsp[-5].ttype, NULL_TREE, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
  5488.     break;}
  5489. case 355:
  5490. #line 2007 "parse.y"
  5491. { yyval.ttype = tree_cons (yyvsp[-3].ttype, NULL_TREE, yyvsp[-1].ttype); ;
  5492.     break;}
  5493. case 360:
  5494. #line 2023 "parse.y"
  5495. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  5496.     break;}
  5497. case 361:
  5498. #line 2025 "parse.y"
  5499. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  5500.     break;}
  5501. case 363:
  5502. #line 2031 "parse.y"
  5503. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
  5504.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5505.     break;}
  5506. case 364:
  5507. #line 2034 "parse.y"
  5508. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-1].ttype));
  5509.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5510.     break;}
  5511. case 365:
  5512. #line 2037 "parse.y"
  5513. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype));
  5514.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5515.     break;}
  5516. case 366:
  5517. #line 2040 "parse.y"
  5518. { yyval.ttype = NULL_TREE; ;
  5519.     break;}
  5520. case 367:
  5521. #line 2047 "parse.y"
  5522. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  5523.     break;}
  5524. case 368:
  5525. #line 2049 "parse.y"
  5526. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5527.     break;}
  5528. case 369:
  5529. #line 2052 "parse.y"
  5530. { yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  5531.     break;}
  5532. case 370:
  5533. #line 2054 "parse.y"
  5534. { yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
  5535.     break;}
  5536. case 371:
  5537. #line 2056 "parse.y"
  5538. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  5539.     break;}
  5540. case 372:
  5541. #line 2058 "parse.y"
  5542. { yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
  5543.     break;}
  5544. case 373:
  5545. #line 2063 "parse.y"
  5546. { yyvsp[0].itype = suspend_momentary ();
  5547.           yyval.ttype = start_enum (yyvsp[-1].ttype); ;
  5548.     break;}
  5549. case 374:
  5550. #line 2066 "parse.y"
  5551. { yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
  5552.           resume_momentary ((int) yyvsp[-4].itype);
  5553.           check_for_missing_semicolon (yyvsp[-3].ttype); ;
  5554.     break;}
  5555. case 375:
  5556. #line 2070 "parse.y"
  5557. { yyval.ttype = finish_enum (start_enum (yyvsp[-2].ttype), NULL_TREE);
  5558.           check_for_missing_semicolon (yyval.ttype); ;
  5559.     break;}
  5560. case 376:
  5561. #line 2073 "parse.y"
  5562. { yyvsp[0].itype = suspend_momentary ();
  5563.           yyval.ttype = start_enum (make_anon_name ()); ;
  5564.     break;}
  5565. case 377:
  5566. #line 2076 "parse.y"
  5567. { yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
  5568.           resume_momentary ((int) yyvsp[-5].itype);
  5569.           check_for_missing_semicolon (yyvsp[-3].ttype); ;
  5570.     break;}
  5571. case 378:
  5572. #line 2080 "parse.y"
  5573. { yyval.ttype = finish_enum (start_enum (make_anon_name()), NULL_TREE);
  5574.           check_for_missing_semicolon (yyval.ttype); ;
  5575.     break;}
  5576. case 379:
  5577. #line 2083 "parse.y"
  5578. { yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 0); ;
  5579.     break;}
  5580. case 380:
  5581. #line 2085 "parse.y"
  5582. { yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 0); ;
  5583.     break;}
  5584. case 381:
  5585. #line 2089 "parse.y"
  5586. {
  5587.           int semi;
  5588.           tree id;
  5589.  
  5590. #if 0
  5591.           /* Need to rework class nesting in the
  5592.              presence of nested classes, etc.  */
  5593.           shadow_tag (CLASSTYPE_AS_LIST (yyval.ttype)); */
  5594. #endif
  5595.           if (yychar == YYEMPTY)
  5596.             yychar = YYLEX;
  5597.           semi = yychar == ';';
  5598.           /* finish_struct nukes this anyway; if
  5599.              finish_exception does too, then it can go. */
  5600.           if (semi)
  5601.             note_got_semicolon (yyval.ttype);
  5602.  
  5603.           if (TREE_CODE (yyval.ttype) == ENUMERAL_TYPE)
  5604.             /* $$ = $1 from default rule.  */;
  5605.           else if (CLASSTYPE_DECLARED_EXCEPTION (yyval.ttype))
  5606.             {
  5607.             }
  5608.           else
  5609.             {
  5610.               yyval.ttype = finish_struct (yyval.ttype, yyvsp[-1].ttype, semi);
  5611.               if (semi) note_got_semicolon (yyval.ttype);
  5612.             }
  5613.  
  5614.           pop_obstacks ();
  5615.  
  5616.           id = TYPE_IDENTIFIER (yyval.ttype);
  5617.           if (id && IDENTIFIER_TEMPLATE (id))
  5618.             {
  5619.               tree decl;
  5620.  
  5621.               /* I don't know if the copying of this TYPE_DECL is
  5622.                * really needed.  However, it's such a small per-
  5623.                * formance penalty that the extra safety is a bargain.
  5624.                * - niklas@appli.se
  5625.                */
  5626.               push_obstacks (&permanent_obstack, &permanent_obstack);
  5627.               decl = copy_node (lookup_name (id, 0));
  5628.               if (DECL_LANG_SPECIFIC (decl))
  5629.             copy_lang_decl (decl);
  5630.               pop_obstacks ();
  5631.               undo_template_name_overload (id, 0);
  5632.               pushdecl_top_level (decl);
  5633.             }
  5634.           if (! semi)
  5635.             check_for_missing_semicolon (yyval.ttype); ;
  5636.     break;}
  5637. case 382:
  5638. #line 2140 "parse.y"
  5639. {
  5640. #if 0
  5641.   /* It's no longer clear what the following error is supposed to
  5642.      accomplish.  If it turns out to be needed, add a comment why.  */
  5643.           if (TYPE_BINFO_BASETYPES (yyval.ttype) && !TYPE_SIZE (yyval.ttype))
  5644.             {
  5645.               error ("incomplete definition of type `%s'",
  5646.                  TYPE_NAME_STRING (yyval.ttype));
  5647.               yyval.ttype = error_mark_node;
  5648.             }
  5649. #endif
  5650.         ;
  5651.     break;}
  5652. case 386:
  5653. #line 2162 "parse.y"
  5654. { if (pedantic) pedwarn ("comma at end of enumerator list"); ;
  5655.     break;}
  5656. case 388:
  5657. #line 2167 "parse.y"
  5658. { error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5659.     break;}
  5660. case 389:
  5661. #line 2169 "parse.y"
  5662. { error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5663.     break;}
  5664. case 390:
  5665. #line 2171 "parse.y"
  5666. { error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5667.     break;}
  5668. case 391:
  5669. #line 2173 "parse.y"
  5670. { error ("no body nor ';' separates two class, struct or union declarations"); ;
  5671.     break;}
  5672. case 392:
  5673. #line 2178 "parse.y"
  5674.           yyungetc (';', 1); current_aggr = yyval.ttype; yyval.ttype = yyvsp[-1].ttype; 
  5675.           if (yyvsp[-3].ttype == ridpointers[(int) RID_TEMPLATE])
  5676.             instantiate_class_template (yyval.ttype, 2);
  5677.         ;
  5678.     break;}
  5679. case 393:
  5680. #line 2187 "parse.y"
  5681. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5682.     break;}
  5683. case 394:
  5684. #line 2189 "parse.y"
  5685. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5686.     break;}
  5687. case 395:
  5688. #line 2191 "parse.y"
  5689. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5690.     break;}
  5691. case 396:
  5692. #line 2193 "parse.y"
  5693. { yyungetc ('{', 1);
  5694.         aggr2:
  5695.           current_aggr = yyval.ttype;
  5696.           yyval.ttype = yyvsp[-1].ttype;
  5697.           overload_template_name (yyval.ttype, 0); ;
  5698.     break;}
  5699. case 397:
  5700. #line 2199 "parse.y"
  5701. { yyungetc (':', 1); goto aggr2; ;
  5702.     break;}
  5703. case 399:
  5704. #line 2205 "parse.y"
  5705. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5706.     break;}
  5707. case 400:
  5708. #line 2209 "parse.y"
  5709. { yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE, 1); ;
  5710.     break;}
  5711. case 401:
  5712. #line 2212 "parse.y"
  5713. { yyval.ttype = xref_defn_tag (current_aggr, yyvsp[0].ttype, NULL_TREE); ;
  5714.     break;}
  5715. case 402:
  5716. #line 2217 "parse.y"
  5717. {
  5718.           if (yyvsp[0].ttype)
  5719.             yyval.ttype = xref_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype, 1);
  5720.           else
  5721.             yyval.ttype = yyvsp[-1].ttype;
  5722.         ;
  5723.     break;}
  5724. case 403:
  5725. #line 2226 "parse.y"
  5726. {
  5727.           if (yyvsp[0].ttype)
  5728.             yyval.ttype = xref_defn_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype);
  5729.           else
  5730.             yyval.ttype = yyvsp[-1].ttype;
  5731.         ;
  5732.     break;}
  5733. case 404:
  5734. #line 2235 "parse.y"
  5735. { yyval.ttype = xref_tag (yyval.ttype, make_anon_name (), NULL_TREE, 0);
  5736.           yyungetc ('{', 1); ;
  5737.     break;}
  5738. case 407:
  5739. #line 2243 "parse.y"
  5740. { yyval.ttype = NULL_TREE; ;
  5741.     break;}
  5742. case 408:
  5743. #line 2245 "parse.y"
  5744. { yyungetc(':', 1); yyval.ttype = NULL_TREE; ;
  5745.     break;}
  5746. case 409:
  5747. #line 2247 "parse.y"
  5748. { yyval.ttype = yyvsp[0].ttype; ;
  5749.     break;}
  5750. case 411:
  5751. #line 2253 "parse.y"
  5752. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  5753.     break;}
  5754. case 412:
  5755. #line 2258 "parse.y"
  5756. {
  5757.           tree type;
  5758.          do_base_class1:
  5759.           type = IDENTIFIER_TYPE_VALUE (yyval.ttype);
  5760.           if (! is_aggr_typedef (yyval.ttype, 1))
  5761.             yyval.ttype = NULL_TREE;
  5762.           else if (current_aggr == signature_type_node
  5763.                && (! type) && (! IS_SIGNATURE (type)))
  5764.             {
  5765.               error ("class name not allowed as base signature");
  5766.               yyval.ttype = NULL_TREE;
  5767.             }
  5768.           else if (current_aggr == signature_type_node)
  5769.             {
  5770.               sorry ("signature inheritance, base type `%s' ignored",
  5771.                  IDENTIFIER_POINTER (yyval.ttype));
  5772.               yyval.ttype = build_tree_list ((tree)access_public, yyval.ttype);
  5773.             }
  5774.           else if (type && IS_SIGNATURE (type))
  5775.             {
  5776.               error ("signature name not allowed as base class");
  5777.               yyval.ttype = NULL_TREE;
  5778.             }
  5779.           else
  5780.             yyval.ttype = build_tree_list ((tree)access_default, yyval.ttype);
  5781.         ;
  5782.     break;}
  5783. case 413:
  5784. #line 2285 "parse.y"
  5785. {
  5786.           tree type;
  5787.          do_base_class2:
  5788.           type = IDENTIFIER_TYPE_VALUE (yyvsp[0].ttype);
  5789.           if (current_aggr == signature_type_node)
  5790.             error ("access and source specifiers not allowed in signature");
  5791.           if (! is_aggr_typedef (yyvsp[0].ttype, 1))
  5792.             yyval.ttype = NULL_TREE;
  5793.           else if (current_aggr == signature_type_node
  5794.                && (! type) && (! IS_SIGNATURE (type)))
  5795.             {
  5796.               error ("class name not allowed as base signature");
  5797.               yyval.ttype = NULL_TREE;
  5798.             }
  5799.           else if (current_aggr == signature_type_node)
  5800.             {
  5801.               sorry ("signature inheritance, base type `%s' ignored",
  5802.                  IDENTIFIER_POINTER (yyval.ttype));
  5803.               yyval.ttype = build_tree_list ((tree)access_public, yyvsp[0].ttype);
  5804.             }
  5805.           else if (type && IS_SIGNATURE (type))
  5806.             {
  5807.               error ("signature name not allowed as base class");
  5808.               yyval.ttype = NULL_TREE;
  5809.             }
  5810.           else
  5811.             yyval.ttype = build_tree_list ((tree) yyval.ttype, yyvsp[0].ttype);
  5812.         ;
  5813.     break;}
  5814. case 415:
  5815. #line 2318 "parse.y"
  5816. {
  5817.           if (current_aggr == signature_type_node)
  5818.             {
  5819.               if (IS_AGGR_TYPE (TREE_TYPE (yyvsp[-1].ttype)))
  5820.             {
  5821.               sorry ("`sigof' as base signature specifier");
  5822.               /* need to return some dummy signature identifier */
  5823.               yyval.ttype = yyvsp[-1].ttype;
  5824.             }
  5825.               else
  5826.             {
  5827.               error ("`sigof' applied to non-aggregate expression");
  5828.               yyval.ttype = error_mark_node;
  5829.             }
  5830.             }
  5831.           else
  5832.             {
  5833.               error ("`sigof' in struct or class declaration");
  5834.               yyval.ttype = error_mark_node;
  5835.             }
  5836.         ;
  5837.     break;}
  5838. case 416:
  5839. #line 2340 "parse.y"
  5840. {
  5841.           if (current_aggr == signature_type_node)
  5842.             {
  5843.               if (IS_AGGR_TYPE (groktypename (yyvsp[-1].ttype)))
  5844.             {
  5845.               sorry ("`sigof' as base signature specifier");
  5846.               /* need to return some dummy signature identifier */
  5847.               yyval.ttype = yyvsp[-1].ttype;
  5848.             }
  5849.               else
  5850.             {
  5851.               error ("`sigof' applied to non-aggregate expression");
  5852.               yyval.ttype = error_mark_node;
  5853.             }
  5854.             }
  5855.           else
  5856.             {
  5857.               error ("`sigof' in struct or class declaration");
  5858.               yyval.ttype = error_mark_node;
  5859.             }
  5860.         ;
  5861.     break;}
  5862. case 418:
  5863. #line 2366 "parse.y"
  5864. { if (yyval.ttype != ridpointers[(int)RID_VIRTUAL])
  5865.             sorry ("non-virtual access");
  5866.           yyval.itype = access_default_virtual; ;
  5867.     break;}
  5868. case 419:
  5869. #line 2370 "parse.y"
  5870. { int err = 0;
  5871.           if (yyvsp[0].itype == access_protected)
  5872.             {
  5873.               warning ("`protected' access not implemented");
  5874.               yyvsp[0].itype = access_public;
  5875.               err++;
  5876.             }
  5877.           else if (yyvsp[0].itype == access_public)
  5878.             {
  5879.               if (yyvsp[-1].itype == access_private)
  5880.             {
  5881.             mixed:
  5882.               error ("base class cannot be public and private");
  5883.             }
  5884.               else if (yyvsp[-1].itype == access_default_virtual)
  5885.             yyval.itype = access_public_virtual;
  5886.             }
  5887.           else /* $2 == access_private */
  5888.             {
  5889.               if (yyvsp[-1].itype == access_public)
  5890.             goto mixed;
  5891.               else if (yyvsp[-1].itype == access_default_virtual)
  5892.             yyval.itype = access_private_virtual;
  5893.             }
  5894.         ;
  5895.     break;}
  5896. case 420:
  5897. #line 2396 "parse.y"
  5898. { if (yyvsp[0].ttype != ridpointers[(int)RID_VIRTUAL])
  5899.             sorry ("non-virtual access");
  5900.           if (yyval.itype == access_public)
  5901.             yyval.itype = access_public_virtual;
  5902.           else if (yyval.itype == access_private)
  5903.             yyval.itype = access_private_virtual; ;
  5904.     break;}
  5905. case 421:
  5906. #line 2405 "parse.y"
  5907. { tree t = yyvsp[-1].ttype;
  5908.           push_obstacks_nochange ();
  5909.           end_temporary_allocation ();
  5910.  
  5911.           if (! IS_AGGR_TYPE (t))
  5912.             {
  5913.               t = yyvsp[-1].ttype = make_lang_type (RECORD_TYPE);
  5914.               TYPE_NAME (t) = get_identifier ("erroneous type");
  5915.             }
  5916.           if (TYPE_SIZE (t))
  5917.             duplicate_tag_error (t);
  5918.                   if (TYPE_SIZE (t) || TYPE_BEING_DEFINED (t))
  5919.                     {
  5920.                       t = make_lang_type (TREE_CODE (t));
  5921.                       pushtag (TYPE_IDENTIFIER (yyvsp[-1].ttype), t, 0);
  5922.                       yyvsp[-1].ttype = t;
  5923.                     }
  5924.           pushclass (t, 0);
  5925.           TYPE_BEING_DEFINED (t) = 1;
  5926.           /* Reset the interface data, at the earliest possible
  5927.              moment, as it might have been set via a class foo;
  5928.              before.  */
  5929.           /* Don't change signatures.  */
  5930.           if (! IS_SIGNATURE (t))
  5931.             {
  5932.               extern tree pending_vtables;
  5933.               int needs_writing;
  5934.               tree name = TYPE_IDENTIFIER (t);
  5935.  
  5936.               CLASSTYPE_INTERFACE_ONLY (t) = interface_only;
  5937.               SET_CLASSTYPE_INTERFACE_UNKNOWN_X (t, interface_unknown);
  5938.  
  5939.               /* Record how to set the access of this class's
  5940.              virtual functions.  If write_virtuals == 2 or 3, then
  5941.              inline virtuals are ``extern inline''.  */
  5942.               switch (write_virtuals)
  5943.             {
  5944.             case 0:
  5945.             case 1:
  5946.               needs_writing = 1;
  5947.               break;
  5948.             case 2:
  5949.               needs_writing = !! value_member (name, pending_vtables);
  5950.               break;
  5951.             case 3:
  5952.               needs_writing = ! CLASSTYPE_INTERFACE_ONLY (t)
  5953.                 && CLASSTYPE_INTERFACE_KNOWN (t);
  5954.               break;
  5955.             default:
  5956.               needs_writing = 0;
  5957.             }
  5958.               CLASSTYPE_VTABLE_NEEDS_WRITING (t) = needs_writing;
  5959.             }
  5960. #if 0
  5961.           t = TYPE_IDENTIFIER (yyvsp[-1].ttype);
  5962.           if (t && IDENTIFIER_TEMPLATE (t))
  5963.             overload_template_name (t, 1);
  5964. #endif
  5965.         ;
  5966.     break;}
  5967. case 422:
  5968. #line 2468 "parse.y"
  5969. { yyval.ttype = NULL_TREE; ;
  5970.     break;}
  5971. case 423:
  5972. #line 2470 "parse.y"
  5973. {
  5974.           if (current_aggr == signature_type_node)
  5975.             yyval.ttype = build_tree_list ((tree) access_public, yyval.ttype);
  5976.           else
  5977.             yyval.ttype = build_tree_list ((tree) access_default, yyval.ttype);
  5978.         ;
  5979.     break;}
  5980. case 424:
  5981. #line 2477 "parse.y"
  5982. {
  5983.           tree visspec = (tree) yyvsp[-2].itype;
  5984.  
  5985.           if (current_aggr == signature_type_node)
  5986.             {
  5987.               error ("access specifier not allowed in signature");
  5988.               visspec = (tree) access_public;
  5989.             }
  5990.           yyval.ttype = chainon (yyval.ttype, build_tree_list (visspec, yyvsp[0].ttype));
  5991.         ;
  5992.     break;}
  5993. case 425:
  5994. #line 2488 "parse.y"
  5995. {
  5996.           if (current_aggr == signature_type_node)
  5997.             error ("access specifier not allowed in signature");
  5998.         ;
  5999.     break;}
  6000. case 426:
  6001. #line 2498 "parse.y"
  6002. { if (yyval.ttype == void_type_node) yyval.ttype = NULL_TREE; 
  6003.         ;
  6004.     break;}
  6005. case 427:
  6006. #line 2501 "parse.y"
  6007. { /* In pushdecl, we created a reverse list of names
  6008.              in this binding level.  Make sure that the chain
  6009.              of what we're trying to add isn't the item itself
  6010.              (which can happen with what pushdecl's doing).  */
  6011.           if (yyvsp[0].ttype != NULL_TREE && yyvsp[0].ttype != void_type_node)
  6012.             {
  6013.               if (TREE_CHAIN (yyvsp[0].ttype) != yyval.ttype)
  6014.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6015.               else
  6016.             yyval.ttype = yyvsp[0].ttype;
  6017.             }
  6018.         ;
  6019.     break;}
  6020. case 430:
  6021. #line 2519 "parse.y"
  6022. { error ("missing ';' before right brace");
  6023.           yyungetc ('}', 0); ;
  6024.     break;}
  6025. case 431:
  6026. #line 2524 "parse.y"
  6027. { yyval.ttype = finish_method (yyval.ttype); ;
  6028.     break;}
  6029. case 432:
  6030. #line 2526 "parse.y"
  6031. { yyval.ttype = finish_method (yyval.ttype); ;
  6032.     break;}
  6033. case 433:
  6034. #line 2534 "parse.y"
  6035. {
  6036.           yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
  6037.         ;
  6038.     break;}
  6039. case 434:
  6040. #line 2538 "parse.y"
  6041.           yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
  6042.         ;
  6043.     break;}
  6044. case 435:
  6045. #line 2542 "parse.y"
  6046. { yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6047.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6048.     break;}
  6049. case 436:
  6050. #line 2545 "parse.y"
  6051. { yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ;
  6052.     break;}
  6053. case 437:
  6054. #line 2547 "parse.y"
  6055. { yyval.ttype = NULL_TREE; ;
  6056.     break;}
  6057. case 438:
  6058. #line 2558 "parse.y"
  6059. { yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-4].ttype),
  6060.                      yyvsp[-2].ttype, yyvsp[0].ttype);
  6061.           yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-4].ttype), NULL_TREE, NULL_TREE,
  6062.                   NULL_TREE); ;
  6063.     break;}
  6064. case 439:
  6065. #line 2563 "parse.y"
  6066. { yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-2].ttype),
  6067.                      empty_parms (), yyvsp[0].ttype);
  6068.           yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-2].ttype), NULL_TREE, NULL_TREE,
  6069.                   NULL_TREE); ;
  6070.     break;}
  6071. case 440:
  6072. #line 2572 "parse.y"
  6073. { yyval.ttype = NULL_TREE; ;
  6074.     break;}
  6075. case 442:
  6076. #line 2575 "parse.y"
  6077. {
  6078.           /* In this context, void_type_node encodes
  6079.              friends.  They have been recorded elsewhere.  */
  6080.           if (yyval.ttype == void_type_node)
  6081.             yyval.ttype = yyvsp[0].ttype;
  6082.           else
  6083.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6084.         ;
  6085.     break;}
  6086. case 443:
  6087. #line 2587 "parse.y"
  6088. { yyval.ttype = NULL_TREE; ;
  6089.     break;}
  6090. case 445:
  6091. #line 2590 "parse.y"
  6092. {
  6093.           /* In this context, void_type_node encodes
  6094.              friends.  They have been recorded elsewhere.  */
  6095.           if (yyval.ttype == void_type_node)
  6096.             yyval.ttype = yyvsp[0].ttype;
  6097.           else
  6098.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6099.         ;
  6100.     break;}
  6101. case 450:
  6102. #line 2612 "parse.y"
  6103. { current_declspecs = yyvsp[-4].ttype;
  6104.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6105.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6106.     break;}
  6107. case 451:
  6108. #line 2616 "parse.y"
  6109. { current_declspecs = yyvsp[-6].ttype;
  6110.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6111.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6112.     break;}
  6113. case 452:
  6114. #line 2620 "parse.y"
  6115. { current_declspecs = yyvsp[-4].ttype;
  6116.           yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6117.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6118.     break;}
  6119. case 453:
  6120. #line 2627 "parse.y"
  6121. { current_declspecs = yyvsp[-4].ttype;
  6122.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6123.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6124.     break;}
  6125. case 454:
  6126. #line 2631 "parse.y"
  6127. { current_declspecs = yyvsp[-6].ttype;
  6128.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6129.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6130.     break;}
  6131. case 455:
  6132. #line 2635 "parse.y"
  6133. { current_declspecs = yyvsp[-4].ttype;
  6134.           yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6135.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6136.     break;}
  6137. case 456:
  6138. #line 2639 "parse.y"
  6139. { current_declspecs = yyvsp[-3].ttype;
  6140.           yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  6141.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6142.     break;}
  6143. case 457:
  6144. #line 2646 "parse.y"
  6145. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6146.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6147.     break;}
  6148. case 458:
  6149. #line 2649 "parse.y"
  6150. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6151.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6152.     break;}
  6153. case 459:
  6154. #line 2652 "parse.y"
  6155. { yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6156.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6157.     break;}
  6158. case 460:
  6159. #line 2658 "parse.y"
  6160. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6161.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6162.     break;}
  6163. case 461:
  6164. #line 2661 "parse.y"
  6165. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6166.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6167.     break;}
  6168. case 462:
  6169. #line 2664 "parse.y"
  6170. { yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6171.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6172.     break;}
  6173. case 463:
  6174. #line 2667 "parse.y"
  6175. { yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  6176.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6177.     break;}
  6178. case 465:
  6179. #line 2678 "parse.y"
  6180. { TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  6181.     break;}
  6182. case 466:
  6183. #line 2683 "parse.y"
  6184. { yyval.ttype = build_enumerator (yyval.ttype, NULL_TREE); ;
  6185.     break;}
  6186. case 467:
  6187. #line 2685 "parse.y"
  6188. { yyval.ttype = build_enumerator (yyval.ttype, yyvsp[0].ttype); ;
  6189.     break;}
  6190. case 468:
  6191. #line 2691 "parse.y"
  6192. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  6193.     break;}
  6194. case 469:
  6195. #line 2693 "parse.y"
  6196. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  6197.     break;}
  6198. case 470:
  6199. #line 2697 "parse.y"
  6200. {
  6201.           if (flag_ansi)
  6202.             pedwarn ("ANSI C++ forbids array dimensions with parenthesized type in new");
  6203.           yyval.ttype = build_parse_node (ARRAY_REF, TREE_VALUE (yyvsp[-4].ttype), yyvsp[-1].ttype);
  6204.           yyval.ttype = build_decl_list (TREE_PURPOSE (yyvsp[-4].ttype), yyval.ttype);
  6205.         ;
  6206.     break;}
  6207. case 471:
  6208. #line 2707 "parse.y"
  6209. { yyval.ttype = NULL_TREE; ;
  6210.     break;}
  6211. case 472:
  6212. #line 2709 "parse.y"
  6213. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  6214.     break;}
  6215. case 473:
  6216. #line 2714 "parse.y"
  6217. { yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
  6218.     break;}
  6219. case 474:
  6220. #line 2716 "parse.y"
  6221. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  6222.     break;}
  6223. case 475:
  6224. #line 2724 "parse.y"
  6225. { yyval.itype = suspend_momentary (); ;
  6226.     break;}
  6227. case 476:
  6228. #line 2725 "parse.y"
  6229. { resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = yyvsp[0].ttype; ;
  6230.     break;}
  6231. case 477:
  6232. #line 2732 "parse.y"
  6233. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6234.     break;}
  6235. case 478:
  6236. #line 2734 "parse.y"
  6237. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6238.     break;}
  6239. case 479:
  6240. #line 2736 "parse.y"
  6241. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6242.     break;}
  6243. case 480:
  6244. #line 2738 "parse.y"
  6245. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6246.     break;}
  6247. case 481:
  6248. #line 2740 "parse.y"
  6249. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6250.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6251.         ;
  6252.     break;}
  6253. case 483:
  6254. #line 2748 "parse.y"
  6255. {
  6256.           /* Remember that this name has been used in the class
  6257.              definition, as per [class.scope0] */
  6258.           if (current_class_type
  6259.               && TYPE_BEING_DEFINED (current_class_type)
  6260.               && ! IDENTIFIER_CLASS_VALUE (yyval.ttype))
  6261.             {
  6262.               tree t = lookup_name (yyval.ttype, -2);
  6263.               if (t)
  6264.             pushdecl_class_level (t);
  6265.             }
  6266.         ;
  6267.     break;}
  6268. case 485:
  6269. #line 2765 "parse.y"
  6270. { yyval.ttype = yyvsp[0].ttype; ;
  6271.     break;}
  6272. case 486:
  6273. #line 2770 "parse.y"
  6274. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6275.     break;}
  6276. case 487:
  6277. #line 2772 "parse.y"
  6278. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6279.     break;}
  6280. case 488:
  6281. #line 2774 "parse.y"
  6282. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6283.     break;}
  6284. case 489:
  6285. #line 2776 "parse.y"
  6286. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
  6287.     break;}
  6288. case 490:
  6289. #line 2778 "parse.y"
  6290. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6291.     break;}
  6292. case 491:
  6293. #line 2780 "parse.y"
  6294. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6295.     break;}
  6296. case 492:
  6297. #line 2782 "parse.y"
  6298. { yyval.ttype = yyvsp[-1].ttype; ;
  6299.     break;}
  6300. case 493:
  6301. #line 2784 "parse.y"
  6302. { push_nested_class (TREE_TYPE (yyval.ttype), 3);
  6303.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype);
  6304.           TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
  6305.     break;}
  6306. case 495:
  6307. #line 2795 "parse.y"
  6308. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6309.     break;}
  6310. case 496:
  6311. #line 2797 "parse.y"
  6312. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6313.     break;}
  6314. case 497:
  6315. #line 2799 "parse.y"
  6316. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6317.     break;}
  6318. case 498:
  6319. #line 2801 "parse.y"
  6320. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6321.     break;}
  6322. case 499:
  6323. #line 2803 "parse.y"
  6324. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6325.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6326.         ;
  6327.     break;}
  6328. case 501:
  6329. #line 2811 "parse.y"
  6330. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6331.     break;}
  6332. case 502:
  6333. #line 2813 "parse.y"
  6334. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6335.     break;}
  6336. case 503:
  6337. #line 2815 "parse.y"
  6338. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6339.     break;}
  6340. case 504:
  6341. #line 2817 "parse.y"
  6342. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6343.     break;}
  6344. case 505:
  6345. #line 2819 "parse.y"
  6346. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6347.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6348.         ;
  6349.     break;}
  6350. case 507:
  6351. #line 2827 "parse.y"
  6352. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6353.     break;}
  6354. case 508:
  6355. #line 2829 "parse.y"
  6356. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6357.     break;}
  6358. case 509:
  6359. #line 2831 "parse.y"
  6360. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6361.     break;}
  6362. case 510:
  6363. #line 2833 "parse.y"
  6364. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
  6365.     break;}
  6366. case 511:
  6367. #line 2835 "parse.y"
  6368. { yyval.ttype = finish_decl_parsing (yyvsp[-1].ttype); ;
  6369.     break;}
  6370. case 512:
  6371. #line 2837 "parse.y"
  6372. { yyval.ttype = yyvsp[-1].ttype; ;
  6373.     break;}
  6374. case 513:
  6375. #line 2839 "parse.y"
  6376. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6377.     break;}
  6378. case 514:
  6379. #line 2841 "parse.y"
  6380. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6381.     break;}
  6382. case 515:
  6383. #line 2846 "parse.y"
  6384. { got_scope = NULL_TREE;
  6385.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
  6386.     break;}
  6387. case 516:
  6388. #line 2852 "parse.y"
  6389. { got_scope = NULL_TREE;
  6390.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
  6391.     break;}
  6392. case 518:
  6393. #line 2859 "parse.y"
  6394. { yyval.ttype = yyvsp[0].ttype; ;
  6395.     break;}
  6396. case 519:
  6397. #line 2864 "parse.y"
  6398. { yyval.ttype = build_functional_cast (yyval.ttype, yyvsp[-1].ttype); ;
  6399.     break;}
  6400. case 520:
  6401. #line 2866 "parse.y"
  6402. { yyval.ttype = reparse_decl_as_expr (yyval.ttype, yyvsp[-1].ttype); ;
  6403.     break;}
  6404. case 521:
  6405. #line 2868 "parse.y"
  6406. { yyval.ttype = reparse_absdcl_as_expr (yyval.ttype, yyvsp[0].ttype); ;
  6407.     break;}
  6408. case 525:
  6409. #line 2879 "parse.y"
  6410. { yyval.ttype = yyvsp[0].ttype; ;
  6411.     break;}
  6412. case 526:
  6413. #line 2886 "parse.y"
  6414. { got_scope = TREE_TYPE (yyval.ttype); ;
  6415.     break;}
  6416. case 527:
  6417. #line 2888 "parse.y"
  6418. { got_scope = TREE_TYPE (yyval.ttype); ;
  6419.     break;}
  6420. case 529:
  6421. #line 2904 "parse.y"
  6422. { yyval.ttype = yyvsp[0].ttype; ;
  6423.     break;}
  6424. case 531:
  6425. #line 2910 "parse.y"
  6426. { yyval.ttype = yyvsp[0].ttype; ;
  6427.     break;}
  6428. case 532:
  6429. #line 2915 "parse.y"
  6430. { got_scope = NULL_TREE; ;
  6431.     break;}
  6432. case 533:
  6433. #line 2917 "parse.y"
  6434. { yyval.ttype = yyvsp[-1].ttype; got_scope = NULL_TREE; ;
  6435.     break;}
  6436. case 534:
  6437. #line 2924 "parse.y"
  6438. { got_scope = void_type_node; ;
  6439.     break;}
  6440. case 535:
  6441. #line 2930 "parse.y"
  6442. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6443.     break;}
  6444. case 536:
  6445. #line 2932 "parse.y"
  6446. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6447.     break;}
  6448. case 537:
  6449. #line 2934 "parse.y"
  6450. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6451.     break;}
  6452. case 538:
  6453. #line 2936 "parse.y"
  6454. { yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6455.     break;}
  6456. case 539:
  6457. #line 2938 "parse.y"
  6458. { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
  6459.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
  6460.         ;
  6461.     break;}
  6462. case 540:
  6463. #line 2942 "parse.y"
  6464. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6465.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6466.         ;
  6467.     break;}
  6468. case 542:
  6469. #line 2951 "parse.y"
  6470. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  6471.     break;}
  6472. case 543:
  6473. #line 2953 "parse.y"
  6474. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6475.     break;}
  6476. case 544:
  6477. #line 2959 "parse.y"
  6478. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6479.     break;}
  6480. case 545:
  6481. #line 2961 "parse.y"
  6482. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6483.     break;}
  6484. case 546:
  6485. #line 2963 "parse.y"
  6486. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6487.     break;}
  6488. case 547:
  6489. #line 2965 "parse.y"
  6490. { yyval.ttype = make_pointer_declarator (NULL_TREE, NULL_TREE); ;
  6491.     break;}
  6492. case 548:
  6493. #line 2967 "parse.y"
  6494. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6495.     break;}
  6496. case 549:
  6497. #line 2969 "parse.y"
  6498. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6499.     break;}
  6500. case 550:
  6501. #line 2971 "parse.y"
  6502. { yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6503.     break;}
  6504. case 551:
  6505. #line 2973 "parse.y"
  6506. { yyval.ttype = make_reference_declarator (NULL_TREE, NULL_TREE); ;
  6507.     break;}
  6508. case 552:
  6509. #line 2975 "parse.y"
  6510. { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
  6511.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
  6512.         ;
  6513.     break;}
  6514. case 553:
  6515. #line 2979 "parse.y"
  6516. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6517.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6518.         ;
  6519.     break;}
  6520. case 555:
  6521. #line 2988 "parse.y"
  6522. { yyval.ttype = yyvsp[-1].ttype; ;
  6523.     break;}
  6524. case 557:
  6525. #line 2992 "parse.y"
  6526. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6527.     break;}
  6528. case 558:
  6529. #line 2994 "parse.y"
  6530. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6531.     break;}
  6532. case 559:
  6533. #line 2996 "parse.y"
  6534. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6535.     break;}
  6536. case 560:
  6537. #line 2998 "parse.y"
  6538. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6539.     break;}
  6540. case 561:
  6541. #line 3000 "parse.y"
  6542. { yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6543.     break;}
  6544. case 562:
  6545. #line 3002 "parse.y"
  6546. { TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
  6547.     break;}
  6548. case 563:
  6549. #line 3004 "parse.y"
  6550. { TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
  6551.     break;}
  6552. case 564:
  6553. #line 3006 "parse.y"
  6554. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  6555.     break;}
  6556. case 565:
  6557. #line 3008 "parse.y"
  6558. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); ;
  6559.     break;}
  6560. case 571:
  6561. #line 3030 "parse.y"
  6562. { emit_line_note (input_filename, lineno);
  6563.           pushlevel (0);
  6564.           clear_last_expr ();
  6565.           push_momentary ();
  6566.           expand_start_bindings (0); ;
  6567.     break;}
  6568. case 573:
  6569. #line 3042 "parse.y"
  6570. { if (flag_ansi)
  6571.             pedwarn ("ANSI C++ forbids label declarations"); ;
  6572.     break;}
  6573. case 576:
  6574. #line 3053 "parse.y"
  6575. { tree link;
  6576.           for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
  6577.             {
  6578.               tree label = shadow_label (TREE_VALUE (link));
  6579.               C_DECLARED_LABEL_FLAG (label) = 1;
  6580.               declare_nonlocal_label (label);
  6581.             }
  6582.         ;
  6583.     break;}
  6584. case 577:
  6585. #line 3067 "parse.y"
  6586. {;
  6587.     break;}
  6588. case 579:
  6589. #line 3072 "parse.y"
  6590. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6591.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6592.           pop_momentary (); ;
  6593.     break;}
  6594. case 580:
  6595. #line 3076 "parse.y"
  6596. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6597.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6598.           pop_momentary (); ;
  6599.     break;}
  6600. case 581:
  6601. #line 3080 "parse.y"
  6602. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6603.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  6604.           pop_momentary (); ;
  6605.     break;}
  6606. case 582:
  6607. #line 3084 "parse.y"
  6608. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6609.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  6610.           pop_momentary (); ;
  6611.     break;}
  6612. case 583:
  6613. #line 3091 "parse.y"
  6614. { cond_stmt_keyword = "if"; ;
  6615.     break;}
  6616. case 584:
  6617. #line 3093 "parse.y"
  6618. { emit_line_note (input_filename, lineno);
  6619.           expand_start_cond (yyvsp[0].ttype, 0); ;
  6620.     break;}
  6621. case 586:
  6622. #line 3100 "parse.y"
  6623. { finish_stmt (); ;
  6624.     break;}
  6625. case 587:
  6626. #line 3102 "parse.y"
  6627. { expand_end_bindings (getdecls (), kept_level_p (), 1);
  6628.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6629.           pop_momentary (); ;
  6630.     break;}
  6631. case 588:
  6632. #line 3109 "parse.y"
  6633. { finish_stmt (); ;
  6634.     break;}
  6635. case 590:
  6636. #line 3115 "parse.y"
  6637. { finish_stmt (); ;
  6638.     break;}
  6639. case 591:
  6640. #line 3117 "parse.y"
  6641. {
  6642.           tree expr = yyvsp[-1].ttype;
  6643.           emit_line_note (input_filename, lineno);
  6644.           /* Do default conversion if safe and possibly important,
  6645.              in case within ({...}).  */
  6646.           if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
  6647.                && lvalue_p (expr))
  6648.               || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
  6649.             expr = default_conversion (expr);
  6650.           cplus_expand_expr_stmt (expr);
  6651.           clear_momentary ();
  6652.           finish_stmt (); ;
  6653.     break;}
  6654. case 592:
  6655. #line 3130 "parse.y"
  6656. { expand_start_else (); ;
  6657.     break;}
  6658. case 593:
  6659. #line 3132 "parse.y"
  6660. { expand_end_cond ();
  6661.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6662.           poplevel (kept_level_p (), 1, 0);
  6663.           pop_momentary ();
  6664.           finish_stmt (); ;
  6665.     break;}
  6666. case 594:
  6667. #line 3138 "parse.y"
  6668. { expand_end_cond ();
  6669.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6670.           poplevel (kept_level_p (), 1, 0);
  6671.           pop_momentary ();
  6672.           finish_stmt (); ;
  6673.     break;}
  6674. case 595:
  6675. #line 3144 "parse.y"
  6676. { emit_nop ();
  6677.           emit_line_note (input_filename, lineno);
  6678.           expand_start_loop (1);
  6679.           cond_stmt_keyword = "while"; ;
  6680.     break;}
  6681. case 596:
  6682. #line 3149 "parse.y"
  6683. { expand_exit_loop_if_false (0, yyvsp[0].ttype); ;
  6684.     break;}
  6685. case 597:
  6686. #line 3151 "parse.y"
  6687. { expand_end_bindings (getdecls (), kept_level_p (), 1);
  6688.           poplevel (kept_level_p (), 1, 0);
  6689.           pop_momentary ();
  6690.           expand_end_loop ();
  6691.           finish_stmt (); ;
  6692.     break;}
  6693. case 598:
  6694. #line 3157 "parse.y"
  6695. { emit_nop ();
  6696.           emit_line_note (input_filename, lineno);
  6697.           expand_start_loop_continue_elsewhere (1); ;
  6698.     break;}
  6699. case 599:
  6700. #line 3161 "parse.y"
  6701. { expand_loop_continue_here ();
  6702.           cond_stmt_keyword = "do"; ;
  6703.     break;}
  6704. case 600:
  6705. #line 3164 "parse.y"
  6706. { emit_line_note (input_filename, lineno);
  6707.           expand_exit_loop_if_false (0, yyvsp[-1].ttype);
  6708.           expand_end_loop ();
  6709.           clear_momentary ();
  6710.           finish_stmt (); ;
  6711.     break;}
  6712. case 601:
  6713. #line 3170 "parse.y"
  6714. { emit_nop ();
  6715.           emit_line_note (input_filename, lineno);
  6716.           if (yyvsp[0].ttype) cplus_expand_expr_stmt (yyvsp[0].ttype);
  6717.           expand_start_loop_continue_elsewhere (1); ;
  6718.     break;}
  6719. case 602:
  6720. #line 3175 "parse.y"
  6721. { emit_line_note (input_filename, lineno);
  6722.           if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
  6723.     break;}
  6724. case 603:
  6725. #line 3180 "parse.y"
  6726. { push_momentary (); ;
  6727.     break;}
  6728. case 604:
  6729. #line 3182 "parse.y"
  6730. { emit_line_note (input_filename, lineno);
  6731.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6732.           poplevel (kept_level_p (), 1, 0);
  6733.           pop_momentary ();
  6734.           expand_loop_continue_here ();
  6735.           if (yyvsp[-3].ttype) cplus_expand_expr_stmt (yyvsp[-3].ttype);
  6736.           pop_momentary ();
  6737.           expand_end_loop ();
  6738.           finish_stmt (); ;
  6739.     break;}
  6740. case 605:
  6741. #line 3192 "parse.y"
  6742. { emit_nop ();
  6743.           emit_line_note (input_filename, lineno);
  6744.           expand_start_loop_continue_elsewhere (1); ;
  6745.     break;}
  6746. case 606:
  6747. #line 3196 "parse.y"
  6748. { emit_line_note (input_filename, lineno);
  6749.           if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
  6750.     break;}
  6751. case 607:
  6752. #line 3201 "parse.y"
  6753. { push_momentary ();
  6754.           yyvsp[0].itype = lineno; ;
  6755.     break;}
  6756. case 608:
  6757. #line 3204 "parse.y"
  6758. { emit_line_note (input_filename, (int) yyvsp[-2].itype);
  6759.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6760.           poplevel (kept_level_p (), 1, 0);
  6761.           pop_momentary ();
  6762.           expand_loop_continue_here ();
  6763.           if (yyvsp[-3].ttype) cplus_expand_expr_stmt (yyvsp[-3].ttype);
  6764.           pop_momentary ();
  6765.           expand_end_loop ();
  6766.           finish_stmt ();
  6767.         ;
  6768.     break;}
  6769. case 609:
  6770. #line 3215 "parse.y"
  6771. { emit_line_note (input_filename, lineno);
  6772.           c_expand_start_case (yyvsp[-1].ttype);
  6773.           /* Don't let the tree nodes for $4 be discarded by
  6774.              clear_momentary during the parsing of the next stmt.  */
  6775.           push_momentary (); ;
  6776.     break;}
  6777. case 610:
  6778. #line 3221 "parse.y"
  6779. { expand_end_case (yyvsp[-3].ttype);
  6780.           pop_momentary ();
  6781.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6782.           poplevel (kept_level_p (), 1, 0);
  6783.           pop_momentary ();
  6784.           finish_stmt (); ;
  6785.     break;}
  6786. case 611:
  6787. #line 3228 "parse.y"
  6788. { register tree value = check_cp_case_value (yyvsp[-1].ttype);
  6789.           register tree label
  6790.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6791.  
  6792.           if (value != error_mark_node)
  6793.             {
  6794.               tree duplicate;
  6795.               int success = pushcase (value, convert_and_check,
  6796.                           label, &duplicate);
  6797.               if (success == 1)
  6798.             cp_error ("case label `%E' not within a switch statement", yyvsp[-1].ttype);
  6799.               else if (success == 2)
  6800.             {
  6801.               cp_error ("duplicate case value `%E'", yyvsp[-1].ttype);
  6802.               cp_error_at ("`%E' previously used here", duplicate);
  6803.             }
  6804.               else if (success == 3)
  6805.             warning ("case value out of range");
  6806.               else if (success == 5)
  6807.             cp_error ("case label `%E' within scope of cleanup or variable array", yyvsp[-1].ttype);
  6808.             }
  6809.           define_case_label (label);
  6810.         ;
  6811.     break;}
  6812. case 613:
  6813. #line 3253 "parse.y"
  6814. { register tree value1 = check_cp_case_value (yyvsp[-3].ttype);
  6815.           register tree value2 = check_cp_case_value (yyvsp[-1].ttype);
  6816.           register tree label
  6817.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6818.  
  6819.           if (flag_ansi)
  6820.             pedwarn ("ANSI C++ forbids range expressions in switch statement");
  6821.           if (value1 != error_mark_node
  6822.               && value2 != error_mark_node)
  6823.             {
  6824.               tree duplicate;
  6825.               int success = pushcase_range (value1, value2,
  6826.                             convert_and_check, label,
  6827.                             &duplicate);
  6828.               if (success == 1)
  6829.             error ("case label not within a switch statement");
  6830.               else if (success == 2)
  6831.             {
  6832.               error ("duplicate (or overlapping) case value");
  6833.               error_with_decl (duplicate, "this is the first entry overlapping that value");
  6834.             }
  6835.               else if (success == 3)
  6836.             warning ("case value out of range");
  6837.               else if (success == 4)
  6838.             warning ("empty range specified");
  6839.               else if (success == 5)
  6840.             error ("case label within scope of cleanup or variable array");
  6841.             }
  6842.           define_case_label (label);
  6843.         ;
  6844.     break;}
  6845. case 615:
  6846. #line 3285 "parse.y"
  6847. {
  6848.           tree duplicate;
  6849.           register tree label
  6850.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6851.           int success = pushcase (NULL_TREE, 0, label, &duplicate);
  6852.           if (success == 1)
  6853.             error ("default label not within a switch statement");
  6854.           else if (success == 2)
  6855.             {
  6856.               error ("multiple default labels in one switch");
  6857.               error_with_decl (duplicate, "this is the first default label");
  6858.             }
  6859.           define_case_label (NULL_TREE);
  6860.         ;
  6861.     break;}
  6862. case 617:
  6863. #line 3301 "parse.y"
  6864. { emit_line_note (input_filename, lineno);
  6865.           if ( ! expand_exit_something ())
  6866.             error ("break statement not within loop or switch"); ;
  6867.     break;}
  6868. case 618:
  6869. #line 3305 "parse.y"
  6870. { emit_line_note (input_filename, lineno);
  6871.           if (! expand_continue_loop (0))
  6872.             error ("continue statement not within a loop"); ;
  6873.     break;}
  6874. case 619:
  6875. #line 3309 "parse.y"
  6876. { emit_line_note (input_filename, lineno);
  6877.           c_expand_return (NULL_TREE); ;
  6878.     break;}
  6879. case 620:
  6880. #line 3312 "parse.y"
  6881. { emit_line_note (input_filename, lineno);
  6882.           c_expand_return (yyvsp[-1].ttype);
  6883.           finish_stmt ();
  6884.         ;
  6885.     break;}
  6886. case 621:
  6887. #line 3317 "parse.y"
  6888. { if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
  6889.           emit_line_note (input_filename, lineno);
  6890.           expand_asm (yyvsp[-2].ttype);
  6891.           finish_stmt ();
  6892.         ;
  6893.     break;}
  6894. case 622:
  6895. #line 3324 "parse.y"
  6896. { if (TREE_CHAIN (yyvsp[-4].ttype)) yyvsp[-4].ttype = combine_strings (yyvsp[-4].ttype);
  6897.           emit_line_note (input_filename, lineno);
  6898.           c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
  6899.                      yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
  6900.                      input_filename, lineno);
  6901.           finish_stmt ();
  6902.         ;
  6903.     break;}
  6904. case 623:
  6905. #line 3333 "parse.y"
  6906. { if (TREE_CHAIN (yyvsp[-6].ttype)) yyvsp[-6].ttype = combine_strings (yyvsp[-6].ttype);
  6907.           emit_line_note (input_filename, lineno);
  6908.           c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
  6909.                      yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
  6910.                      input_filename, lineno);
  6911.           finish_stmt ();
  6912.         ;
  6913.     break;}
  6914. case 624:
  6915. #line 3343 "parse.y"
  6916. { if (TREE_CHAIN (yyvsp[-8].ttype)) yyvsp[-8].ttype = combine_strings (yyvsp[-8].ttype);
  6917.           emit_line_note (input_filename, lineno);
  6918.           c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
  6919.                      yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
  6920.                      input_filename, lineno);
  6921.           finish_stmt ();
  6922.         ;
  6923.     break;}
  6924. case 625:
  6925. #line 3351 "parse.y"
  6926. { emit_line_note (input_filename, lineno);
  6927.           expand_computed_goto (yyvsp[-1].ttype); ;
  6928.     break;}
  6929. case 626:
  6930. #line 3354 "parse.y"
  6931. { tree decl;
  6932.           emit_line_note (input_filename, lineno);
  6933.           decl = lookup_label (yyvsp[-1].ttype);
  6934.           TREE_USED (decl) = 1;
  6935.           expand_goto (decl); ;
  6936.     break;}
  6937. case 627:
  6938. #line 3360 "parse.y"
  6939. { finish_stmt (); ;
  6940.     break;}
  6941. case 628:
  6942. #line 3362 "parse.y"
  6943. { error ("label must be followed by statement");
  6944.           yyungetc ('}', 0);
  6945.           finish_stmt (); ;
  6946.     break;}
  6947. case 629:
  6948. #line 3366 "parse.y"
  6949. { finish_stmt (); ;
  6950.     break;}
  6951. case 631:
  6952. #line 3372 "parse.y"
  6953. { expand_start_try_stmts (); ;
  6954.     break;}
  6955. case 632:
  6956. #line 3374 "parse.y"
  6957. { expand_end_try_stmts ();
  6958.           expand_start_all_catch (); ;
  6959.     break;}
  6960. case 633:
  6961. #line 3377 "parse.y"
  6962. { expand_end_all_catch (); ;
  6963.     break;}
  6964. case 634:
  6965. #line 3385 "parse.y"
  6966. { expand_end_bindings (0,1,1);
  6967.           poplevel (2,0,0);
  6968.         ;
  6969.     break;}
  6970. case 635:
  6971. #line 3389 "parse.y"
  6972. { expand_end_bindings (0,1,1);
  6973.           poplevel (2,0,0);
  6974.         ;
  6975.     break;}
  6976. case 636:
  6977. #line 3393 "parse.y"
  6978. { expand_end_bindings (0,1,1);
  6979.           poplevel (2,0,0);
  6980.         ;
  6981.     break;}
  6982. case 638:
  6983. #line 3401 "parse.y"
  6984. { emit_line_note (input_filename, lineno); ;
  6985.     break;}
  6986. case 639:
  6987. #line 3403 "parse.y"
  6988. { expand_end_catch_block (); ;
  6989.     break;}
  6990. case 642:
  6991. #line 3413 "parse.y"
  6992. { expand_start_catch_block (NULL_TREE, NULL_TREE); ;
  6993.     break;}
  6994. case 643:
  6995. #line 3425 "parse.y"
  6996. { expand_start_catch_block (TREE_PURPOSE (yyvsp[-1].ttype),
  6997.                         TREE_VALUE (yyvsp[-1].ttype)); ;
  6998.     break;}
  6999. case 644:
  7000. #line 3431 "parse.y"
  7001. { tree label;
  7002.         do_label:
  7003.           label = define_label (input_filename, lineno, yyvsp[-1].ttype);
  7004.           if (label)
  7005.             expand_label (label);
  7006.         ;
  7007.     break;}
  7008. case 645:
  7009. #line 3438 "parse.y"
  7010. { goto do_label; ;
  7011.     break;}
  7012. case 646:
  7013. #line 3440 "parse.y"
  7014. { goto do_label; ;
  7015.     break;}
  7016. case 647:
  7017. #line 3445 "parse.y"
  7018. { yyval.ttype = NULL_TREE; ;
  7019.     break;}
  7020. case 648:
  7021. #line 3447 "parse.y"
  7022. { yyval.ttype = yyvsp[-1].ttype; ;
  7023.     break;}
  7024. case 649:
  7025. #line 3449 "parse.y"
  7026. { yyval.ttype = NULL_TREE; ;
  7027.     break;}
  7028. case 650:
  7029. #line 3454 "parse.y"
  7030. { yyval.itype = 0; ;
  7031.     break;}
  7032. case 651:
  7033. #line 3456 "parse.y"
  7034. { yyval.itype = 0; ;
  7035.     break;}
  7036. case 652:
  7037. #line 3458 "parse.y"
  7038. { yyval.itype = 1; ;
  7039.     break;}
  7040. case 653:
  7041. #line 3460 "parse.y"
  7042. { yyval.itype = -1; ;
  7043.     break;}
  7044. case 654:
  7045. #line 3467 "parse.y"
  7046. { emit_line_note (input_filename, lineno);
  7047.           yyval.ttype = NULL_TREE; ;
  7048.     break;}
  7049. case 655:
  7050. #line 3470 "parse.y"
  7051. { emit_line_note (input_filename, lineno); ;
  7052.     break;}
  7053. case 656:
  7054. #line 3475 "parse.y"
  7055. { yyval.ttype = NULL_TREE; ;
  7056.     break;}
  7057. case 658:
  7058. #line 3478 "parse.y"
  7059. { yyval.ttype = NULL_TREE; ;
  7060.     break;}
  7061. case 659:
  7062. #line 3484 "parse.y"
  7063. { yyval.ttype = NULL_TREE; ;
  7064.     break;}
  7065. case 662:
  7066. #line 3491 "parse.y"
  7067. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  7068.     break;}
  7069. case 663:
  7070. #line 3496 "parse.y"
  7071. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[-1].ttype); ;
  7072.     break;}
  7073. case 664:
  7074. #line 3501 "parse.y"
  7075. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ;
  7076.     break;}
  7077. case 665:
  7078. #line 3503 "parse.y"
  7079. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  7080.     break;}
  7081. case 666:
  7082. #line 3513 "parse.y"
  7083. {
  7084.           if (strict_prototype)
  7085.             yyval.ttype = void_list_node;
  7086.           else
  7087.             yyval.ttype = NULL_TREE;
  7088.         ;
  7089.     break;}
  7090. case 668:
  7091. #line 3521 "parse.y"
  7092. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
  7093.           TREE_PARMLIST (yyval.ttype) = 1; ;
  7094.     break;}
  7095. case 669:
  7096. #line 3529 "parse.y"
  7097. {
  7098.           yyval.ttype = chainon (yyval.ttype, void_list_node);
  7099.           TREE_PARMLIST (yyval.ttype) = 1;
  7100.         ;
  7101.     break;}
  7102. case 670:
  7103. #line 3534 "parse.y"
  7104. {
  7105.           TREE_PARMLIST (yyval.ttype) = 1;
  7106.         ;
  7107.     break;}
  7108. case 671:
  7109. #line 3539 "parse.y"
  7110. {
  7111.           TREE_PARMLIST (yyval.ttype) = 1;
  7112.         ;
  7113.     break;}
  7114. case 672:
  7115. #line 3543 "parse.y"
  7116. {
  7117.           yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); 
  7118.           TREE_PARMLIST (yyval.ttype) = 1;
  7119.         ;
  7120.     break;}
  7121. case 673:
  7122. #line 3548 "parse.y"
  7123. {
  7124.           /* ARM $8.2.5 has this as a boxed-off comment.  */
  7125.           if (pedantic)
  7126.             warning ("use of `...' without a first argument is non-portable");
  7127.           yyval.ttype = NULL_TREE;
  7128.         ;
  7129.     break;}
  7130. case 674:
  7131. #line 3555 "parse.y"
  7132. {
  7133.           TREE_PARMLIST (yyval.ttype) = 1;
  7134.         ;
  7135.     break;}
  7136. case 675:
  7137. #line 3559 "parse.y"
  7138. {
  7139.           TREE_PARMLIST (yyval.ttype) = 1;
  7140.         ;
  7141.     break;}
  7142. case 676:
  7143. #line 3563 "parse.y"
  7144. {
  7145.           yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype);
  7146.           TREE_PARMLIST (yyval.ttype) = 1;
  7147.         ;
  7148.     break;}
  7149. case 677:
  7150. #line 3568 "parse.y"
  7151. {
  7152.           /* This helps us recover from really nasty
  7153.              parse errors, for example, a missing right
  7154.              parenthesis.  */
  7155.           yyerror ("possibly missing ')'");
  7156.           yyval.ttype = chainon (yyval.ttype, void_list_node);
  7157.           TREE_PARMLIST (yyval.ttype) = 1;
  7158.           yyungetc (':', 0);
  7159.           yychar = ')';
  7160.         ;
  7161.     break;}
  7162. case 678:
  7163. #line 3579 "parse.y"
  7164. {
  7165.           /* This helps us recover from really nasty
  7166.              parse errors, for example, a missing right
  7167.              parenthesis.  */
  7168.           yyerror ("possibly missing ')'");
  7169.           yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
  7170.           TREE_PARMLIST (yyval.ttype) = 1;
  7171.           yyungetc (':', 0);
  7172.           yychar = ')';
  7173.         ;
  7174.     break;}
  7175. case 679:
  7176. #line 3594 "parse.y"
  7177. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7178.     break;}
  7179. case 680:
  7180. #line 3596 "parse.y"
  7181. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  7182.     break;}
  7183. case 681:
  7184. #line 3598 "parse.y"
  7185. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  7186.     break;}
  7187. case 682:
  7188. #line 3600 "parse.y"
  7189. { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  7190.     break;}
  7191. case 683:
  7192. #line 3602 "parse.y"
  7193. { yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ;
  7194.     break;}
  7195. case 685:
  7196. #line 3608 "parse.y"
  7197. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7198.     break;}
  7199. case 686:
  7200. #line 3631 "parse.y"
  7201. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7202.     break;}
  7203. case 687:
  7204. #line 3633 "parse.y"
  7205. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7206.     break;}
  7207. case 688:
  7208. #line 3635 "parse.y"
  7209. { yyval.ttype = build_tree_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
  7210.     break;}
  7211. case 689:
  7212. #line 3637 "parse.y"
  7213. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7214.     break;}
  7215. case 690:
  7216. #line 3639 "parse.y"
  7217. { yyval.ttype = build_tree_list (yyval.ttype, NULL_TREE); ;
  7218.     break;}
  7219. case 691:
  7220. #line 3641 "parse.y"
  7221. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7222.     break;}
  7223. case 692:
  7224. #line 3646 "parse.y"
  7225. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7226.     break;}
  7227. case 693:
  7228. #line 3648 "parse.y"
  7229. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  7230.     break;}
  7231. case 696:
  7232. #line 3657 "parse.y"
  7233. { see_typename (); ;
  7234.     break;}
  7235. case 697:
  7236. #line 3680 "parse.y"
  7237. {
  7238.           warning ("type specifier omitted for parameter");
  7239.           yyval.ttype = build_tree_list (TREE_PURPOSE (TREE_VALUE (yyvsp[-1].ttype)), NULL_TREE);
  7240.         ;
  7241.     break;}
  7242. case 698:
  7243. #line 3685 "parse.y"
  7244. {
  7245.           warning ("type specifier omitted for parameter");
  7246.           yyval.ttype = build_tree_list (TREE_PURPOSE (TREE_VALUE (yyvsp[-2].ttype)), yyval.ttype);
  7247.         ;
  7248.     break;}
  7249. case 699:
  7250. #line 3693 "parse.y"
  7251. { yyval.ttype = NULL_TREE; ;
  7252.     break;}
  7253. case 700:
  7254. #line 3695 "parse.y"
  7255. { yyval.ttype = yyvsp[-1].ttype; ;
  7256.     break;}
  7257. case 701:
  7258. #line 3700 "parse.y"
  7259. { yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  7260.     break;}
  7261. case 703:
  7262. #line 3706 "parse.y"
  7263. {
  7264.           TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype;
  7265.           yyval.ttype = yyvsp[0].ttype;
  7266.         ;
  7267.     break;}
  7268. case 704:
  7269. #line 3714 "parse.y"
  7270. { yyval.ttype = NULL_TREE; ;
  7271.     break;}
  7272. case 705:
  7273. #line 3716 "parse.y"
  7274. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7275.     break;}
  7276. case 706:
  7277. #line 3718 "parse.y"
  7278. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7279.     break;}
  7280. case 707:
  7281. #line 3720 "parse.y"
  7282. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  7283.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  7284.         ;
  7285.     break;}
  7286. case 708:
  7287. #line 3726 "parse.y"
  7288. { got_scope = NULL_TREE; ;
  7289.     break;}
  7290. case 709:
  7291. #line 3731 "parse.y"
  7292. { yyval.ttype = ansi_opname[MULT_EXPR]; ;
  7293.     break;}
  7294. case 710:
  7295. #line 3733 "parse.y"
  7296. { yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ;
  7297.     break;}
  7298. case 711:
  7299. #line 3735 "parse.y"
  7300. { yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ;
  7301.     break;}
  7302. case 712:
  7303. #line 3737 "parse.y"
  7304. { yyval.ttype = ansi_opname[PLUS_EXPR]; ;
  7305.     break;}
  7306. case 713:
  7307. #line 3739 "parse.y"
  7308. { yyval.ttype = ansi_opname[MINUS_EXPR]; ;
  7309.     break;}
  7310. case 714:
  7311. #line 3741 "parse.y"
  7312. { yyval.ttype = ansi_opname[BIT_AND_EXPR]; ;
  7313.     break;}
  7314. case 715:
  7315. #line 3743 "parse.y"
  7316. { yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ;
  7317.     break;}
  7318. case 716:
  7319. #line 3745 "parse.y"
  7320. { yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ;
  7321.     break;}
  7322. case 717:
  7323. #line 3747 "parse.y"
  7324. { yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ;
  7325.     break;}
  7326. case 718:
  7327. #line 3749 "parse.y"
  7328. { yyval.ttype = ansi_opname[COMPOUND_EXPR]; ;
  7329.     break;}
  7330. case 719:
  7331. #line 3751 "parse.y"
  7332. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7333.     break;}
  7334. case 720:
  7335. #line 3753 "parse.y"
  7336. { yyval.ttype = ansi_opname[LT_EXPR]; ;
  7337.     break;}
  7338. case 721:
  7339. #line 3755 "parse.y"
  7340. { yyval.ttype = ansi_opname[GT_EXPR]; ;
  7341.     break;}
  7342. case 722:
  7343. #line 3757 "parse.y"
  7344. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7345.     break;}
  7346. case 723:
  7347. #line 3759 "parse.y"
  7348. { yyval.ttype = ansi_assopname[yyvsp[0].code]; ;
  7349.     break;}
  7350. case 724:
  7351. #line 3761 "parse.y"
  7352. { yyval.ttype = ansi_opname [MODIFY_EXPR]; ;
  7353.     break;}
  7354. case 725:
  7355. #line 3763 "parse.y"
  7356. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7357.     break;}
  7358. case 726:
  7359. #line 3765 "parse.y"
  7360. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7361.     break;}
  7362. case 727:
  7363. #line 3767 "parse.y"
  7364. { yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ;
  7365.     break;}
  7366. case 728:
  7367. #line 3769 "parse.y"
  7368. { yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ;
  7369.     break;}
  7370. case 729:
  7371. #line 3771 "parse.y"
  7372. { yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ;
  7373.     break;}
  7374. case 730:
  7375. #line 3773 "parse.y"
  7376. { yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ;
  7377.     break;}
  7378. case 731:
  7379. #line 3775 "parse.y"
  7380. { yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ;
  7381.     break;}
  7382. case 732:
  7383. #line 3777 "parse.y"
  7384. { yyval.ttype = ansi_opname[COND_EXPR]; ;
  7385.     break;}
  7386. case 733:
  7387. #line 3779 "parse.y"
  7388. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7389.     break;}
  7390. case 734:
  7391. #line 3781 "parse.y"
  7392. { yyval.ttype = ansi_opname[COMPONENT_REF]; ;
  7393.     break;}
  7394. case 735:
  7395. #line 3783 "parse.y"
  7396. { yyval.ttype = ansi_opname[MEMBER_REF]; ;
  7397.     break;}
  7398. case 736:
  7399. #line 3785 "parse.y"
  7400. { yyval.ttype = ansi_opname[CALL_EXPR]; ;
  7401.     break;}
  7402. case 737:
  7403. #line 3787 "parse.y"
  7404. { yyval.ttype = ansi_opname[ARRAY_REF]; ;
  7405.     break;}
  7406. case 738:
  7407. #line 3789 "parse.y"
  7408. { yyval.ttype = ansi_opname[NEW_EXPR]; ;
  7409.     break;}
  7410. case 739:
  7411. #line 3791 "parse.y"
  7412. { yyval.ttype = ansi_opname[DELETE_EXPR]; ;
  7413.     break;}
  7414. case 740:
  7415. #line 3793 "parse.y"
  7416. { yyval.ttype = ansi_opname[VEC_NEW_EXPR]; ;
  7417.     break;}
  7418. case 741:
  7419. #line 3795 "parse.y"
  7420. { yyval.ttype = ansi_opname[VEC_DELETE_EXPR]; ;
  7421.     break;}
  7422. case 742:
  7423. #line 3798 "parse.y"
  7424. { yyval.ttype = grokoptypename (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7425.     break;}
  7426. case 743:
  7427. #line 3800 "parse.y"
  7428. { yyval.ttype = ansi_opname[ERROR_MARK]; ;
  7429.     break;}
  7430. }
  7431.    /* the action file gets copied in in place of this dollarsign */
  7432. #line 465 "/gnu/lib/bison.simple"
  7433.  
  7434.   yyvsp -= yylen;
  7435.   yyssp -= yylen;
  7436. #ifdef YYLSP_NEEDED
  7437.   yylsp -= yylen;
  7438. #endif
  7439.  
  7440. #if YYDEBUG != 0
  7441.   if (yydebug)
  7442.     {
  7443.       short *ssp1 = yyss - 1;
  7444.       fprintf (stderr, "state stack now");
  7445.       while (ssp1 != yyssp)
  7446.     fprintf (stderr, " %d", *++ssp1);
  7447.       fprintf (stderr, "\n");
  7448.     }
  7449. #endif
  7450.  
  7451.   *++yyvsp = yyval;
  7452.  
  7453. #ifdef YYLSP_NEEDED
  7454.   yylsp++;
  7455.   if (yylen == 0)
  7456.     {
  7457.       yylsp->first_line = yylloc.first_line;
  7458.       yylsp->first_column = yylloc.first_column;
  7459.       yylsp->last_line = (yylsp-1)->last_line;
  7460.       yylsp->last_column = (yylsp-1)->last_column;
  7461.       yylsp->text = 0;
  7462.     }
  7463.   else
  7464.     {
  7465.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  7466.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  7467.     }
  7468. #endif
  7469.  
  7470.   /* Now "shift" the result of the reduction.
  7471.      Determine what state that goes to,
  7472.      based on the state we popped back to
  7473.      and the rule number reduced by.  */
  7474.  
  7475.   yyn = yyr1[yyn];
  7476.  
  7477.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  7478.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  7479.     yystate = yytable[yystate];
  7480.   else
  7481.     yystate = yydefgoto[yyn - YYNTBASE];
  7482.  
  7483.   goto yynewstate;
  7484.  
  7485. yyerrlab:   /* here on detecting error */
  7486.  
  7487.   if (! yyerrstatus)
  7488.     /* If not already recovering from an error, report this error.  */
  7489.     {
  7490.       ++yynerrs;
  7491.  
  7492. #ifdef YYERROR_VERBOSE
  7493.       yyn = yypact[yystate];
  7494.  
  7495.       if (yyn > YYFLAG && yyn < YYLAST)
  7496.     {
  7497.       int size = 0;
  7498.       char *msg;
  7499.       int x, count;
  7500.  
  7501.       count = 0;
  7502.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  7503.       for (x = (yyn < 0 ? -yyn : 0);
  7504.            x < (sizeof(yytname) / sizeof(char *)); x++)
  7505.         if (yycheck[x + yyn] == x)
  7506.           size += strlen(yytname[x]) + 15, count++;
  7507.       msg = (char *) malloc(size + 15);
  7508.       if (msg != 0)
  7509.         {
  7510.           strcpy(msg, "parse error");
  7511.  
  7512.           if (count < 5)
  7513.         {
  7514.           count = 0;
  7515.           for (x = (yyn < 0 ? -yyn : 0);
  7516.                x < (sizeof(yytname) / sizeof(char *)); x++)
  7517.             if (yycheck[x + yyn] == x)
  7518.               {
  7519.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  7520.             strcat(msg, yytname[x]);
  7521.             strcat(msg, "'");
  7522.             count++;
  7523.               }
  7524.         }
  7525.           yyerror(msg);
  7526.           free(msg);
  7527.         }
  7528.       else
  7529.         yyerror ("parse error; also virtual memory exceeded");
  7530.     }
  7531.       else
  7532. #endif /* YYERROR_VERBOSE */
  7533.     yyerror("parse error");
  7534.     }
  7535.  
  7536.   goto yyerrlab1;
  7537. yyerrlab1:   /* here on error raised explicitly by an action */
  7538.  
  7539.   if (yyerrstatus == 3)
  7540.     {
  7541.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  7542.  
  7543.       /* return failure if at end of input */
  7544.       if (yychar == YYEOF)
  7545.     YYABORT;
  7546.  
  7547. #if YYDEBUG != 0
  7548.       if (yydebug)
  7549.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  7550. #endif
  7551.  
  7552.       yychar = YYEMPTY;
  7553.     }
  7554.  
  7555.   /* Else will try to reuse lookahead token
  7556.      after shifting the error token.  */
  7557.  
  7558.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  7559.  
  7560.   goto yyerrhandle;
  7561.  
  7562. yyerrdefault:  /* current state does not do anything special for the error token. */
  7563.  
  7564. #if 0
  7565.   /* This is wrong; only states that explicitly want error tokens
  7566.      should shift them.  */
  7567.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  7568.   if (yyn) goto yydefault;
  7569. #endif
  7570.  
  7571. yyerrpop:   /* pop the current state because it cannot handle the error token */
  7572.  
  7573.   if (yyssp == yyss) YYABORT;
  7574.   yyvsp--;
  7575.   yystate = *--yyssp;
  7576. #ifdef YYLSP_NEEDED
  7577.   yylsp--;
  7578. #endif
  7579.  
  7580. #if YYDEBUG != 0
  7581.   if (yydebug)
  7582.     {
  7583.       short *ssp1 = yyss - 1;
  7584.       fprintf (stderr, "Error: state stack now");
  7585.       while (ssp1 != yyssp)
  7586.     fprintf (stderr, " %d", *++ssp1);
  7587.       fprintf (stderr, "\n");
  7588.     }
  7589. #endif
  7590.  
  7591. yyerrhandle:
  7592.  
  7593.   yyn = yypact[yystate];
  7594.   if (yyn == YYFLAG)
  7595.     goto yyerrdefault;
  7596.  
  7597.   yyn += YYTERROR;
  7598.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  7599.     goto yyerrdefault;
  7600.  
  7601.   yyn = yytable[yyn];
  7602.   if (yyn < 0)
  7603.     {
  7604.       if (yyn == YYFLAG)
  7605.     goto yyerrpop;
  7606.       yyn = -yyn;
  7607.       goto yyreduce;
  7608.     }
  7609.   else if (yyn == 0)
  7610.     goto yyerrpop;
  7611.  
  7612.   if (yyn == YYFINAL)
  7613.     YYACCEPT;
  7614.  
  7615. #if YYDEBUG != 0
  7616.   if (yydebug)
  7617.     fprintf(stderr, "Shifting error token, ");
  7618. #endif
  7619.  
  7620.   *++yyvsp = yylval;
  7621. #ifdef YYLSP_NEEDED
  7622.   *++yylsp = yylloc;
  7623. #endif
  7624.  
  7625.   yystate = yyn;
  7626.   goto yynewstate;
  7627. }
  7628. #line 3803 "parse.y"
  7629.  
  7630.  
  7631. #ifdef SPEW_DEBUG
  7632. const char *
  7633. debug_yytranslate (value)
  7634.     int value;
  7635. {
  7636.   return yytname[YYTRANSLATE (value)];
  7637. }
  7638.  
  7639. #endif
  7640.