| /* A Bison parser, made by GNU Bison 3.0.4. */ |
| |
| /* Bison implementation for Yacc-like parsers in C |
| |
| Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. |
| |
| This program is free software: you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation, either version 3 of the License, or |
| (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
| |
| /* As a special exception, you may create a larger work that contains |
| part or all of the Bison parser skeleton and distribute that work |
| under terms of your choice, so long as that work isn't itself a |
| parser generator using the skeleton or a modified version thereof |
| as a parser skeleton. Alternatively, if you modify or redistribute |
| the parser skeleton itself, you may (at your option) remove this |
| special exception, which will cause the skeleton and the resulting |
| Bison output files to be licensed under the GNU General Public |
| License without this special exception. |
| |
| This special exception was added by the Free Software Foundation in |
| version 2.2 of Bison. */ |
| |
| /* C LALR(1) parser skeleton written by Richard Stallman, by |
| simplifying the original so-called "semantic" parser. */ |
| |
| /* All symbols defined below should begin with yy or YY, to avoid |
| infringing on user name space. This should be done even for local |
| variables, as they might otherwise be expanded by user macros. |
| There are some unavoidable exceptions within include files to |
| define necessary library symbols; they are noted "INFRINGES ON |
| USER NAME SPACE" below. */ |
| |
| /* Identify Bison output. */ |
| #define YYBISON 1 |
| |
| /* Bison version. */ |
| #define YYBISON_VERSION "3.0.4" |
| |
| /* Skeleton name. */ |
| #define YYSKELETON_NAME "yacc.c" |
| |
| /* Pure parsers. */ |
| #define YYPURE 2 |
| |
| /* Push parsers. */ |
| #define YYPUSH 0 |
| |
| /* Pull parsers. */ |
| #define YYPULL 1 |
| |
| /* Copy the first part of user declarations. */ |
| |
| // |
| // Copyright (c) 2002-2014 The ANGLE Project Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| // |
| |
| // This file is auto-generated by generate_parser.sh. DO NOT EDIT! |
| |
| // clang-format off |
| |
| // Ignore errors in auto-generated code. |
| #if defined(__GNUC__) |
| #pragma GCC diagnostic ignored "-Wunused-function" |
| #pragma GCC diagnostic ignored "-Wunused-variable" |
| #pragma GCC diagnostic ignored "-Wswitch-enum" |
| #elif defined(_MSC_VER) |
| #pragma warning(disable: 4065) |
| #pragma warning(disable: 4189) |
| #pragma warning(disable: 4244) |
| #pragma warning(disable: 4505) |
| #pragma warning(disable: 4701) |
| #pragma warning(disable: 4702) |
| #endif |
| |
| #include "angle_gl.h" |
| #include "compiler/translator/Cache.h" |
| #include "compiler/translator/SymbolTable.h" |
| #include "compiler/translator/ParseContext.h" |
| #include "GLSLANG/ShaderLang.h" |
| |
| #define YYENABLE_NLS 0 |
| |
| using namespace sh; |
| |
| |
| |
| |
| # ifndef YY_NULLPTR |
| # if defined __cplusplus && 201103L <= __cplusplus |
| # define YY_NULLPTR nullptr |
| # else |
| # define YY_NULLPTR 0 |
| # endif |
| # endif |
| |
| /* Enabling verbose error messages. */ |
| #ifdef YYERROR_VERBOSE |
| # undef YYERROR_VERBOSE |
| # define YYERROR_VERBOSE 1 |
| #else |
| # define YYERROR_VERBOSE 0 |
| #endif |
| |
| /* In a future release of Bison, this section will be replaced |
| by #include "glslang_tab.h". */ |
| #ifndef YY_YY_GLSLANG_TAB_H_INCLUDED |
| # define YY_YY_GLSLANG_TAB_H_INCLUDED |
| /* Debug traces. */ |
| #ifndef YYDEBUG |
| # define YYDEBUG 0 |
| #endif |
| #if YYDEBUG |
| extern int yydebug; |
| #endif |
| /* "%code requires" blocks. */ |
| |
| |
| #define YYLTYPE TSourceLoc |
| #define YYLTYPE_IS_DECLARED 1 |
| |
| |
| |
| /* Token type. */ |
| #ifndef YYTOKENTYPE |
| # define YYTOKENTYPE |
| enum yytokentype |
| { |
| INVARIANT = 258, |
| HIGH_PRECISION = 259, |
| MEDIUM_PRECISION = 260, |
| LOW_PRECISION = 261, |
| PRECISION = 262, |
| ATTRIBUTE = 263, |
| CONST_QUAL = 264, |
| BOOL_TYPE = 265, |
| FLOAT_TYPE = 266, |
| INT_TYPE = 267, |
| UINT_TYPE = 268, |
| BREAK = 269, |
| CONTINUE = 270, |
| DO = 271, |
| ELSE = 272, |
| FOR = 273, |
| IF = 274, |
| DISCARD = 275, |
| RETURN = 276, |
| SWITCH = 277, |
| CASE = 278, |
| DEFAULT = 279, |
| BVEC2 = 280, |
| BVEC3 = 281, |
| BVEC4 = 282, |
| IVEC2 = 283, |
| IVEC3 = 284, |
| IVEC4 = 285, |
| VEC2 = 286, |
| VEC3 = 287, |
| VEC4 = 288, |
| UVEC2 = 289, |
| UVEC3 = 290, |
| UVEC4 = 291, |
| MATRIX2 = 292, |
| MATRIX3 = 293, |
| MATRIX4 = 294, |
| IN_QUAL = 295, |
| OUT_QUAL = 296, |
| INOUT_QUAL = 297, |
| UNIFORM = 298, |
| VARYING = 299, |
| MATRIX2x3 = 300, |
| MATRIX3x2 = 301, |
| MATRIX2x4 = 302, |
| MATRIX4x2 = 303, |
| MATRIX3x4 = 304, |
| MATRIX4x3 = 305, |
| CENTROID = 306, |
| FLAT = 307, |
| SMOOTH = 308, |
| READONLY = 309, |
| WRITEONLY = 310, |
| COHERENT = 311, |
| RESTRICT = 312, |
| VOLATILE = 313, |
| SHARED = 314, |
| STRUCT = 315, |
| VOID_TYPE = 316, |
| WHILE = 317, |
| SAMPLER2D = 318, |
| SAMPLERCUBE = 319, |
| SAMPLER_EXTERNAL_OES = 320, |
| SAMPLER2DRECT = 321, |
| SAMPLER2DARRAY = 322, |
| ISAMPLER2D = 323, |
| ISAMPLER3D = 324, |
| ISAMPLERCUBE = 325, |
| ISAMPLER2DARRAY = 326, |
| USAMPLER2D = 327, |
| USAMPLER3D = 328, |
| USAMPLERCUBE = 329, |
| USAMPLER2DARRAY = 330, |
| SAMPLER2DMS = 331, |
| ISAMPLER2DMS = 332, |
| USAMPLER2DMS = 333, |
| SAMPLER3D = 334, |
| SAMPLER3DRECT = 335, |
| SAMPLER2DSHADOW = 336, |
| SAMPLERCUBESHADOW = 337, |
| SAMPLER2DARRAYSHADOW = 338, |
| SAMPLEREXTERNAL2DY2YEXT = 339, |
| IMAGE2D = 340, |
| IIMAGE2D = 341, |
| UIMAGE2D = 342, |
| IMAGE3D = 343, |
| IIMAGE3D = 344, |
| UIMAGE3D = 345, |
| IMAGE2DARRAY = 346, |
| IIMAGE2DARRAY = 347, |
| UIMAGE2DARRAY = 348, |
| IMAGECUBE = 349, |
| IIMAGECUBE = 350, |
| UIMAGECUBE = 351, |
| LAYOUT = 352, |
| YUVCSCSTANDARDEXT = 353, |
| YUVCSCSTANDARDEXTCONSTANT = 354, |
| IDENTIFIER = 355, |
| TYPE_NAME = 356, |
| FLOATCONSTANT = 357, |
| INTCONSTANT = 358, |
| UINTCONSTANT = 359, |
| BOOLCONSTANT = 360, |
| FIELD_SELECTION = 361, |
| LEFT_OP = 362, |
| RIGHT_OP = 363, |
| INC_OP = 364, |
| DEC_OP = 365, |
| LE_OP = 366, |
| GE_OP = 367, |
| EQ_OP = 368, |
| NE_OP = 369, |
| AND_OP = 370, |
| OR_OP = 371, |
| XOR_OP = 372, |
| MUL_ASSIGN = 373, |
| DIV_ASSIGN = 374, |
| ADD_ASSIGN = 375, |
| MOD_ASSIGN = 376, |
| LEFT_ASSIGN = 377, |
| RIGHT_ASSIGN = 378, |
| AND_ASSIGN = 379, |
| XOR_ASSIGN = 380, |
| OR_ASSIGN = 381, |
| SUB_ASSIGN = 382, |
| LEFT_PAREN = 383, |
| RIGHT_PAREN = 384, |
| LEFT_BRACKET = 385, |
| RIGHT_BRACKET = 386, |
| LEFT_BRACE = 387, |
| RIGHT_BRACE = 388, |
| DOT = 389, |
| COMMA = 390, |
| COLON = 391, |
| EQUAL = 392, |
| SEMICOLON = 393, |
| BANG = 394, |
| DASH = 395, |
| TILDE = 396, |
| PLUS = 397, |
| STAR = 398, |
| SLASH = 399, |
| PERCENT = 400, |
| LEFT_ANGLE = 401, |
| RIGHT_ANGLE = 402, |
| VERTICAL_BAR = 403, |
| CARET = 404, |
| AMPERSAND = 405, |
| QUESTION = 406 |
| }; |
| #endif |
| |
| /* Value type. */ |
| #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED |
| |
| union YYSTYPE |
| { |
| |
| |
| struct { |
| union { |
| TString *string; |
| float f; |
| int i; |
| unsigned int u; |
| bool b; |
| }; |
| TSymbol* symbol; |
| } lex; |
| struct { |
| TOperator op; |
| union { |
| TIntermNode *intermNode; |
| TIntermNodePair nodePair; |
| TIntermFunctionCallOrMethod callOrMethodPair; |
| TIntermTyped *intermTypedNode; |
| TIntermAggregate *intermAggregate; |
| TIntermBlock *intermBlock; |
| TIntermDeclaration *intermDeclaration; |
| TIntermFunctionPrototype *intermFunctionPrototype; |
| TIntermSwitch *intermSwitch; |
| TIntermCase *intermCase; |
| }; |
| union { |
| TTypeSpecifierNonArray typeSpecifierNonArray; |
| TPublicType type; |
| TPrecision precision; |
| TLayoutQualifier layoutQualifier; |
| TQualifier qualifier; |
| TFunction *function; |
| TParameter param; |
| TField *field; |
| TFieldList *fieldList; |
| TQualifierWrapperBase *qualifierWrapper; |
| TTypeQualifierBuilder *typeQualifierBuilder; |
| }; |
| } interm; |
| |
| |
| }; |
| |
| typedef union YYSTYPE YYSTYPE; |
| # define YYSTYPE_IS_TRIVIAL 1 |
| # define YYSTYPE_IS_DECLARED 1 |
| #endif |
| |
| /* Location type. */ |
| #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED |
| typedef struct YYLTYPE YYLTYPE; |
| struct YYLTYPE |
| { |
| int first_line; |
| int first_column; |
| int last_line; |
| int last_column; |
| }; |
| # define YYLTYPE_IS_DECLARED 1 |
| # define YYLTYPE_IS_TRIVIAL 1 |
| #endif |
| |
| |
| |
| int yyparse (TParseContext* context, void *scanner); |
| |
| #endif /* !YY_YY_GLSLANG_TAB_H_INCLUDED */ |
| |
| /* Copy the second part of user declarations. */ |
| |
| |
| extern int yylex(YYSTYPE* yylval, YYLTYPE* yylloc, void* yyscanner); |
| extern void yyerror(YYLTYPE* yylloc, TParseContext* context, void *scanner, const char* reason); |
| |
| #define YYLLOC_DEFAULT(Current, Rhs, N) \ |
| do { \ |
| if (N) { \ |
| (Current).first_file = YYRHSLOC(Rhs, 1).first_file; \ |
| (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \ |
| (Current).last_file = YYRHSLOC(Rhs, N).last_file; \ |
| (Current).last_line = YYRHSLOC(Rhs, N).last_line; \ |
| } \ |
| else { \ |
| (Current).first_file = YYRHSLOC(Rhs, 0).last_file; \ |
| (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \ |
| (Current).last_file = YYRHSLOC(Rhs, 0).last_file; \ |
| (Current).last_line = YYRHSLOC(Rhs, 0).last_line; \ |
| } \ |
| } while (0) |
| |
| #define VERTEX_ONLY(S, L) { \ |
| if (context->getShaderType() != GL_VERTEX_SHADER) { \ |
| context->error(L, " supported in vertex shaders only ", S); \ |
| } \ |
| } |
| |
| #define FRAG_ONLY(S, L) { \ |
| if (context->getShaderType() != GL_FRAGMENT_SHADER) { \ |
| context->error(L, " supported in fragment shaders only ", S); \ |
| } \ |
| } |
| |
| #define COMPUTE_ONLY(S, L) { \ |
| if (context->getShaderType() != GL_COMPUTE_SHADER) { \ |
| context->error(L, " supported in compute shaders only ", S); \ |
| } \ |
| } |
| |
| #define NON_COMPUTE_ONLY(S, L) { \ |
| if (context->getShaderType() != GL_VERTEX_SHADER && context->getShaderType() != GL_FRAGMENT_SHADER) { \ |
| context->error(L, " supported in vertex and fragment shaders only ", S); \ |
| } \ |
| } |
| |
| #define ES2_ONLY(S, L) { \ |
| if (context->getShaderVersion() != 100) { \ |
| context->error(L, " supported in GLSL ES 1.00 only ", S); \ |
| } \ |
| } |
| |
| #define ES3_OR_NEWER(TOKEN, LINE, REASON) { \ |
| if (context->getShaderVersion() < 300) { \ |
| context->error(LINE, REASON " supported in GLSL ES 3.00 and above only ", TOKEN); \ |
| } \ |
| } |
| |
| #define ES3_1_ONLY(TOKEN, LINE, REASON) { \ |
| if (context->getShaderVersion() != 310) { \ |
| context->error(LINE, REASON " supported in GLSL ES 3.10 only ", TOKEN); \ |
| } \ |
| } |
| |
| |
| |
| #ifdef short |
| # undef short |
| #endif |
| |
| #ifdef YYTYPE_UINT8 |
| typedef YYTYPE_UINT8 yytype_uint8; |
| #else |
| typedef unsigned char yytype_uint8; |
| #endif |
| |
| #ifdef YYTYPE_INT8 |
| typedef YYTYPE_INT8 yytype_int8; |
| #else |
| typedef signed char yytype_int8; |
| #endif |
| |
| #ifdef YYTYPE_UINT16 |
| typedef YYTYPE_UINT16 yytype_uint16; |
| #else |
| typedef unsigned short int yytype_uint16; |
| #endif |
| |
| #ifdef YYTYPE_INT16 |
| typedef YYTYPE_INT16 yytype_int16; |
| #else |
| typedef short int yytype_int16; |
| #endif |
| |
| #ifndef YYSIZE_T |
| # ifdef __SIZE_TYPE__ |
| # define YYSIZE_T __SIZE_TYPE__ |
| # elif defined size_t |
| # define YYSIZE_T size_t |
| # elif ! defined YYSIZE_T |
| # include <stddef.h> /* INFRINGES ON USER NAME SPACE */ |
| # define YYSIZE_T size_t |
| # else |
| # define YYSIZE_T unsigned int |
| # endif |
| #endif |
| |
| #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) |
| |
| #ifndef YY_ |
| # if defined YYENABLE_NLS && YYENABLE_NLS |
| # if ENABLE_NLS |
| # include <libintl.h> /* INFRINGES ON USER NAME SPACE */ |
| # define YY_(Msgid) dgettext ("bison-runtime", Msgid) |
| # endif |
| # endif |
| # ifndef YY_ |
| # define YY_(Msgid) Msgid |
| # endif |
| #endif |
| |
| #ifndef YY_ATTRIBUTE |
| # if (defined __GNUC__ \ |
| && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \ |
| || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C |
| # define YY_ATTRIBUTE(Spec) __attribute__(Spec) |
| # else |
| # define YY_ATTRIBUTE(Spec) /* empty */ |
| # endif |
| #endif |
| |
| #ifndef YY_ATTRIBUTE_PURE |
| # define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__)) |
| #endif |
| |
| #ifndef YY_ATTRIBUTE_UNUSED |
| # define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__)) |
| #endif |
| |
| #if !defined _Noreturn \ |
| && (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112) |
| # if defined _MSC_VER && 1200 <= _MSC_VER |
| # define _Noreturn __declspec (noreturn) |
| # else |
| # define _Noreturn YY_ATTRIBUTE ((__noreturn__)) |
| # endif |
| #endif |
| |
| /* Suppress unused-variable warnings by "using" E. */ |
| #if ! defined lint || defined __GNUC__ |
| # define YYUSE(E) ((void) (E)) |
| #else |
| # define YYUSE(E) /* empty */ |
| #endif |
| |
| #if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ |
| /* Suppress an incorrect diagnostic about yylval being uninitialized. */ |
| # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ |
| _Pragma ("GCC diagnostic push") \ |
| _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\ |
| _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") |
| # define YY_IGNORE_MAYBE_UNINITIALIZED_END \ |
| _Pragma ("GCC diagnostic pop") |
| #else |
| # define YY_INITIAL_VALUE(Value) Value |
| #endif |
| #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN |
| # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN |
| # define YY_IGNORE_MAYBE_UNINITIALIZED_END |
| #endif |
| #ifndef YY_INITIAL_VALUE |
| # define YY_INITIAL_VALUE(Value) /* Nothing. */ |
| #endif |
| |
| |
| #if ! defined yyoverflow || YYERROR_VERBOSE |
| |
| /* The parser invokes alloca or malloc; define the necessary symbols. */ |
| |
| # ifdef YYSTACK_USE_ALLOCA |
| # if YYSTACK_USE_ALLOCA |
| # ifdef __GNUC__ |
| # define YYSTACK_ALLOC __builtin_alloca |
| # elif defined __BUILTIN_VA_ARG_INCR |
| # include <alloca.h> /* INFRINGES ON USER NAME SPACE */ |
| # elif defined _AIX |
| # define YYSTACK_ALLOC __alloca |
| # elif defined _MSC_VER |
| # include <malloc.h> /* INFRINGES ON USER NAME SPACE */ |
| # define alloca _alloca |
| # else |
| # define YYSTACK_ALLOC alloca |
| # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS |
| # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ |
| /* Use EXIT_SUCCESS as a witness for stdlib.h. */ |
| # ifndef EXIT_SUCCESS |
| # define EXIT_SUCCESS 0 |
| # endif |
| # endif |
| # endif |
| # endif |
| # endif |
| |
| # ifdef YYSTACK_ALLOC |
| /* Pacify GCC's 'empty if-body' warning. */ |
| # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) |
| # ifndef YYSTACK_ALLOC_MAXIMUM |
| /* The OS might guarantee only one guard page at the bottom of the stack, |
| and a page size can be as small as 4096 bytes. So we cannot safely |
| invoke alloca (N) if N exceeds 4096. Use a slightly smaller number |
| to allow for a few compiler-allocated temporary stack slots. */ |
| # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ |
| # endif |
| # else |
| # define YYSTACK_ALLOC YYMALLOC |
| # define YYSTACK_FREE YYFREE |
| # ifndef YYSTACK_ALLOC_MAXIMUM |
| # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM |
| # endif |
| # if (defined __cplusplus && ! defined EXIT_SUCCESS \ |
| && ! ((defined YYMALLOC || defined malloc) \ |
| && (defined YYFREE || defined free))) |
| # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ |
| # ifndef EXIT_SUCCESS |
| # define EXIT_SUCCESS 0 |
| # endif |
| # endif |
| # ifndef YYMALLOC |
| # define YYMALLOC malloc |
| # if ! defined malloc && ! defined EXIT_SUCCESS |
| void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ |
| # endif |
| # endif |
| # ifndef YYFREE |
| # define YYFREE free |
| # if ! defined free && ! defined EXIT_SUCCESS |
| void free (void *); /* INFRINGES ON USER NAME SPACE */ |
| # endif |
| # endif |
| # endif |
| #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ |
| |
| |
| #if (! defined yyoverflow \ |
| && (! defined __cplusplus \ |
| || (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \ |
| && defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) |
| |
| /* A type that is properly aligned for any stack member. */ |
| union yyalloc |
| { |
| yytype_int16 yyss_alloc; |
| YYSTYPE yyvs_alloc; |
| YYLTYPE yyls_alloc; |
| }; |
| |
| /* The size of the maximum gap between one aligned stack and the next. */ |
| # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) |
| |
| /* The size of an array large to enough to hold all stacks, each with |
| N elements. */ |
| # define YYSTACK_BYTES(N) \ |
| ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \ |
| + 2 * YYSTACK_GAP_MAXIMUM) |
| |
| # define YYCOPY_NEEDED 1 |
| |
| /* Relocate STACK from its old location to the new one. The |
| local variables YYSIZE and YYSTACKSIZE give the old and new number of |
| elements in the stack, and YYPTR gives the new location of the |
| stack. Advance YYPTR to a properly aligned location for the next |
| stack. */ |
| # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ |
| do \ |
| { \ |
| YYSIZE_T yynewbytes; \ |
| YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ |
| Stack = &yyptr->Stack_alloc; \ |
| yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ |
| yyptr += yynewbytes / sizeof (*yyptr); \ |
| } \ |
| while (0) |
| |
| #endif |
| |
| #if defined YYCOPY_NEEDED && YYCOPY_NEEDED |
| /* Copy COUNT objects from SRC to DST. The source and destination do |
| not overlap. */ |
| # ifndef YYCOPY |
| # if defined __GNUC__ && 1 < __GNUC__ |
| # define YYCOPY(Dst, Src, Count) \ |
| __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src))) |
| # else |
| # define YYCOPY(Dst, Src, Count) \ |
| do \ |
| { \ |
| YYSIZE_T yyi; \ |
| for (yyi = 0; yyi < (Count); yyi++) \ |
| (Dst)[yyi] = (Src)[yyi]; \ |
| } \ |
| while (0) |
| # endif |
| # endif |
| #endif /* !YYCOPY_NEEDED */ |
| |
| /* YYFINAL -- State number of the termination state. */ |
| #define YYFINAL 132 |
| /* YYLAST -- Last index in YYTABLE. */ |
| #define YYLAST 2993 |
| |
| /* YYNTOKENS -- Number of terminals. */ |
| #define YYNTOKENS 152 |
| /* YYNNTS -- Number of nonterminals. */ |
| #define YYNNTS 94 |
| /* YYNRULES -- Number of rules. */ |
| #define YYNRULES 294 |
| /* YYNSTATES -- Number of states. */ |
| #define YYNSTATES 430 |
| |
| /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned |
| by yylex, with out-of-bounds checking. */ |
| #define YYUNDEFTOK 2 |
| #define YYMAXUTOK 406 |
| |
| #define YYTRANSLATE(YYX) \ |
| ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) |
| |
| /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM |
| as returned by yylex, without out-of-bounds checking. */ |
| static const yytype_uint8 yytranslate[] = |
| { |
| 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, |
| 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, |
| 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, |
| 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, |
| 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, |
| 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, |
| 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, |
| 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, |
| 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, |
| 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, |
| 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, |
| 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, |
| 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, |
| 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, |
| 145, 146, 147, 148, 149, 150, 151 |
| }; |
| |
| #if YYDEBUG |
| /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ |
| static const yytype_uint16 yyrline[] = |
| { |
| 0, 248, 248, 249, 252, 262, 265, 270, 275, 280, |
| 285, 293, 299, 302, 305, 308, 311, 314, 320, 327, |
| 333, 337, 345, 348, 354, 358, 365, 370, 377, 385, |
| 391, 397, 406, 409, 412, 415, 425, 426, 427, 428, |
| 436, 437, 440, 443, 450, 451, 454, 460, 461, 465, |
| 472, 473, 476, 479, 482, 488, 489, 492, 498, 499, |
| 506, 507, 514, 515, 522, 523, 529, 530, 536, 537, |
| 543, 544, 550, 551, 558, 559, 560, 561, 565, 566, |
| 567, 571, 575, 579, 583, 590, 593, 599, 606, 613, |
| 616, 619, 628, 632, 636, 640, 644, 651, 658, 661, |
| 668, 676, 696, 706, 714, 739, 743, 747, 751, 758, |
| 765, 768, 772, 776, 781, 786, 793, 797, 801, 805, |
| 810, 815, 822, 826, 832, 835, 841, 845, 852, 858, |
| 862, 866, 869, 872, 881, 887, 895, 898, 918, 937, |
| 944, 948, 952, 955, 958, 961, 964, 967, 975, 982, |
| 985, 988, 994, 1001, 1004, 1010, 1013, 1016, 1019, 1025, |
| 1028, 1033, 1044, 1047, 1050, 1053, 1056, 1059, 1063, 1067, |
| 1071, 1075, 1079, 1083, 1087, 1091, 1095, 1099, 1103, 1107, |
| 1111, 1115, 1119, 1123, 1127, 1131, 1135, 1139, 1143, 1149, |
| 1152, 1155, 1158, 1161, 1164, 1167, 1170, 1173, 1176, 1179, |
| 1182, 1185, 1188, 1191, 1194, 1197, 1200, 1203, 1210, 1216, |
| 1222, 1225, 1228, 1231, 1234, 1237, 1240, 1243, 1246, 1249, |
| 1252, 1255, 1258, 1261, 1273, 1273, 1276, 1276, 1282, 1285, |
| 1291, 1294, 1301, 1305, 1311, 1317, 1329, 1333, 1337, 1338, |
| 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1354, 1355, 1355, |
| 1355, 1364, 1365, 1369, 1369, 1370, 1370, 1375, 1378, 1387, |
| 1392, 1399, 1400, 1404, 1411, 1415, 1422, 1422, 1429, 1432, |
| 1439, 1443, 1456, 1456, 1461, 1461, 1467, 1467, 1475, 1478, |
| 1484, 1487, 1493, 1497, 1504, 1507, 1510, 1513, 1516, 1525, |
| 1531, 1537, 1540, 1546, 1546 |
| }; |
| #endif |
| |
| #if YYDEBUG || YYERROR_VERBOSE || 0 |
| /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. |
| First, the terminals, then, starting at YYNTOKENS, nonterminals. */ |
| static const char *const yytname[] = |
| { |
| "$end", "error", "$undefined", "INVARIANT", "HIGH_PRECISION", |
| "MEDIUM_PRECISION", "LOW_PRECISION", "PRECISION", "ATTRIBUTE", |
| "CONST_QUAL", "BOOL_TYPE", "FLOAT_TYPE", "INT_TYPE", "UINT_TYPE", |
| "BREAK", "CONTINUE", "DO", "ELSE", "FOR", "IF", "DISCARD", "RETURN", |
| "SWITCH", "CASE", "DEFAULT", "BVEC2", "BVEC3", "BVEC4", "IVEC2", "IVEC3", |
| "IVEC4", "VEC2", "VEC3", "VEC4", "UVEC2", "UVEC3", "UVEC4", "MATRIX2", |
| "MATRIX3", "MATRIX4", "IN_QUAL", "OUT_QUAL", "INOUT_QUAL", "UNIFORM", |
| "VARYING", "MATRIX2x3", "MATRIX3x2", "MATRIX2x4", "MATRIX4x2", |
| "MATRIX3x4", "MATRIX4x3", "CENTROID", "FLAT", "SMOOTH", "READONLY", |
| "WRITEONLY", "COHERENT", "RESTRICT", "VOLATILE", "SHARED", "STRUCT", |
| "VOID_TYPE", "WHILE", "SAMPLER2D", "SAMPLERCUBE", "SAMPLER_EXTERNAL_OES", |
| "SAMPLER2DRECT", "SAMPLER2DARRAY", "ISAMPLER2D", "ISAMPLER3D", |
| "ISAMPLERCUBE", "ISAMPLER2DARRAY", "USAMPLER2D", "USAMPLER3D", |
| "USAMPLERCUBE", "USAMPLER2DARRAY", "SAMPLER2DMS", "ISAMPLER2DMS", |
| "USAMPLER2DMS", "SAMPLER3D", "SAMPLER3DRECT", "SAMPLER2DSHADOW", |
| "SAMPLERCUBESHADOW", "SAMPLER2DARRAYSHADOW", "SAMPLEREXTERNAL2DY2YEXT", |
| "IMAGE2D", "IIMAGE2D", "UIMAGE2D", "IMAGE3D", "IIMAGE3D", "UIMAGE3D", |
| "IMAGE2DARRAY", "IIMAGE2DARRAY", "UIMAGE2DARRAY", "IMAGECUBE", |
| "IIMAGECUBE", "UIMAGECUBE", "LAYOUT", "YUVCSCSTANDARDEXT", |
| "YUVCSCSTANDARDEXTCONSTANT", "IDENTIFIER", "TYPE_NAME", "FLOATCONSTANT", |
| "INTCONSTANT", "UINTCONSTANT", "BOOLCONSTANT", "FIELD_SELECTION", |
| "LEFT_OP", "RIGHT_OP", "INC_OP", "DEC_OP", "LE_OP", "GE_OP", "EQ_OP", |
| "NE_OP", "AND_OP", "OR_OP", "XOR_OP", "MUL_ASSIGN", "DIV_ASSIGN", |
| "ADD_ASSIGN", "MOD_ASSIGN", "LEFT_ASSIGN", "RIGHT_ASSIGN", "AND_ASSIGN", |
| "XOR_ASSIGN", "OR_ASSIGN", "SUB_ASSIGN", "LEFT_PAREN", "RIGHT_PAREN", |
| "LEFT_BRACKET", "RIGHT_BRACKET", "LEFT_BRACE", "RIGHT_BRACE", "DOT", |
| "COMMA", "COLON", "EQUAL", "SEMICOLON", "BANG", "DASH", "TILDE", "PLUS", |
| "STAR", "SLASH", "PERCENT", "LEFT_ANGLE", "RIGHT_ANGLE", "VERTICAL_BAR", |
| "CARET", "AMPERSAND", "QUESTION", "$accept", "identifier", |
| "variable_identifier", "primary_expression", "postfix_expression", |
| "integer_expression", "function_call", "function_call_or_method", |
| "function_call_generic", "function_call_header_no_parameters", |
| "function_call_header_with_parameters", "function_call_header", |
| "function_identifier", "unary_expression", "unary_operator", |
| "multiplicative_expression", "additive_expression", "shift_expression", |
| "relational_expression", "equality_expression", "and_expression", |
| "exclusive_or_expression", "inclusive_or_expression", |
| "logical_and_expression", "logical_xor_expression", |
| "logical_or_expression", "conditional_expression", |
| "assignment_expression", "assignment_operator", "expression", |
| "constant_expression", "enter_struct", "declaration", |
| "function_prototype", "function_declarator", |
| "function_header_with_parameters", "function_header", |
| "parameter_declarator", "parameter_declaration", |
| "parameter_type_specifier", "init_declarator_list", "single_declaration", |
| "fully_specified_type", "interpolation_qualifier", "type_qualifier", |
| "invariant_qualifier", "single_type_qualifier", "storage_qualifier", |
| "type_specifier", "precision_qualifier", "layout_qualifier", |
| "layout_qualifier_id_list", "layout_qualifier_id", |
| "type_specifier_no_prec", "type_specifier_nonarray", "struct_specifier", |
| "$@1", "$@2", "struct_declaration_list", "struct_declaration", |
| "struct_declarator_list", "struct_declarator", "initializer", |
| "declaration_statement", "statement", "simple_statement", |
| "compound_statement", "$@3", "$@4", "statement_no_new_scope", |
| "statement_with_scope", "$@5", "$@6", "compound_statement_no_new_scope", |
| "statement_list", "expression_statement", "selection_statement", |
| "selection_rest_statement", "switch_statement", "$@7", "case_label", |
| "condition", "iteration_statement", "$@8", "$@9", "$@10", |
| "for_init_statement", "conditionopt", "for_rest_statement", |
| "jump_statement", "translation_unit", "external_declaration", |
| "function_definition", "$@11", YY_NULLPTR |
| }; |
| #endif |
| |
| # ifdef YYPRINT |
| /* YYTOKNUM[NUM] -- (External) token number corresponding to the |
| (internal) symbol number NUM (which must be that of a token). */ |
| static const yytype_uint16 yytoknum[] = |
| { |
| 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, |
| 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, |
| 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, |
| 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, |
| 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, |
| 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, |
| 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, |
| 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, |
| 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, |
| 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, |
| 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, |
| 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, |
| 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, |
| 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, |
| 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, |
| 405, 406 |
| }; |
| # endif |
| |
| #define YYPACT_NINF -368 |
| |
| #define yypact_value_is_default(Yystate) \ |
| (!!((Yystate) == (-368))) |
| |
| #define YYTABLE_NINF -254 |
| |
| #define yytable_value_is_error(Yytable_value) \ |
| 0 |
| |
| /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing |
| STATE-NUM. */ |
| static const yytype_int16 yypact[] = |
| { |
| 2609, -368, -368, -368, -368, 142, -368, -368, -368, -368, |
| -368, -368, -368, -368, -368, -368, -368, -368, -368, -368, |
| -368, -368, -368, -368, -368, -368, -368, -368, -368, -368, |
| -368, -368, -368, -368, -368, -368, -368, -368, -368, -368, |
| -368, -368, -368, -368, -368, -368, -368, -80, -368, -368, |
| -368, -368, -368, -368, -368, -368, -368, -368, -368, -368, |
| -368, -368, -368, -368, -368, -368, -368, -368, -368, -368, |
| -368, -368, -368, -368, -368, -368, -368, -368, -368, -368, |
| -368, -368, -68, -368, -368, -368, -69, -56, -50, 2708, |
| -95, -368, -75, -368, 1364, -368, -368, -368, -368, -368, |
| -368, -368, -37, -368, 2510, -368, -368, 2892, -368, -368, |
| -368, -22, -43, -368, -17, -368, 2708, -368, -368, -368, |
| 2708, 29, 29, -368, -20, -103, -96, -368, 2708, -368, |
| -368, 1458, -368, -368, -32, 2708, -368, -368, -15, -65, |
| -368, 422, -368, -368, -368, -368, 9, -99, -368, 1580, |
| 1943, -368, -368, 2708, 29, 2183, -368, -368, 24, -368, |
| -368, -368, -368, -368, 1943, 1943, 1943, -368, -368, -368, |
| -368, -368, -368, -368, -38, -368, -368, -368, 35, -48, |
| 2062, 26, -368, 1943, 6, -89, 49, -67, 23, 18, |
| 22, 27, 57, 60, -93, -368, 47, -368, -368, 2292, |
| 2708, 55, -368, -43, 41, 42, -368, 53, 56, 48, |
| 1702, 61, 1943, 52, 62, 50, -368, -368, 98, -368, |
| -368, -73, -368, -69, 64, -368, -368, -368, -368, 562, |
| -368, -368, -368, -368, -368, -368, 1943, 1821, 1943, 58, |
| 54, -368, -368, 29, 63, -52, -368, -82, -368, -368, |
| -368, -47, -368, -368, 1943, 2800, -368, -368, 1943, 67, |
| -368, -368, -368, 1943, 1943, 1943, 1943, 1943, 1943, 1943, |
| 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, |
| 1943, 1943, 1943, -368, -368, 2401, -368, -368, -368, -368, |
| -368, 65, -368, 1943, -368, -368, -40, 1943, 66, -368, |
| -368, -368, 702, -368, -368, -368, -368, -368, -368, -368, |
| -368, -368, -368, -368, 1943, 1943, -368, -368, -368, 70, |
| 68, 72, -368, 1943, 69, -12, 1943, 29, -368, -106, |
| -368, -368, 76, 73, -368, 83, -368, -368, -368, -368, |
| -368, 6, 6, -89, -89, 49, 49, 49, 49, -67, |
| -67, 23, 18, 22, 27, 57, 60, 25, -368, 151, |
| -17, 982, 1122, -45, -368, -26, -368, 1243, 702, -368, |
| -368, -368, 1943, 78, -368, 1943, -368, 95, -368, 1943, |
| -368, -368, 1943, 99, -368, -368, -368, -368, 1243, 65, |
| -368, 73, 29, 2708, 101, 103, -368, 1943, -368, -368, |
| 106, -368, 1943, -368, 94, 109, 222, -368, 108, 105, |
| 842, -368, -368, 107, -24, 1943, 842, 65, -368, 1943, |
| -368, -368, -368, -368, 110, 73, -368, -368, -368, -368 |
| }; |
| |
| /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. |
| Performed when YYTABLE does not specify something else to do. Zero |
| means the default is an error. */ |
| static const yytype_uint16 yydefact[] = |
| { |
| 0, 128, 149, 150, 151, 0, 134, 136, 166, 163, |
| 164, 165, 170, 171, 172, 173, 174, 175, 167, 168, |
| 169, 176, 177, 178, 179, 180, 181, 137, 138, 139, |
| 141, 135, 182, 183, 184, 185, 186, 187, 140, 125, |
| 124, 142, 143, 144, 145, 146, 147, 0, 162, 189, |
| 191, 207, 209, 192, 194, 195, 196, 197, 199, 200, |
| 201, 202, 193, 198, 203, 190, 204, 205, 206, 208, |
| 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, |
| 221, 222, 0, 188, 223, 292, 293, 0, 99, 98, |
| 0, 110, 116, 132, 0, 133, 126, 129, 122, 131, |
| 130, 148, 159, 210, 0, 289, 291, 0, 2, 3, |
| 226, 0, 0, 89, 0, 97, 0, 106, 100, 108, |
| 0, 109, 0, 90, 2, 117, 0, 95, 0, 127, |
| 123, 0, 1, 290, 0, 0, 224, 158, 155, 0, |
| 153, 0, 294, 101, 105, 107, 103, 111, 102, 0, |
| 0, 88, 96, 0, 0, 0, 228, 10, 4, 8, |
| 6, 7, 9, 31, 0, 0, 0, 160, 38, 37, |
| 39, 36, 5, 12, 32, 14, 19, 20, 0, 0, |
| 25, 0, 40, 0, 44, 47, 50, 55, 58, 60, |
| 62, 64, 66, 68, 70, 87, 0, 29, 91, 0, |
| 0, 0, 152, 0, 0, 0, 274, 0, 0, 0, |
| 0, 0, 0, 0, 0, 248, 257, 261, 40, 72, |
| 85, 0, 237, 0, 148, 240, 259, 239, 238, 0, |
| 241, 242, 243, 244, 245, 246, 0, 0, 0, 0, |
| 0, 236, 121, 0, 234, 0, 232, 0, 229, 33, |
| 34, 0, 16, 17, 0, 0, 23, 22, 0, 162, |
| 26, 28, 35, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 161, 227, 0, 156, 157, 154, 285, |
| 284, 255, 276, 0, 288, 286, 0, 0, 0, 269, |
| 272, 247, 0, 75, 76, 78, 77, 80, 81, 82, |
| 83, 84, 79, 74, 0, 0, 262, 258, 260, 0, |
| 0, 0, 115, 0, 118, 0, 0, 0, 230, 0, |
| 92, 11, 0, 18, 30, 15, 21, 27, 41, 42, |
| 43, 46, 45, 48, 49, 53, 54, 51, 52, 56, |
| 57, 59, 61, 63, 65, 67, 69, 0, 225, 0, |
| 0, 0, 0, 0, 287, 0, 268, 0, 249, 73, |
| 86, 104, 0, 112, 119, 0, 231, 0, 233, 0, |
| 93, 13, 0, 0, 254, 256, 279, 278, 281, 255, |
| 266, 270, 0, 0, 0, 0, 113, 0, 120, 235, |
| 0, 71, 0, 280, 0, 0, 265, 263, 0, 0, |
| 0, 250, 114, 0, 0, 282, 0, 255, 267, 0, |
| 252, 273, 251, 94, 0, 283, 277, 264, 271, 275 |
| }; |
| |
| /* YYPGOTO[NTERM-NUM]. */ |
| static const yytype_int16 yypgoto[] = |
| { |
| -368, -46, -368, -368, -368, -368, -368, -368, -9, -368, |
| -368, -368, -368, 45, -368, -104, -102, -139, -105, -33, |
| -27, -25, -28, -21, -29, -368, -112, -141, -368, -155, |
| -135, -368, 10, 17, -368, -368, -368, 134, 139, 138, |
| -368, -368, -339, -368, -81, -368, -90, -368, -87, 256, |
| -368, -368, 59, 0, -368, -368, -368, -368, -122, -140, |
| 20, -63, -232, -97, -224, -349, -142, -368, -368, -148, |
| -367, -368, -368, -111, -31, -92, -368, -368, -368, -368, |
| -368, -119, -368, -368, -368, -368, -368, -368, -368, -368, |
| -368, 168, -368, -368 |
| }; |
| |
| /* YYDEFGOTO[NTERM-NUM]. */ |
| static const yytype_int16 yydefgoto[] = |
| { |
| -1, 244, 172, 173, 174, 332, 175, 176, 177, 178, |
| 179, 180, 181, 218, 183, 184, 185, 186, 187, 188, |
| 189, 190, 191, 192, 193, 194, 219, 220, 314, 221, |
| 196, 128, 222, 223, 87, 88, 89, 117, 118, 119, |
| 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, |
| 100, 139, 140, 197, 102, 103, 200, 135, 155, 156, |
| 245, 246, 242, 225, 226, 227, 228, 302, 395, 421, |
| 359, 360, 361, 422, 229, 230, 231, 407, 232, 408, |
| 233, 394, 234, 367, 291, 362, 388, 404, 405, 235, |
| 104, 105, 106, 114 |
| }; |
| |
| /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If |
| positive, shift that token. If negative, reduce the rule whose |
| number is the opposite. If YYTABLE_NINF, syntax error. */ |
| static const yytype_int16 yytable[] = |
| { |
| 101, 111, 121, 142, 129, 318, 322, 130, 120, 241, |
| 85, 251, 385, 199, 240, 248, 137, 86, 329, 195, |
| 108, 109, 406, 281, 379, 124, 109, 149, 392, 121, |
| 129, 237, 380, 121, 150, 120, 151, 195, 238, 260, |
| 122, 154, 152, 123, 270, 271, 125, 153, 154, 392, |
| 427, 266, 110, 267, 153, 296, 330, 138, 282, 248, |
| 112, 420, 315, 129, 202, 316, 243, 420, 154, 113, |
| 203, 252, 253, 115, 153, 146, 147, 298, 285, 272, |
| 273, 257, 331, 327, 389, 116, 328, 258, 315, 101, |
| 315, 374, 254, 131, 101, 315, 255, 241, 364, 333, |
| 195, 319, 321, 390, 101, 424, 198, 134, 148, 315, |
| 136, 315, 154, 154, 85, 141, 101, 337, 153, 153, |
| 101, 86, 201, 327, 195, 195, 376, 357, 101, 108, |
| 109, 345, 346, 347, 348, 101, 274, 275, 363, 236, |
| 396, 224, 365, 398, 318, 248, 2, 3, 4, 263, |
| 264, 265, -30, 101, 261, 101, 268, 269, 286, 287, |
| 315, 382, 341, 342, 256, 412, 343, 344, 276, 349, |
| 350, 277, 279, 369, 370, 278, 182, 280, 283, 289, |
| 290, 292, 241, 301, 293, 324, 294, 428, 299, 297, |
| 300, 377, -29, 326, 182, 323, -24, -253, 154, 101, |
| 101, 371, 366, 373, 153, 372, 375, 381, 315, 249, |
| 250, -31, 391, 383, 195, 397, 303, 304, 305, 306, |
| 307, 308, 309, 310, 311, 312, 399, 402, 262, 224, |
| 410, 241, 415, 391, 241, 313, 411, 413, 416, 417, |
| 215, 401, 419, 351, 400, 423, 336, 414, 429, 384, |
| 352, 354, 356, 353, 144, 143, 241, 182, 145, 355, |
| 425, 107, 288, 325, 378, 386, 418, 195, 426, 403, |
| 387, 368, 133, 0, 0, 0, 0, 0, 241, 0, |
| 0, 182, 182, 0, 0, 101, 393, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 224, 129, 0, 0, 130, 393, 338, 339, |
| 340, 182, 182, 182, 182, 182, 182, 182, 182, 182, |
| 182, 182, 182, 182, 182, 182, 182, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 409, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 224, 224, 0, 0, 0, 0, 224, 224, 0, |
| 0, 182, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 224, 0, |
| 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 224, 0, 0, 0, 0, 0, 224, 0, 0, 0, |
| 0, 0, 0, 0, 182, 1, 2, 3, 4, 5, |
| 6, 7, 8, 9, 10, 11, 204, 205, 206, 0, |
| 207, 208, 209, 210, 211, 212, 213, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, |
| 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, |
| 45, 46, 47, 48, 214, 49, 50, 51, 52, 53, |
| 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, |
| 64, 65, 0, 66, 67, 68, 69, 70, 71, 72, |
| 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, |
| 83, 157, 158, 84, 159, 160, 161, 162, 163, 0, |
| 0, 164, 165, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 166, 0, 0, 0, 215, 216, 0, 0, 0, 0, |
| 217, 168, 169, 170, 171, 1, 2, 3, 4, 5, |
| 6, 7, 8, 9, 10, 11, 204, 205, 206, 0, |
| 207, 208, 209, 210, 211, 212, 213, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, |
| 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, |
| 45, 46, 47, 48, 214, 49, 50, 51, 52, 53, |
| 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, |
| 64, 65, 0, 66, 67, 68, 69, 70, 71, 72, |
| 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, |
| 83, 157, 158, 84, 159, 160, 161, 162, 163, 0, |
| 0, 164, 165, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 166, 0, 0, 0, 215, 317, 0, 0, 0, 0, |
| 217, 168, 169, 170, 171, 1, 2, 3, 4, 5, |
| 6, 7, 8, 9, 10, 11, 204, 205, 206, 0, |
| 207, 208, 209, 210, 211, 212, 213, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, |
| 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, |
| 45, 46, 47, 48, 214, 49, 50, 51, 52, 53, |
| 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, |
| 64, 65, 0, 66, 67, 68, 69, 70, 71, 72, |
| 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, |
| 83, 157, 158, 84, 159, 160, 161, 162, 163, 0, |
| 0, 164, 165, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 166, 0, 0, 0, 215, 0, 0, 0, 0, 0, |
| 217, 168, 169, 170, 171, 1, 2, 3, 4, 5, |
| 6, 7, 8, 9, 10, 11, 204, 205, 206, 0, |
| 207, 208, 209, 210, 211, 212, 213, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, |
| 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, |
| 45, 46, 47, 48, 214, 49, 50, 51, 52, 53, |
| 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, |
| 64, 65, 0, 66, 67, 68, 69, 70, 71, 72, |
| 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, |
| 83, 157, 158, 84, 159, 160, 161, 162, 163, 0, |
| 0, 164, 165, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 166, 0, 0, 0, 141, 0, 0, 0, 0, 0, |
| 217, 168, 169, 170, 171, 1, 2, 3, 4, 5, |
| 6, 7, 8, 9, 10, 11, 204, 205, 206, 0, |
| 207, 208, 209, 210, 211, 212, 213, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, |
| 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, |
| 45, 46, 47, 48, 214, 49, 50, 51, 52, 53, |
| 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, |
| 64, 65, 0, 66, 67, 68, 69, 70, 71, 72, |
| 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, |
| 83, 157, 158, 84, 159, 160, 161, 162, 163, 0, |
| 0, 164, 165, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 217, 168, 169, 170, 171, 1, 2, 3, 4, 5, |
| 6, 7, 8, 9, 10, 11, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, |
| 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, |
| 45, 46, 47, 48, 0, 49, 50, 51, 52, 53, |
| 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, |
| 64, 65, 0, 66, 67, 68, 69, 70, 71, 72, |
| 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, |
| 83, 157, 158, 84, 159, 160, 161, 162, 163, 0, |
| 0, 164, 165, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, |
| 166, 6, 7, 8, 9, 10, 11, 0, 0, 0, |
| 217, 168, 169, 170, 171, 0, 0, 0, 12, 13, |
| 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, |
| 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, |
| 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, |
| 44, 45, 46, 47, 48, 0, 49, 50, 51, 52, |
| 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, |
| 63, 64, 65, 0, 66, 67, 68, 69, 70, 71, |
| 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, |
| 82, 83, 157, 158, 84, 159, 160, 161, 162, 163, |
| 0, 0, 164, 165, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, |
| 4, 166, 6, 7, 8, 9, 10, 11, 0, 0, |
| 0, 0, 168, 169, 170, 171, 0, 0, 0, 12, |
| 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, |
| 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, |
| 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, |
| 43, 44, 45, 46, 47, 48, 0, 49, 50, 51, |
| 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, |
| 62, 63, 64, 65, 0, 66, 67, 68, 69, 70, |
| 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, |
| 81, 82, 83, 0, 126, 84, 0, 0, 8, 9, |
| 10, 11, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 12, 13, 14, 15, 16, 17, 18, |
| 19, 20, 21, 22, 23, 24, 25, 26, 0, 0, |
| 0, 0, 127, 32, 33, 34, 35, 36, 37, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 47, 48, |
| 0, 49, 50, 51, 52, 53, 54, 55, 56, 57, |
| 58, 59, 60, 61, 62, 63, 64, 65, 0, 66, |
| 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, |
| 77, 78, 79, 80, 81, 0, 83, 157, 158, 84, |
| 159, 160, 161, 162, 163, 0, 0, 164, 165, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 166, 0, 0, 167, |
| 8, 9, 10, 11, 0, 0, 0, 168, 169, 170, |
| 171, 0, 0, 0, 0, 12, 13, 14, 15, 16, |
| 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, |
| 0, 0, 0, 0, 0, 32, 33, 34, 35, 36, |
| 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 47, 48, 0, 49, 50, 51, 52, 53, 54, 55, |
| 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, |
| 0, 66, 67, 68, 69, 70, 71, 72, 73, 74, |
| 75, 76, 77, 78, 79, 80, 81, 0, 83, 157, |
| 158, 84, 159, 160, 161, 162, 163, 0, 0, 164, |
| 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 166, 0, |
| 0, 239, 8, 9, 10, 11, 0, 0, 0, 168, |
| 169, 170, 171, 0, 0, 0, 0, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 0, 0, 0, 0, 0, 32, 33, 34, |
| 35, 36, 37, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 47, 48, 0, 49, 50, 51, 52, 53, |
| 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, |
| 64, 65, 0, 66, 67, 68, 69, 70, 71, 72, |
| 73, 74, 75, 76, 77, 78, 79, 80, 81, 0, |
| 83, 157, 158, 84, 159, 160, 161, 162, 163, 0, |
| 0, 164, 165, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 166, 8, 9, 10, 11, 0, 0, 0, 0, 0, |
| 295, 168, 169, 170, 171, 0, 12, 13, 14, 15, |
| 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, |
| 26, 0, 0, 0, 0, 0, 32, 33, 34, 35, |
| 36, 37, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 47, 48, 0, 49, 50, 51, 52, 53, 54, |
| 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, |
| 65, 0, 66, 67, 68, 69, 70, 71, 72, 73, |
| 74, 75, 76, 77, 78, 79, 80, 81, 0, 83, |
| 157, 158, 84, 159, 160, 161, 162, 163, 0, 0, |
| 164, 165, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, |
| 0, 0, 320, 8, 9, 10, 11, 0, 0, 0, |
| 168, 169, 170, 171, 0, 0, 0, 0, 12, 13, |
| 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, |
| 24, 25, 26, 0, 0, 0, 0, 0, 32, 33, |
| 34, 35, 36, 37, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 47, 48, 0, 49, 50, 51, 52, |
| 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, |
| 63, 64, 65, 0, 66, 67, 68, 69, 70, 71, |
| 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, |
| 0, 83, 157, 158, 84, 159, 160, 161, 162, 163, |
| 0, 0, 164, 165, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 166, 8, 9, 10, 11, 0, 0, 0, 0, |
| 0, 0, 168, 169, 170, 171, 0, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 0, 0, 0, 0, 0, 32, 33, 34, |
| 35, 36, 37, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 47, 259, 0, 49, 50, 51, 52, 53, |
| 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, |
| 64, 65, 0, 66, 67, 68, 69, 70, 71, 72, |
| 73, 74, 75, 76, 77, 78, 79, 80, 81, 0, |
| 83, 157, 158, 84, 159, 160, 161, 162, 163, 0, |
| 0, 164, 165, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, |
| 166, 6, 7, 8, 9, 10, 11, 0, 0, 0, |
| 0, 168, 169, 170, 171, 0, 0, 0, 12, 13, |
| 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, |
| 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, |
| 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, |
| 44, 45, 46, 47, 48, 0, 49, 50, 51, 52, |
| 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, |
| 63, 64, 65, 0, 66, 67, 68, 69, 70, 71, |
| 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, |
| 82, 83, 0, 0, 84, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 1, 2, 3, 4, 0, |
| 6, 7, 8, 9, 10, 11, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 247, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, |
| 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, |
| 45, 46, 47, 48, 0, 49, 50, 51, 52, 53, |
| 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, |
| 64, 65, 0, 66, 67, 68, 69, 70, 71, 72, |
| 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, |
| 83, 0, 0, 84, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 1, 2, 3, 4, 0, 6, |
| 7, 8, 9, 10, 11, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 284, 12, 13, 14, 15, |
| 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, |
| 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, |
| 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, |
| 46, 47, 48, 0, 49, 50, 51, 52, 53, 54, |
| 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, |
| 65, 0, 66, 67, 68, 69, 70, 71, 72, 73, |
| 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, |
| 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, |
| 132, 0, 0, 1, 2, 3, 4, 5, 6, 7, |
| 8, 9, 10, 11, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 358, 12, 13, 14, 15, 16, |
| 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, |
| 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, |
| 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, |
| 47, 48, 0, 49, 50, 51, 52, 53, 54, 55, |
| 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, |
| 0, 66, 67, 68, 69, 70, 71, 72, 73, 74, |
| 75, 76, 77, 78, 79, 80, 81, 82, 83, 0, |
| 0, 84, 1, 2, 3, 4, 5, 6, 7, 8, |
| 9, 10, 11, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 12, 13, 14, 15, 16, 17, |
| 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, |
| 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, |
| 48, 0, 49, 50, 51, 52, 53, 54, 55, 56, |
| 57, 58, 59, 60, 61, 62, 63, 64, 65, 0, |
| 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, |
| 76, 77, 78, 79, 80, 81, 82, 83, 0, 0, |
| 84, 1, 2, 3, 4, 0, 6, 7, 8, 9, |
| 10, 11, 0, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 12, 13, 14, 15, 16, 17, 18, |
| 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, |
| 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, |
| 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, |
| 0, 49, 50, 51, 52, 53, 54, 55, 56, 57, |
| 58, 59, 60, 61, 62, 63, 64, 65, 0, 66, |
| 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, |
| 77, 78, 79, 80, 81, 82, 83, 0, 0, 84, |
| 8, 9, 10, 11, 0, 0, 0, 0, 0, 0, |
| 0, 0, 0, 0, 0, 12, 13, 14, 15, 16, |
| 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, |
| 0, 0, 0, 0, 0, 32, 33, 34, 35, 36, |
| 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 47, 48, 0, 49, 50, 51, 52, 53, 54, 55, |
| 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, |
| 0, 66, 67, 68, 69, 70, 71, 72, 73, 74, |
| 75, 76, 77, 78, 79, 80, 81, 0, 83, 0, |
| 334, 84, 8, 9, 10, 11, 335, 0, 0, 0, |
| 0, 0, 0, 0, 0, 0, 0, 12, 13, 14, |
| 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 25, 26, 0, 0, 0, 0, 0, 32, 33, 34, |
| 35, 36, 37, 0, 0, 0, 0, 0, 0, 0, |
| 0, 0, 47, 48, 0, 49, 50, 51, 52, 53, |
| 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, |
| 64, 65, 0, 66, 67, 68, 69, 70, 71, 72, |
| 73, 74, 75, 76, 77, 78, 79, 80, 81, 0, |
| 83, 0, 0, 84 |
| }; |
| |
| static const yytype_int16 yycheck[] = |
| { |
| 0, 47, 89, 114, 94, 229, 238, 94, 89, 150, |
| 0, 166, 361, 135, 149, 155, 59, 0, 100, 131, |
| 100, 101, 389, 116, 130, 100, 101, 130, 367, 116, |
| 120, 130, 138, 120, 137, 116, 132, 149, 137, 180, |
| 135, 128, 138, 138, 111, 112, 92, 128, 135, 388, |
| 417, 140, 132, 142, 135, 210, 138, 100, 151, 199, |
| 128, 410, 135, 153, 129, 138, 153, 416, 155, 138, |
| 135, 109, 110, 129, 155, 121, 122, 212, 200, 146, |
| 147, 129, 129, 135, 129, 135, 138, 135, 135, 89, |
| 135, 323, 130, 130, 94, 135, 134, 238, 138, 254, |
| 212, 236, 237, 129, 104, 129, 138, 107, 128, 135, |
| 132, 135, 199, 200, 104, 132, 116, 258, 199, 200, |
| 120, 104, 137, 135, 236, 237, 138, 282, 128, 100, |
| 101, 270, 271, 272, 273, 135, 113, 114, 293, 130, |
| 372, 141, 297, 375, 368, 285, 4, 5, 6, 143, |
| 144, 145, 128, 153, 128, 155, 107, 108, 103, 104, |
| 135, 136, 266, 267, 129, 397, 268, 269, 150, 274, |
| 275, 149, 115, 314, 315, 148, 131, 117, 131, 138, |
| 138, 128, 323, 133, 128, 131, 138, 419, 136, 128, |
| 128, 326, 128, 130, 149, 137, 129, 132, 285, 199, |
| 200, 131, 136, 131, 285, 137, 137, 131, 135, 164, |
| 165, 128, 367, 62, 326, 137, 118, 119, 120, 121, |
| 122, 123, 124, 125, 126, 127, 131, 128, 183, 229, |
| 129, 372, 138, 388, 375, 137, 133, 131, 129, 17, |
| 132, 382, 137, 276, 379, 138, 255, 402, 138, 360, |
| 277, 279, 281, 278, 120, 116, 397, 212, 120, 280, |
| 415, 5, 203, 243, 327, 362, 408, 379, 416, 388, |
| 362, 302, 104, -1, -1, -1, -1, -1, 419, -1, |
| -1, 236, 237, -1, -1, 285, 367, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, 302, 393, -1, -1, 393, 388, 263, 264, |
| 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, |
| 275, 276, 277, 278, 279, 280, 281, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, 392, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, 361, 362, -1, -1, -1, -1, 367, 368, -1, |
| -1, 326, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, 388, -1, |
| -1, -1, -1, 393, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 410, -1, -1, -1, -1, -1, 416, -1, -1, -1, |
| -1, -1, -1, -1, 379, 3, 4, 5, 6, 7, |
| 8, 9, 10, 11, 12, 13, 14, 15, 16, -1, |
| 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, |
| 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, |
| 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, |
| 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, |
| 78, 79, -1, 81, 82, 83, 84, 85, 86, 87, |
| 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, |
| 98, 99, 100, 101, 102, 103, 104, 105, 106, -1, |
| -1, 109, 110, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 128, -1, -1, -1, 132, 133, -1, -1, -1, -1, |
| 138, 139, 140, 141, 142, 3, 4, 5, 6, 7, |
| 8, 9, 10, 11, 12, 13, 14, 15, 16, -1, |
| 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, |
| 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, |
| 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, |
| 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, |
| 78, 79, -1, 81, 82, 83, 84, 85, 86, 87, |
| 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, |
| 98, 99, 100, 101, 102, 103, 104, 105, 106, -1, |
| -1, 109, 110, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 128, -1, -1, -1, 132, 133, -1, -1, -1, -1, |
| 138, 139, 140, 141, 142, 3, 4, 5, 6, 7, |
| 8, 9, 10, 11, 12, 13, 14, 15, 16, -1, |
| 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, |
| 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, |
| 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, |
| 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, |
| 78, 79, -1, 81, 82, 83, 84, 85, 86, 87, |
| 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, |
| 98, 99, 100, 101, 102, 103, 104, 105, 106, -1, |
| -1, 109, 110, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 128, -1, -1, -1, 132, -1, -1, -1, -1, -1, |
| 138, 139, 140, 141, 142, 3, 4, 5, 6, 7, |
| 8, 9, 10, 11, 12, 13, 14, 15, 16, -1, |
| 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, |
| 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, |
| 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, |
| 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, |
| 78, 79, -1, 81, 82, 83, 84, 85, 86, 87, |
| 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, |
| 98, 99, 100, 101, 102, 103, 104, 105, 106, -1, |
| -1, 109, 110, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 128, -1, -1, -1, 132, -1, -1, -1, -1, -1, |
| 138, 139, 140, 141, 142, 3, 4, 5, 6, 7, |
| 8, 9, 10, 11, 12, 13, 14, 15, 16, -1, |
| 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, |
| 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, |
| 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, |
| 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, |
| 78, 79, -1, 81, 82, 83, 84, 85, 86, 87, |
| 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, |
| 98, 99, 100, 101, 102, 103, 104, 105, 106, -1, |
| -1, 109, 110, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 128, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 138, 139, 140, 141, 142, 3, 4, 5, 6, 7, |
| 8, 9, 10, 11, 12, 13, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, |
| 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, |
| 58, 59, 60, 61, -1, 63, 64, 65, 66, 67, |
| 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, |
| 78, 79, -1, 81, 82, 83, 84, 85, 86, 87, |
| 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, |
| 98, 99, 100, 101, 102, 103, 104, 105, 106, -1, |
| -1, 109, 110, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, |
| 128, 8, 9, 10, 11, 12, 13, -1, -1, -1, |
| 138, 139, 140, 141, 142, -1, -1, -1, 25, 26, |
| 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, |
| 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, |
| 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, |
| 57, 58, 59, 60, 61, -1, 63, 64, 65, 66, |
| 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, |
| 77, 78, 79, -1, 81, 82, 83, 84, 85, 86, |
| 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, |
| 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, |
| -1, -1, 109, 110, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, |
| 6, 128, 8, 9, 10, 11, 12, 13, -1, -1, |
| -1, -1, 139, 140, 141, 142, -1, -1, -1, 25, |
| 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, |
| 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, |
| 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, |
| 56, 57, 58, 59, 60, 61, -1, 63, 64, 65, |
| 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, |
| 76, 77, 78, 79, -1, 81, 82, 83, 84, 85, |
| 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, |
| 96, 97, 98, -1, 100, 101, -1, -1, 10, 11, |
| 12, 13, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, |
| 32, 33, 34, 35, 36, 37, 38, 39, -1, -1, |
| -1, -1, 138, 45, 46, 47, 48, 49, 50, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, |
| -1, 63, 64, 65, 66, 67, 68, 69, 70, 71, |
| 72, 73, 74, 75, 76, 77, 78, 79, -1, 81, |
| 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, |
| 92, 93, 94, 95, 96, -1, 98, 99, 100, 101, |
| 102, 103, 104, 105, 106, -1, -1, 109, 110, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, 128, -1, -1, 131, |
| 10, 11, 12, 13, -1, -1, -1, 139, 140, 141, |
| 142, -1, -1, -1, -1, 25, 26, 27, 28, 29, |
| 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, |
| -1, -1, -1, -1, -1, 45, 46, 47, 48, 49, |
| 50, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 60, 61, -1, 63, 64, 65, 66, 67, 68, 69, |
| 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, |
| -1, 81, 82, 83, 84, 85, 86, 87, 88, 89, |
| 90, 91, 92, 93, 94, 95, 96, -1, 98, 99, |
| 100, 101, 102, 103, 104, 105, 106, -1, -1, 109, |
| 110, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, 128, -1, |
| -1, 131, 10, 11, 12, 13, -1, -1, -1, 139, |
| 140, 141, 142, -1, -1, -1, -1, 25, 26, 27, |
| 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, -1, -1, -1, -1, -1, 45, 46, 47, |
| 48, 49, 50, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, 60, 61, -1, 63, 64, 65, 66, 67, |
| 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, |
| 78, 79, -1, 81, 82, 83, 84, 85, 86, 87, |
| 88, 89, 90, 91, 92, 93, 94, 95, 96, -1, |
| 98, 99, 100, 101, 102, 103, 104, 105, 106, -1, |
| -1, 109, 110, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| 128, 10, 11, 12, 13, -1, -1, -1, -1, -1, |
| 138, 139, 140, 141, 142, -1, 25, 26, 27, 28, |
| 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, |
| 39, -1, -1, -1, -1, -1, 45, 46, 47, 48, |
| 49, 50, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, 60, 61, -1, 63, 64, 65, 66, 67, 68, |
| 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, |
| 79, -1, 81, 82, 83, 84, 85, 86, 87, 88, |
| 89, 90, 91, 92, 93, 94, 95, 96, -1, 98, |
| 99, 100, 101, 102, 103, 104, 105, 106, -1, -1, |
| 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, 128, |
| -1, -1, 131, 10, 11, 12, 13, -1, -1, -1, |
| 139, 140, 141, 142, -1, -1, -1, -1, 25, 26, |
| 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, |
| 37, 38, 39, -1, -1, -1, -1, -1, 45, 46, |
| 47, 48, 49, 50, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, 60, 61, -1, 63, 64, 65, 66, |
| 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, |
| 77, 78, 79, -1, 81, 82, 83, 84, 85, 86, |
| 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, |
| -1, 98, 99, 100, 101, 102, 103, 104, 105, 106, |
| -1, -1, 109, 110, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, |
| -1, 128, 10, 11, 12, 13, -1, -1, -1, -1, |
| -1, -1, 139, 140, 141, 142, -1, 25, 26, 27, |
| 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, -1, -1, -1, -1, -1, 45, 46, 47, |
| 48, 49, 50, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, 60, 61, -1, 63, 64, 65, 66, 67, |
| 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, |
| 78, 79, -1, 81, 82, 83, 84, 85, 86, 87, |
| 88, 89, 90, 91, 92, 93, 94, 95, 96, -1, |
| 98, 99, 100, 101, 102, 103, 104, 105, 106, -1, |
| -1, 109, 110, -1, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, |
| 128, 8, 9, 10, 11, 12, 13, -1, -1, -1, |
| -1, 139, 140, 141, 142, -1, -1, -1, 25, 26, |
| 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, |
| 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, |
| 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, |
| 57, 58, 59, 60, 61, -1, 63, 64, 65, 66, |
| 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, |
| 77, 78, 79, -1, 81, 82, 83, 84, 85, 86, |
| 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, |
| 97, 98, -1, -1, 101, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, 3, 4, 5, 6, -1, |
| 8, 9, 10, 11, 12, 13, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, -1, 133, 25, 26, 27, |
| 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, |
| 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, |
| 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, |
| 58, 59, 60, 61, -1, 63, 64, 65, 66, 67, |
| 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, |
| 78, 79, -1, 81, 82, 83, 84, 85, 86, 87, |
| 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, |
| 98, -1, -1, 101, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, 3, 4, 5, 6, -1, 8, |
| 9, 10, 11, 12, 13, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, -1, 133, 25, 26, 27, 28, |
| 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, |
| 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, |
| 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, |
| 59, 60, 61, -1, 63, 64, 65, 66, 67, 68, |
| 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, |
| 79, -1, 81, 82, 83, 84, 85, 86, 87, 88, |
| 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, |
| -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, |
| 0, -1, -1, 3, 4, 5, 6, 7, 8, 9, |
| 10, 11, 12, 13, -1, -1, -1, -1, -1, -1, |
| -1, -1, -1, -1, 133, 25, 26, 27, 28, 29, |
| 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, |
| 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, |
| 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, |
| 60, 61, -1, 63, 64, 65, 66, 67, 68, 69, |
| 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, |
| -1, 81, 82, 83, 84, 85, 86, 87, 88, 89, |
| 90, 91, 92, 93, 94, |