@aml-org/amf-antlr-parsers 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +9 -0
- package/lib/internal/graphql/GraphQL.interp +223 -0
- package/lib/internal/graphql/GraphQL.tokens +130 -0
- package/lib/internal/graphql/GraphQLLexer.interp +239 -0
- package/lib/internal/graphql/GraphQLLexer.js +264 -0
- package/lib/internal/graphql/GraphQLLexer.tokens +130 -0
- package/lib/internal/graphql/GraphQLListener.js +727 -0
- package/lib/internal/graphql/GraphQLParser.js +8018 -0
- package/lib/internal/graphqlcb.js +90 -0
- package/lib/internal/graphqlcb.m.js +34 -0
- package/lib/internal/graphqlfederation/GraphQLFederation.interp +253 -0
- package/lib/internal/graphqlfederation/GraphQLFederation.tokens +148 -0
- package/lib/internal/graphqlfederation/GraphQLFederationLexer.interp +344 -0
- package/lib/internal/graphqlfederation/GraphQLFederationLexer.js +300 -0
- package/lib/internal/graphqlfederation/GraphQLFederationLexer.tokens +152 -0
- package/lib/internal/graphqlfederation/GraphQLFederationListener.js +823 -0
- package/lib/internal/graphqlfederation/GraphQLFederationParser.interp +324 -0
- package/lib/internal/graphqlfederation/GraphQLFederationParser.js +12033 -0
- package/lib/internal/graphqlfederation/GraphQLFederationParser.tokens +152 -0
- package/lib/internal/graphqlfederation/GraphQLFederationParserListener.js +975 -0
- package/lib/internal/graphqlfederationcb.js +90 -0
- package/lib/internal/graphqlfederationcb.m.js +35 -0
- package/lib/internal/proto3/Protobuf3.interp +200 -0
- package/lib/internal/proto3/Protobuf3.tokens +128 -0
- package/lib/internal/proto3/Protobuf3Lexer.interp +234 -0
- package/lib/internal/proto3/Protobuf3Lexer.js +262 -0
- package/lib/internal/proto3/Protobuf3Lexer.tokens +128 -0
- package/lib/internal/proto3/Protobuf3Listener.js +575 -0
- package/lib/internal/proto3/Protobuf3Parser.js +6767 -0
- package/lib/internal/protobuf3cb.js +90 -0
- package/lib/internal/protobuf3cb.m.js +34 -0
- package/package.json +23 -0
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.GraphqlASTBuilderCB = void 0;
|
|
9
|
+
|
|
10
|
+
var _antlr = _interopRequireDefault(require("antlr4"));
|
|
11
|
+
|
|
12
|
+
var _GraphQLLexer = _interopRequireDefault(require("./graphql/GraphQLLexer.js"));
|
|
13
|
+
|
|
14
|
+
var _GraphQLParser = _interopRequireDefault(require("./graphql/GraphQLParser.js"));
|
|
15
|
+
|
|
16
|
+
var _GraphQLListener = _interopRequireDefault(require("./graphql/GraphQLListener.js"));
|
|
17
|
+
|
|
18
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
19
|
+
|
|
20
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
21
|
+
|
|
22
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
23
|
+
|
|
24
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
25
|
+
|
|
26
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
27
|
+
|
|
28
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
29
|
+
|
|
30
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
31
|
+
|
|
32
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
33
|
+
|
|
34
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
35
|
+
|
|
36
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
37
|
+
|
|
38
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
|
+
|
|
40
|
+
var GraphqlASTBuilderCB = /*#__PURE__*/function (_GraphqlListener) {
|
|
41
|
+
_inherits(GraphqlASTBuilderCB, _GraphqlListener);
|
|
42
|
+
|
|
43
|
+
var _super = _createSuper(GraphqlASTBuilderCB);
|
|
44
|
+
|
|
45
|
+
function GraphqlASTBuilderCB() {
|
|
46
|
+
_classCallCheck(this, GraphqlASTBuilderCB);
|
|
47
|
+
|
|
48
|
+
return _super.apply(this, arguments);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_createClass(GraphqlASTBuilderCB, [{
|
|
52
|
+
key: "visitTerminal",
|
|
53
|
+
value: function visitTerminal(node) {
|
|
54
|
+
this.cb.visitTerminal(node, this.parser);
|
|
55
|
+
}
|
|
56
|
+
}, {
|
|
57
|
+
key: "visitErrorNode",
|
|
58
|
+
value: function visitErrorNode(node) {
|
|
59
|
+
this.cb.visitErrorNode(node, this.parser);
|
|
60
|
+
}
|
|
61
|
+
}, {
|
|
62
|
+
key: "enterEveryRule",
|
|
63
|
+
value: function enterEveryRule(node) {
|
|
64
|
+
this.cb.enterEveryRule(node, this.parser);
|
|
65
|
+
}
|
|
66
|
+
}, {
|
|
67
|
+
key: "exitEveryRule",
|
|
68
|
+
value: function exitEveryRule(node) {
|
|
69
|
+
this.cb.exitEveryRule();
|
|
70
|
+
}
|
|
71
|
+
}, {
|
|
72
|
+
key: "run",
|
|
73
|
+
value: function run(input, cb) {
|
|
74
|
+
this.cb = cb;
|
|
75
|
+
var chars = new _antlr["default"].InputStream(input);
|
|
76
|
+
var lexer = new _GraphQLLexer["default"](chars);
|
|
77
|
+
var tokens = new _antlr["default"].CommonTokenStream(lexer);
|
|
78
|
+
this.parser = new _GraphQLParser["default"](tokens);
|
|
79
|
+
this.parser.buildParseTrees = true;
|
|
80
|
+
var tree = this.parser.document();
|
|
81
|
+
|
|
82
|
+
_antlr["default"].tree.ParseTreeWalker.DEFAULT.walk(this, tree);
|
|
83
|
+
}
|
|
84
|
+
}]);
|
|
85
|
+
|
|
86
|
+
return GraphqlASTBuilderCB;
|
|
87
|
+
}(_GraphQLListener["default"]);
|
|
88
|
+
|
|
89
|
+
exports.GraphqlASTBuilderCB = GraphqlASTBuilderCB;
|
|
90
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import antlr4 from 'antlr4';
|
|
2
|
+
import GraphqlLexer from './graphql/GraphQLLexer.js';
|
|
3
|
+
import GraphqlParser from './graphql/GraphQLParser.js';
|
|
4
|
+
import GraphqlListener from './graphql/GraphQLListener.js';
|
|
5
|
+
|
|
6
|
+
export class GraphqlASTBuilderCB extends GraphqlListener {
|
|
7
|
+
|
|
8
|
+
visitTerminal(node) {
|
|
9
|
+
this.cb.visitTerminal(node, this.parser)
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
visitErrorNode(node) {
|
|
13
|
+
this.cb.visitErrorNode(node, this.parser)
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
enterEveryRule(node) {
|
|
17
|
+
this.cb.enterEveryRule(node, this.parser)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
exitEveryRule(node) {
|
|
21
|
+
this.cb.exitEveryRule()
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
run(input, cb) {
|
|
25
|
+
this.cb = cb;
|
|
26
|
+
const chars = new antlr4.InputStream(input);
|
|
27
|
+
const lexer = new GraphqlLexer(chars);
|
|
28
|
+
const tokens = new antlr4.CommonTokenStream(lexer);
|
|
29
|
+
this.parser = new GraphqlParser(tokens);
|
|
30
|
+
this.parser.buildParseTrees = true;
|
|
31
|
+
const tree = this.parser.document();
|
|
32
|
+
antlr4.tree.ParseTreeWalker.DEFAULT.walk(this, tree);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
token literal names:
|
|
2
|
+
null
|
|
3
|
+
'query'
|
|
4
|
+
'mutation'
|
|
5
|
+
'subscription'
|
|
6
|
+
'{'
|
|
7
|
+
'}'
|
|
8
|
+
'('
|
|
9
|
+
')'
|
|
10
|
+
':'
|
|
11
|
+
'...'
|
|
12
|
+
'fragment'
|
|
13
|
+
'on'
|
|
14
|
+
'true'
|
|
15
|
+
'false'
|
|
16
|
+
'null'
|
|
17
|
+
'['
|
|
18
|
+
']'
|
|
19
|
+
'$'
|
|
20
|
+
'='
|
|
21
|
+
'!'
|
|
22
|
+
'@'
|
|
23
|
+
'schema'
|
|
24
|
+
'extend'
|
|
25
|
+
'scalar'
|
|
26
|
+
'type'
|
|
27
|
+
'implements'
|
|
28
|
+
'&'
|
|
29
|
+
'interface'
|
|
30
|
+
'union'
|
|
31
|
+
'|'
|
|
32
|
+
'enum'
|
|
33
|
+
'input'
|
|
34
|
+
'directive'
|
|
35
|
+
'QUERY'
|
|
36
|
+
'MUTATION'
|
|
37
|
+
'SUBSCRIPTION'
|
|
38
|
+
'FIELD'
|
|
39
|
+
'FRAGMENT_DEFINITION'
|
|
40
|
+
'FRAGMENT_SPREAD'
|
|
41
|
+
'INLINE_FRAGMENT'
|
|
42
|
+
'SCHEMA'
|
|
43
|
+
'SCALAR'
|
|
44
|
+
'OBJECT'
|
|
45
|
+
'FIELD_DEFINITION'
|
|
46
|
+
'ARGUMENT_DEFINITION'
|
|
47
|
+
'INTERFACE'
|
|
48
|
+
'UNION'
|
|
49
|
+
'ENUM'
|
|
50
|
+
'ENUM_VALUE'
|
|
51
|
+
'INPUT_OBJECT'
|
|
52
|
+
'INPUT_FIELD_DEFINITION'
|
|
53
|
+
'external'
|
|
54
|
+
'requires'
|
|
55
|
+
'fields'
|
|
56
|
+
'"'
|
|
57
|
+
'provides'
|
|
58
|
+
'key'
|
|
59
|
+
'shareable'
|
|
60
|
+
'override'
|
|
61
|
+
'from'
|
|
62
|
+
'INPUT'
|
|
63
|
+
'TYPE'
|
|
64
|
+
'DIRECTIVE'
|
|
65
|
+
'EXTEND'
|
|
66
|
+
'IMPLEMENTS'
|
|
67
|
+
'FRAGMENT'
|
|
68
|
+
null
|
|
69
|
+
null
|
|
70
|
+
null
|
|
71
|
+
null
|
|
72
|
+
null
|
|
73
|
+
null
|
|
74
|
+
null
|
|
75
|
+
null
|
|
76
|
+
','
|
|
77
|
+
null
|
|
78
|
+
null
|
|
79
|
+
'\uEFBBBF'
|
|
80
|
+
'\uFEFF'
|
|
81
|
+
'\u0000FEFF'
|
|
82
|
+
|
|
83
|
+
token symbolic names:
|
|
84
|
+
null
|
|
85
|
+
null
|
|
86
|
+
null
|
|
87
|
+
null
|
|
88
|
+
null
|
|
89
|
+
null
|
|
90
|
+
null
|
|
91
|
+
null
|
|
92
|
+
null
|
|
93
|
+
null
|
|
94
|
+
null
|
|
95
|
+
null
|
|
96
|
+
null
|
|
97
|
+
null
|
|
98
|
+
null
|
|
99
|
+
null
|
|
100
|
+
null
|
|
101
|
+
null
|
|
102
|
+
null
|
|
103
|
+
null
|
|
104
|
+
null
|
|
105
|
+
null
|
|
106
|
+
null
|
|
107
|
+
null
|
|
108
|
+
null
|
|
109
|
+
null
|
|
110
|
+
null
|
|
111
|
+
null
|
|
112
|
+
null
|
|
113
|
+
null
|
|
114
|
+
null
|
|
115
|
+
null
|
|
116
|
+
null
|
|
117
|
+
null
|
|
118
|
+
null
|
|
119
|
+
null
|
|
120
|
+
null
|
|
121
|
+
null
|
|
122
|
+
null
|
|
123
|
+
null
|
|
124
|
+
null
|
|
125
|
+
null
|
|
126
|
+
null
|
|
127
|
+
null
|
|
128
|
+
null
|
|
129
|
+
null
|
|
130
|
+
null
|
|
131
|
+
null
|
|
132
|
+
null
|
|
133
|
+
null
|
|
134
|
+
null
|
|
135
|
+
null
|
|
136
|
+
null
|
|
137
|
+
null
|
|
138
|
+
null
|
|
139
|
+
null
|
|
140
|
+
null
|
|
141
|
+
null
|
|
142
|
+
null
|
|
143
|
+
null
|
|
144
|
+
null
|
|
145
|
+
null
|
|
146
|
+
null
|
|
147
|
+
null
|
|
148
|
+
null
|
|
149
|
+
null
|
|
150
|
+
NAME
|
|
151
|
+
STRING
|
|
152
|
+
BLOCK_STRING
|
|
153
|
+
ID
|
|
154
|
+
FLOAT
|
|
155
|
+
INT
|
|
156
|
+
PUNCTUATOR
|
|
157
|
+
WS
|
|
158
|
+
COMMA
|
|
159
|
+
LineComment
|
|
160
|
+
UNICODE_BOM
|
|
161
|
+
UTF8_BOM
|
|
162
|
+
UTF16_BOM
|
|
163
|
+
UTF32_BOM
|
|
164
|
+
|
|
165
|
+
rule names:
|
|
166
|
+
document
|
|
167
|
+
definition
|
|
168
|
+
executableDefinition
|
|
169
|
+
operationDefinition
|
|
170
|
+
operationType
|
|
171
|
+
selectionSet
|
|
172
|
+
selection
|
|
173
|
+
field
|
|
174
|
+
arguments
|
|
175
|
+
argument
|
|
176
|
+
alias
|
|
177
|
+
fragmentSpread
|
|
178
|
+
fragmentDefinition
|
|
179
|
+
fragmentName
|
|
180
|
+
typeCondition
|
|
181
|
+
inlineFragment
|
|
182
|
+
value
|
|
183
|
+
intValue
|
|
184
|
+
floatValue
|
|
185
|
+
booleanValue
|
|
186
|
+
stringValue
|
|
187
|
+
nullValue
|
|
188
|
+
enumValue
|
|
189
|
+
listValue
|
|
190
|
+
objectValue
|
|
191
|
+
objectField
|
|
192
|
+
variable
|
|
193
|
+
variableDefinitions
|
|
194
|
+
variableDefinition
|
|
195
|
+
defaultValue
|
|
196
|
+
type_
|
|
197
|
+
namedType
|
|
198
|
+
listType
|
|
199
|
+
directives
|
|
200
|
+
directive
|
|
201
|
+
typeSystemDefinition
|
|
202
|
+
typeSystemExtension
|
|
203
|
+
schemaDefinition
|
|
204
|
+
rootOperationTypeDefinition
|
|
205
|
+
schemaExtension
|
|
206
|
+
operationTypeDefinition
|
|
207
|
+
description
|
|
208
|
+
typeDefinition
|
|
209
|
+
typeExtension
|
|
210
|
+
scalarTypeDefinition
|
|
211
|
+
scalarTypeExtension
|
|
212
|
+
objectTypeDefinition
|
|
213
|
+
implementsInterfaces
|
|
214
|
+
fieldsDefinition
|
|
215
|
+
fieldDefinition
|
|
216
|
+
argumentsDefinition
|
|
217
|
+
inputValueDefinition
|
|
218
|
+
objectTypeExtension
|
|
219
|
+
interfaceTypeDefinition
|
|
220
|
+
interfaceTypeExtension
|
|
221
|
+
unionTypeDefinition
|
|
222
|
+
unionMemberTypes
|
|
223
|
+
unionTypeExtension
|
|
224
|
+
enumTypeDefinition
|
|
225
|
+
enumValuesDefinition
|
|
226
|
+
enumValueDefinition
|
|
227
|
+
enumTypeExtension
|
|
228
|
+
inputObjectTypeDefinition
|
|
229
|
+
inputFieldsDefinition
|
|
230
|
+
inputObjectTypeExtension
|
|
231
|
+
directiveDefinition
|
|
232
|
+
directiveLocations
|
|
233
|
+
directiveLocation
|
|
234
|
+
executableDirectiveLocation
|
|
235
|
+
typeSystemDirectiveLocation
|
|
236
|
+
externalDirective
|
|
237
|
+
requiresDirective
|
|
238
|
+
providesDirective
|
|
239
|
+
keyDirective
|
|
240
|
+
shareableDirective
|
|
241
|
+
overrideDirective
|
|
242
|
+
fieldSet
|
|
243
|
+
fieldSetComponent
|
|
244
|
+
nestedFieldSet
|
|
245
|
+
fieldDefinitionFederationDirectives
|
|
246
|
+
typeDefinitionFederationDirectives
|
|
247
|
+
typeExtensionFederationDirectives
|
|
248
|
+
name
|
|
249
|
+
keyword
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
atn:
|
|
253
|
+
[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 81, 808, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 3, 2, 6, 2, 172, 10, 2, 13, 2, 14, 2, 173, 3, 3, 3, 3, 3, 3, 5, 3, 179, 10, 3, 3, 4, 3, 4, 5, 4, 183, 10, 4, 3, 5, 3, 5, 5, 5, 187, 10, 5, 3, 5, 5, 5, 190, 10, 5, 3, 5, 5, 5, 193, 10, 5, 3, 5, 3, 5, 3, 5, 5, 5, 198, 10, 5, 3, 6, 3, 6, 3, 7, 3, 7, 6, 7, 204, 10, 7, 13, 7, 14, 7, 205, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 5, 8, 213, 10, 8, 3, 9, 5, 9, 216, 10, 9, 3, 9, 3, 9, 5, 9, 220, 10, 9, 3, 9, 5, 9, 223, 10, 9, 3, 9, 5, 9, 226, 10, 9, 3, 10, 3, 10, 6, 10, 230, 10, 10, 13, 10, 14, 10, 231, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 5, 13, 246, 10, 13, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 252, 10, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 5, 17, 263, 10, 17, 3, 17, 5, 17, 266, 10, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 279, 10, 18, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 6, 25, 297, 10, 25, 13, 25, 14, 25, 298, 3, 25, 3, 25, 5, 25, 303, 10, 25, 3, 26, 3, 26, 7, 26, 307, 10, 26, 12, 26, 14, 26, 310, 11, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 6, 29, 323, 10, 29, 13, 29, 14, 29, 324, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 333, 10, 30, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 5, 32, 340, 10, 32, 3, 32, 3, 32, 5, 32, 344, 10, 32, 5, 32, 346, 10, 32, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 6, 35, 355, 10, 35, 13, 35, 14, 35, 356, 3, 36, 3, 36, 3, 36, 5, 36, 362, 10, 36, 3, 37, 3, 37, 3, 37, 5, 37, 367, 10, 37, 3, 38, 3, 38, 5, 38, 371, 10, 38, 3, 39, 5, 39, 374, 10, 39, 3, 39, 3, 39, 5, 39, 378, 10, 39, 3, 39, 3, 39, 6, 39, 382, 10, 39, 13, 39, 14, 39, 383, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 5, 41, 395, 10, 41, 3, 41, 3, 41, 6, 41, 399, 10, 41, 13, 41, 14, 41, 400, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 408, 10, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 422, 10, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 5, 45, 430, 10, 45, 3, 46, 5, 46, 433, 10, 46, 3, 46, 3, 46, 3, 46, 5, 46, 438, 10, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 5, 48, 446, 10, 48, 3, 48, 3, 48, 3, 48, 5, 48, 451, 10, 48, 3, 48, 3, 48, 5, 48, 455, 10, 48, 3, 48, 5, 48, 458, 10, 48, 3, 49, 3, 49, 3, 49, 5, 49, 463, 10, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 7, 49, 470, 10, 49, 12, 49, 14, 49, 473, 11, 49, 3, 50, 3, 50, 6, 50, 477, 10, 50, 13, 50, 14, 50, 478, 3, 50, 3, 50, 3, 51, 5, 51, 484, 10, 51, 3, 51, 3, 51, 5, 51, 488, 10, 51, 3, 51, 3, 51, 3, 51, 7, 51, 493, 10, 51, 12, 51, 14, 51, 496, 11, 51, 3, 51, 5, 51, 499, 10, 51, 3, 52, 3, 52, 6, 52, 503, 10, 52, 13, 52, 14, 52, 504, 3, 52, 3, 52, 3, 53, 5, 53, 510, 10, 53, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 516, 10, 53, 3, 53, 5, 53, 519, 10, 53, 3, 54, 3, 54, 3, 54, 3, 54, 5, 54, 525, 10, 54, 3, 54, 3, 54, 5, 54, 529, 10, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 5, 54, 537, 10, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 5, 54, 548, 10, 54, 3, 55, 5, 55, 551, 10, 55, 3, 55, 3, 55, 3, 55, 3, 55, 5, 55, 557, 10, 55, 3, 55, 5, 55, 560, 10, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 5, 56, 567, 10, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 5, 56, 577, 10, 56, 3, 57, 5, 57, 580, 10, 57, 3, 57, 3, 57, 3, 57, 5, 57, 585, 10, 57, 3, 57, 5, 57, 588, 10, 57, 3, 58, 3, 58, 5, 58, 592, 10, 58, 3, 58, 3, 58, 3, 58, 7, 58, 597, 10, 58, 12, 58, 14, 58, 600, 11, 58, 3, 59, 3, 59, 3, 59, 3, 59, 5, 59, 606, 10, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 5, 59, 615, 10, 59, 3, 60, 5, 60, 618, 10, 60, 3, 60, 3, 60, 3, 60, 5, 60, 623, 10, 60, 3, 60, 5, 60, 626, 10, 60, 3, 61, 3, 61, 6, 61, 630, 10, 61, 13, 61, 14, 61, 631, 3, 61, 3, 61, 3, 62, 5, 62, 637, 10, 62, 3, 62, 3, 62, 5, 62, 641, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 647, 10, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 656, 10, 63, 3, 64, 5, 64, 659, 10, 64, 3, 64, 3, 64, 3, 64, 5, 64, 664, 10, 64, 3, 64, 5, 64, 667, 10, 64, 3, 65, 3, 65, 6, 65, 671, 10, 65, 13, 65, 14, 65, 672, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 5, 66, 681, 10, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 5, 66, 690, 10, 66, 3, 67, 5, 67, 693, 10, 67, 3, 67, 3, 67, 3, 67, 3, 67, 5, 67, 699, 10, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 7, 68, 707, 10, 68, 12, 68, 14, 68, 710, 11, 68, 3, 69, 3, 69, 5, 69, 714, 10, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 6, 78, 765, 10, 78, 13, 78, 14, 78, 766, 3, 79, 3, 79, 5, 79, 771, 10, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 5, 81, 782, 10, 81, 3, 82, 7, 82, 785, 10, 82, 12, 82, 14, 82, 788, 11, 82, 3, 82, 5, 82, 791, 10, 82, 3, 83, 7, 83, 794, 10, 83, 12, 83, 14, 83, 797, 11, 83, 3, 83, 5, 83, 800, 10, 83, 3, 84, 3, 84, 5, 84, 804, 10, 84, 3, 85, 3, 85, 3, 85, 2, 3, 96, 86, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 2, 8, 3, 2, 3, 5, 3, 2, 14, 15, 3, 2, 69, 70, 3, 2, 35, 41, 3, 2, 42, 52, 8, 2, 3, 5, 12, 12, 23, 27, 29, 30, 32, 52, 62, 67, 2, 843, 2, 171, 3, 2, 2, 2, 4, 178, 3, 2, 2, 2, 6, 182, 3, 2, 2, 2, 8, 197, 3, 2, 2, 2, 10, 199, 3, 2, 2, 2, 12, 201, 3, 2, 2, 2, 14, 212, 3, 2, 2, 2, 16, 215, 3, 2, 2, 2, 18, 227, 3, 2, 2, 2, 20, 235, 3, 2, 2, 2, 22, 239, 3, 2, 2, 2, 24, 242, 3, 2, 2, 2, 26, 247, 3, 2, 2, 2, 28, 255, 3, 2, 2, 2, 30, 257, 3, 2, 2, 2, 32, 260, 3, 2, 2, 2, 34, 278, 3, 2, 2, 2, 36, 280, 3, 2, 2, 2, 38, 282, 3, 2, 2, 2, 40, 284, 3, 2, 2, 2, 42, 286, 3, 2, 2, 2, 44, 288, 3, 2, 2, 2, 46, 290, 3, 2, 2, 2, 48, 302, 3, 2, 2, 2, 50, 304, 3, 2, 2, 2, 52, 313, 3, 2, 2, 2, 54, 317, 3, 2, 2, 2, 56, 320, 3, 2, 2, 2, 58, 328, 3, 2, 2, 2, 60, 334, 3, 2, 2, 2, 62, 345, 3, 2, 2, 2, 64, 347, 3, 2, 2, 2, 66, 349, 3, 2, 2, 2, 68, 354, 3, 2, 2, 2, 70, 358, 3, 2, 2, 2, 72, 366, 3, 2, 2, 2, 74, 370, 3, 2, 2, 2, 76, 373, 3, 2, 2, 2, 78, 387, 3, 2, 2, 2, 80, 407, 3, 2, 2, 2, 82, 409, 3, 2, 2, 2, 84, 413, 3, 2, 2, 2, 86, 421, 3, 2, 2, 2, 88, 429, 3, 2, 2, 2, 90, 432, 3, 2, 2, 2, 92, 439, 3, 2, 2, 2, 94, 445, 3, 2, 2, 2, 96, 459, 3, 2, 2, 2, 98, 474, 3, 2, 2, 2, 100, 483, 3, 2, 2, 2, 102, 500, 3, 2, 2, 2, 104, 509, 3, 2, 2, 2, 106, 547, 3, 2, 2, 2, 108, 550, 3, 2, 2, 2, 110, 576, 3, 2, 2, 2, 112, 579, 3, 2, 2, 2, 114, 589, 3, 2, 2, 2, 116, 614, 3, 2, 2, 2, 118, 617, 3, 2, 2, 2, 120, 627, 3, 2, 2, 2, 122, 636, 3, 2, 2, 2, 124, 655, 3, 2, 2, 2, 126, 658, 3, 2, 2, 2, 128, 668, 3, 2, 2, 2, 130, 689, 3, 2, 2, 2, 132, 692, 3, 2, 2, 2, 134, 703, 3, 2, 2, 2, 136, 713, 3, 2, 2, 2, 138, 715, 3, 2, 2, 2, 140, 717, 3, 2, 2, 2, 142, 719, 3, 2, 2, 2, 144, 722, 3, 2, 2, 2, 146, 732, 3, 2, 2, 2, 148, 742, 3, 2, 2, 2, 150, 752, 3, 2, 2, 2, 152, 755, 3, 2, 2, 2, 154, 764, 3, 2, 2, 2, 156, 768, 3, 2, 2, 2, 158, 772, 3, 2, 2, 2, 160, 781, 3, 2, 2, 2, 162, 786, 3, 2, 2, 2, 164, 795, 3, 2, 2, 2, 166, 803, 3, 2, 2, 2, 168, 805, 3, 2, 2, 2, 170, 172, 5, 4, 3, 2, 171, 170, 3, 2, 2, 2, 172, 173, 3, 2, 2, 2, 173, 171, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, 3, 3, 2, 2, 2, 175, 179, 5, 6, 4, 2, 176, 179, 5, 72, 37, 2, 177, 179, 5, 74, 38, 2, 178, 175, 3, 2, 2, 2, 178, 176, 3, 2, 2, 2, 178, 177, 3, 2, 2, 2, 179, 5, 3, 2, 2, 2, 180, 183, 5, 8, 5, 2, 181, 183, 5, 26, 14, 2, 182, 180, 3, 2, 2, 2, 182, 181, 3, 2, 2, 2, 183, 7, 3, 2, 2, 2, 184, 186, 5, 10, 6, 2, 185, 187, 5, 166, 84, 2, 186, 185, 3, 2, 2, 2, 186, 187, 3, 2, 2, 2, 187, 189, 3, 2, 2, 2, 188, 190, 5, 56, 29, 2, 189, 188, 3, 2, 2, 2, 189, 190, 3, 2, 2, 2, 190, 192, 3, 2, 2, 2, 191, 193, 5, 68, 35, 2, 192, 191, 3, 2, 2, 2, 192, 193, 3, 2, 2, 2, 193, 194, 3, 2, 2, 2, 194, 195, 5, 12, 7, 2, 195, 198, 3, 2, 2, 2, 196, 198, 5, 12, 7, 2, 197, 184, 3, 2, 2, 2, 197, 196, 3, 2, 2, 2, 198, 9, 3, 2, 2, 2, 199, 200, 9, 2, 2, 2, 200, 11, 3, 2, 2, 2, 201, 203, 7, 6, 2, 2, 202, 204, 5, 14, 8, 2, 203, 202, 3, 2, 2, 2, 204, 205, 3, 2, 2, 2, 205, 203, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 208, 7, 7, 2, 2, 208, 13, 3, 2, 2, 2, 209, 213, 5, 16, 9, 2, 210, 213, 5, 24, 13, 2, 211, 213, 5, 32, 17, 2, 212, 209, 3, 2, 2, 2, 212, 210, 3, 2, 2, 2, 212, 211, 3, 2, 2, 2, 213, 15, 3, 2, 2, 2, 214, 216, 5, 22, 12, 2, 215, 214, 3, 2, 2, 2, 215, 216, 3, 2, 2, 2, 216, 217, 3, 2, 2, 2, 217, 219, 5, 166, 84, 2, 218, 220, 5, 18, 10, 2, 219, 218, 3, 2, 2, 2, 219, 220, 3, 2, 2, 2, 220, 222, 3, 2, 2, 2, 221, 223, 5, 68, 35, 2, 222, 221, 3, 2, 2, 2, 222, 223, 3, 2, 2, 2, 223, 225, 3, 2, 2, 2, 224, 226, 5, 12, 7, 2, 225, 224, 3, 2, 2, 2, 225, 226, 3, 2, 2, 2, 226, 17, 3, 2, 2, 2, 227, 229, 7, 8, 2, 2, 228, 230, 5, 20, 11, 2, 229, 228, 3, 2, 2, 2, 230, 231, 3, 2, 2, 2, 231, 229, 3, 2, 2, 2, 231, 232, 3, 2, 2, 2, 232, 233, 3, 2, 2, 2, 233, 234, 7, 9, 2, 2, 234, 19, 3, 2, 2, 2, 235, 236, 5, 166, 84, 2, 236, 237, 7, 10, 2, 2, 237, 238, 5, 34, 18, 2, 238, 21, 3, 2, 2, 2, 239, 240, 5, 166, 84, 2, 240, 241, 7, 10, 2, 2, 241, 23, 3, 2, 2, 2, 242, 243, 7, 11, 2, 2, 243, 245, 5, 28, 15, 2, 244, 246, 5, 68, 35, 2, 245, 244, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 25, 3, 2, 2, 2, 247, 248, 7, 12, 2, 2, 248, 249, 5, 28, 15, 2, 249, 251, 5, 30, 16, 2, 250, 252, 5, 68, 35, 2, 251, 250, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 253, 3, 2, 2, 2, 253, 254, 5, 12, 7, 2, 254, 27, 3, 2, 2, 2, 255, 256, 5, 166, 84, 2, 256, 29, 3, 2, 2, 2, 257, 258, 7, 13, 2, 2, 258, 259, 5, 64, 33, 2, 259, 31, 3, 2, 2, 2, 260, 262, 7, 11, 2, 2, 261, 263, 5, 30, 16, 2, 262, 261, 3, 2, 2, 2, 262, 263, 3, 2, 2, 2, 263, 265, 3, 2, 2, 2, 264, 266, 5, 68, 35, 2, 265, 264, 3, 2, 2, 2, 265, 266, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 268, 5, 12, 7, 2, 268, 33, 3, 2, 2, 2, 269, 279, 5, 54, 28, 2, 270, 279, 5, 36, 19, 2, 271, 279, 5, 38, 20, 2, 272, 279, 5, 42, 22, 2, 273, 279, 5, 40, 21, 2, 274, 279, 5, 44, 23, 2, 275, 279, 5, 46, 24, 2, 276, 279, 5, 48, 25, 2, 277, 279, 5, 50, 26, 2, 278, 269, 3, 2, 2, 2, 278, 270, 3, 2, 2, 2, 278, 271, 3, 2, 2, 2, 278, 272, 3, 2, 2, 2, 278, 273, 3, 2, 2, 2, 278, 274, 3, 2, 2, 2, 278, 275, 3, 2, 2, 2, 278, 276, 3, 2, 2, 2, 278, 277, 3, 2, 2, 2, 279, 35, 3, 2, 2, 2, 280, 281, 7, 73, 2, 2, 281, 37, 3, 2, 2, 2, 282, 283, 7, 72, 2, 2, 283, 39, 3, 2, 2, 2, 284, 285, 9, 3, 2, 2, 285, 41, 3, 2, 2, 2, 286, 287, 9, 4, 2, 2, 287, 43, 3, 2, 2, 2, 288, 289, 7, 16, 2, 2, 289, 45, 3, 2, 2, 2, 290, 291, 5, 166, 84, 2, 291, 47, 3, 2, 2, 2, 292, 293, 7, 17, 2, 2, 293, 303, 7, 18, 2, 2, 294, 296, 7, 17, 2, 2, 295, 297, 5, 34, 18, 2, 296, 295, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 296, 3, 2, 2, 2, 298, 299, 3, 2, 2, 2, 299, 300, 3, 2, 2, 2, 300, 301, 7, 18, 2, 2, 301, 303, 3, 2, 2, 2, 302, 292, 3, 2, 2, 2, 302, 294, 3, 2, 2, 2, 303, 49, 3, 2, 2, 2, 304, 308, 7, 6, 2, 2, 305, 307, 5, 52, 27, 2, 306, 305, 3, 2, 2, 2, 307, 310, 3, 2, 2, 2, 308, 306, 3, 2, 2, 2, 308, 309, 3, 2, 2, 2, 309, 311, 3, 2, 2, 2, 310, 308, 3, 2, 2, 2, 311, 312, 7, 7, 2, 2, 312, 51, 3, 2, 2, 2, 313, 314, 5, 166, 84, 2, 314, 315, 7, 10, 2, 2, 315, 316, 5, 34, 18, 2, 316, 53, 3, 2, 2, 2, 317, 318, 7, 19, 2, 2, 318, 319, 5, 166, 84, 2, 319, 55, 3, 2, 2, 2, 320, 322, 7, 8, 2, 2, 321, 323, 5, 58, 30, 2, 322, 321, 3, 2, 2, 2, 323, 324, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 326, 3, 2, 2, 2, 326, 327, 7, 9, 2, 2, 327, 57, 3, 2, 2, 2, 328, 329, 5, 54, 28, 2, 329, 330, 7, 10, 2, 2, 330, 332, 5, 62, 32, 2, 331, 333, 5, 60, 31, 2, 332, 331, 3, 2, 2, 2, 332, 333, 3, 2, 2, 2, 333, 59, 3, 2, 2, 2, 334, 335, 7, 20, 2, 2, 335, 336, 5, 34, 18, 2, 336, 61, 3, 2, 2, 2, 337, 339, 5, 64, 33, 2, 338, 340, 7, 21, 2, 2, 339, 338, 3, 2, 2, 2, 339, 340, 3, 2, 2, 2, 340, 346, 3, 2, 2, 2, 341, 343, 5, 66, 34, 2, 342, 344, 7, 21, 2, 2, 343, 342, 3, 2, 2, 2, 343, 344, 3, 2, 2, 2, 344, 346, 3, 2, 2, 2, 345, 337, 3, 2, 2, 2, 345, 341, 3, 2, 2, 2, 346, 63, 3, 2, 2, 2, 347, 348, 5, 166, 84, 2, 348, 65, 3, 2, 2, 2, 349, 350, 7, 17, 2, 2, 350, 351, 5, 62, 32, 2, 351, 352, 7, 18, 2, 2, 352, 67, 3, 2, 2, 2, 353, 355, 5, 70, 36, 2, 354, 353, 3, 2, 2, 2, 355, 356, 3, 2, 2, 2, 356, 354, 3, 2, 2, 2, 356, 357, 3, 2, 2, 2, 357, 69, 3, 2, 2, 2, 358, 359, 7, 22, 2, 2, 359, 361, 5, 166, 84, 2, 360, 362, 5, 18, 10, 2, 361, 360, 3, 2, 2, 2, 361, 362, 3, 2, 2, 2, 362, 71, 3, 2, 2, 2, 363, 367, 5, 76, 39, 2, 364, 367, 5, 86, 44, 2, 365, 367, 5, 132, 67, 2, 366, 363, 3, 2, 2, 2, 366, 364, 3, 2, 2, 2, 366, 365, 3, 2, 2, 2, 367, 73, 3, 2, 2, 2, 368, 371, 5, 80, 41, 2, 369, 371, 5, 88, 45, 2, 370, 368, 3, 2, 2, 2, 370, 369, 3, 2, 2, 2, 371, 75, 3, 2, 2, 2, 372, 374, 5, 84, 43, 2, 373, 372, 3, 2, 2, 2, 373, 374, 3, 2, 2, 2, 374, 375, 3, 2, 2, 2, 375, 377, 7, 23, 2, 2, 376, 378, 5, 68, 35, 2, 377, 376, 3, 2, 2, 2, 377, 378, 3, 2, 2, 2, 378, 379, 3, 2, 2, 2, 379, 381, 7, 6, 2, 2, 380, 382, 5, 78, 40, 2, 381, 380, 3, 2, 2, 2, 382, 383, 3, 2, 2, 2, 383, 381, 3, 2, 2, 2, 383, 384, 3, 2, 2, 2, 384, 385, 3, 2, 2, 2, 385, 386, 7, 7, 2, 2, 386, 77, 3, 2, 2, 2, 387, 388, 5, 10, 6, 2, 388, 389, 7, 10, 2, 2, 389, 390, 5, 64, 33, 2, 390, 79, 3, 2, 2, 2, 391, 392, 7, 24, 2, 2, 392, 394, 7, 23, 2, 2, 393, 395, 5, 68, 35, 2, 394, 393, 3, 2, 2, 2, 394, 395, 3, 2, 2, 2, 395, 396, 3, 2, 2, 2, 396, 398, 7, 6, 2, 2, 397, 399, 5, 82, 42, 2, 398, 397, 3, 2, 2, 2, 399, 400, 3, 2, 2, 2, 400, 398, 3, 2, 2, 2, 400, 401, 3, 2, 2, 2, 401, 402, 3, 2, 2, 2, 402, 403, 7, 7, 2, 2, 403, 408, 3, 2, 2, 2, 404, 405, 7, 24, 2, 2, 405, 406, 7, 23, 2, 2, 406, 408, 5, 68, 35, 2, 407, 391, 3, 2, 2, 2, 407, 404, 3, 2, 2, 2, 408, 81, 3, 2, 2, 2, 409, 410, 5, 10, 6, 2, 410, 411, 7, 10, 2, 2, 411, 412, 5, 64, 33, 2, 412, 83, 3, 2, 2, 2, 413, 414, 5, 42, 22, 2, 414, 85, 3, 2, 2, 2, 415, 422, 5, 90, 46, 2, 416, 422, 5, 94, 48, 2, 417, 422, 5, 108, 55, 2, 418, 422, 5, 112, 57, 2, 419, 422, 5, 118, 60, 2, 420, 422, 5, 126, 64, 2, 421, 415, 3, 2, 2, 2, 421, 416, 3, 2, 2, 2, 421, 417, 3, 2, 2, 2, 421, 418, 3, 2, 2, 2, 421, 419, 3, 2, 2, 2, 421, 420, 3, 2, 2, 2, 422, 87, 3, 2, 2, 2, 423, 430, 5, 92, 47, 2, 424, 430, 5, 106, 54, 2, 425, 430, 5, 110, 56, 2, 426, 430, 5, 116, 59, 2, 427, 430, 5, 124, 63, 2, 428, 430, 5, 130, 66, 2, 429, 423, 3, 2, 2, 2, 429, 424, 3, 2, 2, 2, 429, 425, 3, 2, 2, 2, 429, 426, 3, 2, 2, 2, 429, 427, 3, 2, 2, 2, 429, 428, 3, 2, 2, 2, 430, 89, 3, 2, 2, 2, 431, 433, 5, 84, 43, 2, 432, 431, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 434, 3, 2, 2, 2, 434, 435, 7, 25, 2, 2, 435, 437, 5, 166, 84, 2, 436, 438, 5, 68, 35, 2, 437, 436, 3, 2, 2, 2, 437, 438, 3, 2, 2, 2, 438, 91, 3, 2, 2, 2, 439, 440, 7, 24, 2, 2, 440, 441, 7, 25, 2, 2, 441, 442, 5, 166, 84, 2, 442, 443, 5, 68, 35, 2, 443, 93, 3, 2, 2, 2, 444, 446, 5, 84, 43, 2, 445, 444, 3, 2, 2, 2, 445, 446, 3, 2, 2, 2, 446, 447, 3, 2, 2, 2, 447, 448, 7, 26, 2, 2, 448, 450, 5, 166, 84, 2, 449, 451, 5, 96, 49, 2, 450, 449, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 452, 3, 2, 2, 2, 452, 454, 5, 162, 82, 2, 453, 455, 5, 68, 35, 2, 454, 453, 3, 2, 2, 2, 454, 455, 3, 2, 2, 2, 455, 457, 3, 2, 2, 2, 456, 458, 5, 98, 50, 2, 457, 456, 3, 2, 2, 2, 457, 458, 3, 2, 2, 2, 458, 95, 3, 2, 2, 2, 459, 460, 8, 49, 1, 2, 460, 462, 7, 27, 2, 2, 461, 463, 7, 28, 2, 2, 462, 461, 3, 2, 2, 2, 462, 463, 3, 2, 2, 2, 463, 464, 3, 2, 2, 2, 464, 465, 5, 64, 33, 2, 465, 471, 3, 2, 2, 2, 466, 467, 12, 3, 2, 2, 467, 468, 7, 28, 2, 2, 468, 470, 5, 64, 33, 2, 469, 466, 3, 2, 2, 2, 470, 473, 3, 2, 2, 2, 471, 469, 3, 2, 2, 2, 471, 472, 3, 2, 2, 2, 472, 97, 3, 2, 2, 2, 473, 471, 3, 2, 2, 2, 474, 476, 7, 6, 2, 2, 475, 477, 5, 100, 51, 2, 476, 475, 3, 2, 2, 2, 477, 478, 3, 2, 2, 2, 478, 476, 3, 2, 2, 2, 478, 479, 3, 2, 2, 2, 479, 480, 3, 2, 2, 2, 480, 481, 7, 7, 2, 2, 481, 99, 3, 2, 2, 2, 482, 484, 5, 84, 43, 2, 483, 482, 3, 2, 2, 2, 483, 484, 3, 2, 2, 2, 484, 485, 3, 2, 2, 2, 485, 487, 5, 166, 84, 2, 486, 488, 5, 102, 52, 2, 487, 486, 3, 2, 2, 2, 487, 488, 3, 2, 2, 2, 488, 489, 3, 2, 2, 2, 489, 490, 7, 10, 2, 2, 490, 494, 5, 62, 32, 2, 491, 493, 5, 160, 81, 2, 492, 491, 3, 2, 2, 2, 493, 496, 3, 2, 2, 2, 494, 492, 3, 2, 2, 2, 494, 495, 3, 2, 2, 2, 495, 498, 3, 2, 2, 2, 496, 494, 3, 2, 2, 2, 497, 499, 5, 68, 35, 2, 498, 497, 3, 2, 2, 2, 498, 499, 3, 2, 2, 2, 499, 101, 3, 2, 2, 2, 500, 502, 7, 8, 2, 2, 501, 503, 5, 104, 53, 2, 502, 501, 3, 2, 2, 2, 503, 504, 3, 2, 2, 2, 504, 502, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 506, 3, 2, 2, 2, 506, 507, 7, 9, 2, 2, 507, 103, 3, 2, 2, 2, 508, 510, 5, 84, 43, 2, 509, 508, 3, 2, 2, 2, 509, 510, 3, 2, 2, 2, 510, 511, 3, 2, 2, 2, 511, 512, 5, 166, 84, 2, 512, 513, 7, 10, 2, 2, 513, 515, 5, 62, 32, 2, 514, 516, 5, 60, 31, 2, 515, 514, 3, 2, 2, 2, 515, 516, 3, 2, 2, 2, 516, 518, 3, 2, 2, 2, 517, 519, 5, 68, 35, 2, 518, 517, 3, 2, 2, 2, 518, 519, 3, 2, 2, 2, 519, 105, 3, 2, 2, 2, 520, 521, 7, 24, 2, 2, 521, 522, 7, 26, 2, 2, 522, 524, 5, 166, 84, 2, 523, 525, 5, 96, 49, 2, 524, 523, 3, 2, 2, 2, 524, 525, 3, 2, 2, 2, 525, 526, 3, 2, 2, 2, 526, 528, 5, 164, 83, 2, 527, 529, 5, 68, 35, 2, 528, 527, 3, 2, 2, 2, 528, 529, 3, 2, 2, 2, 529, 530, 3, 2, 2, 2, 530, 531, 5, 98, 50, 2, 531, 548, 3, 2, 2, 2, 532, 533, 7, 24, 2, 2, 533, 534, 7, 26, 2, 2, 534, 536, 5, 166, 84, 2, 535, 537, 5, 96, 49, 2, 536, 535, 3, 2, 2, 2, 536, 537, 3, 2, 2, 2, 537, 538, 3, 2, 2, 2, 538, 539, 5, 164, 83, 2, 539, 540, 5, 68, 35, 2, 540, 548, 3, 2, 2, 2, 541, 542, 7, 24, 2, 2, 542, 543, 7, 26, 2, 2, 543, 544, 5, 166, 84, 2, 544, 545, 5, 96, 49, 2, 545, 546, 5, 164, 83, 2, 546, 548, 3, 2, 2, 2, 547, 520, 3, 2, 2, 2, 547, 532, 3, 2, 2, 2, 547, 541, 3, 2, 2, 2, 548, 107, 3, 2, 2, 2, 549, 551, 5, 84, 43, 2, 550, 549, 3, 2, 2, 2, 550, 551, 3, 2, 2, 2, 551, 552, 3, 2, 2, 2, 552, 553, 7, 29, 2, 2, 553, 554, 5, 166, 84, 2, 554, 556, 5, 162, 82, 2, 555, 557, 5, 68, 35, 2, 556, 555, 3, 2, 2, 2, 556, 557, 3, 2, 2, 2, 557, 559, 3, 2, 2, 2, 558, 560, 5, 98, 50, 2, 559, 558, 3, 2, 2, 2, 559, 560, 3, 2, 2, 2, 560, 109, 3, 2, 2, 2, 561, 562, 7, 24, 2, 2, 562, 563, 7, 29, 2, 2, 563, 564, 5, 166, 84, 2, 564, 566, 5, 164, 83, 2, 565, 567, 5, 68, 35, 2, 566, 565, 3, 2, 2, 2, 566, 567, 3, 2, 2, 2, 567, 568, 3, 2, 2, 2, 568, 569, 5, 98, 50, 2, 569, 577, 3, 2, 2, 2, 570, 571, 7, 24, 2, 2, 571, 572, 7, 29, 2, 2, 572, 573, 5, 166, 84, 2, 573, 574, 5, 164, 83, 2, 574, 575, 5, 68, 35, 2, 575, 577, 3, 2, 2, 2, 576, 561, 3, 2, 2, 2, 576, 570, 3, 2, 2, 2, 577, 111, 3, 2, 2, 2, 578, 580, 5, 84, 43, 2, 579, 578, 3, 2, 2, 2, 579, 580, 3, 2, 2, 2, 580, 581, 3, 2, 2, 2, 581, 582, 7, 30, 2, 2, 582, 584, 5, 166, 84, 2, 583, 585, 5, 68, 35, 2, 584, 583, 3, 2, 2, 2, 584, 585, 3, 2, 2, 2, 585, 587, 3, 2, 2, 2, 586, 588, 5, 114, 58, 2, 587, 586, 3, 2, 2, 2, 587, 588, 3, 2, 2, 2, 588, 113, 3, 2, 2, 2, 589, 591, 7, 20, 2, 2, 590, 592, 7, 31, 2, 2, 591, 590, 3, 2, 2, 2, 591, 592, 3, 2, 2, 2, 592, 593, 3, 2, 2, 2, 593, 598, 5, 64, 33, 2, 594, 595, 7, 31, 2, 2, 595, 597, 5, 64, 33, 2, 596, 594, 3, 2, 2, 2, 597, 600, 3, 2, 2, 2, 598, 596, 3, 2, 2, 2, 598, 599, 3, 2, 2, 2, 599, 115, 3, 2, 2, 2, 600, 598, 3, 2, 2, 2, 601, 602, 7, 24, 2, 2, 602, 603, 7, 30, 2, 2, 603, 605, 5, 166, 84, 2, 604, 606, 5, 68, 35, 2, 605, 604, 3, 2, 2, 2, 605, 606, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 608, 5, 114, 58, 2, 608, 615, 3, 2, 2, 2, 609, 610, 7, 24, 2, 2, 610, 611, 7, 30, 2, 2, 611, 612, 5, 166, 84, 2, 612, 613, 5, 68, 35, 2, 613, 615, 3, 2, 2, 2, 614, 601, 3, 2, 2, 2, 614, 609, 3, 2, 2, 2, 615, 117, 3, 2, 2, 2, 616, 618, 5, 84, 43, 2, 617, 616, 3, 2, 2, 2, 617, 618, 3, 2, 2, 2, 618, 619, 3, 2, 2, 2, 619, 620, 7, 32, 2, 2, 620, 622, 5, 166, 84, 2, 621, 623, 5, 68, 35, 2, 622, 621, 3, 2, 2, 2, 622, 623, 3, 2, 2, 2, 623, 625, 3, 2, 2, 2, 624, 626, 5, 120, 61, 2, 625, 624, 3, 2, 2, 2, 625, 626, 3, 2, 2, 2, 626, 119, 3, 2, 2, 2, 627, 629, 7, 6, 2, 2, 628, 630, 5, 122, 62, 2, 629, 628, 3, 2, 2, 2, 630, 631, 3, 2, 2, 2, 631, 629, 3, 2, 2, 2, 631, 632, 3, 2, 2, 2, 632, 633, 3, 2, 2, 2, 633, 634, 7, 7, 2, 2, 634, 121, 3, 2, 2, 2, 635, 637, 5, 84, 43, 2, 636, 635, 3, 2, 2, 2, 636, 637, 3, 2, 2, 2, 637, 638, 3, 2, 2, 2, 638, 640, 5, 46, 24, 2, 639, 641, 5, 68, 35, 2, 640, 639, 3, 2, 2, 2, 640, 641, 3, 2, 2, 2, 641, 123, 3, 2, 2, 2, 642, 643, 7, 24, 2, 2, 643, 644, 7, 32, 2, 2, 644, 646, 5, 166, 84, 2, 645, 647, 5, 68, 35, 2, 646, 645, 3, 2, 2, 2, 646, 647, 3, 2, 2, 2, 647, 648, 3, 2, 2, 2, 648, 649, 5, 120, 61, 2, 649, 656, 3, 2, 2, 2, 650, 651, 7, 24, 2, 2, 651, 652, 7, 32, 2, 2, 652, 653, 5, 166, 84, 2, 653, 654, 5, 68, 35, 2, 654, 656, 3, 2, 2, 2, 655, 642, 3, 2, 2, 2, 655, 650, 3, 2, 2, 2, 656, 125, 3, 2, 2, 2, 657, 659, 5, 84, 43, 2, 658, 657, 3, 2, 2, 2, 658, 659, 3, 2, 2, 2, 659, 660, 3, 2, 2, 2, 660, 661, 7, 33, 2, 2, 661, 663, 5, 166, 84, 2, 662, 664, 5, 68, 35, 2, 663, 662, 3, 2, 2, 2, 663, 664, 3, 2, 2, 2, 664, 666, 3, 2, 2, 2, 665, 667, 5, 128, 65, 2, 666, 665, 3, 2, 2, 2, 666, 667, 3, 2, 2, 2, 667, 127, 3, 2, 2, 2, 668, 670, 7, 6, 2, 2, 669, 671, 5, 104, 53, 2, 670, 669, 3, 2, 2, 2, 671, 672, 3, 2, 2, 2, 672, 670, 3, 2, 2, 2, 672, 673, 3, 2, 2, 2, 673, 674, 3, 2, 2, 2, 674, 675, 7, 7, 2, 2, 675, 129, 3, 2, 2, 2, 676, 677, 7, 24, 2, 2, 677, 678, 7, 33, 2, 2, 678, 680, 5, 166, 84, 2, 679, 681, 5, 68, 35, 2, 680, 679, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 682, 3, 2, 2, 2, 682, 683, 5, 128, 65, 2, 683, 690, 3, 2, 2, 2, 684, 685, 7, 24, 2, 2, 685, 686, 7, 33, 2, 2, 686, 687, 5, 166, 84, 2, 687, 688, 5, 68, 35, 2, 688, 690, 3, 2, 2, 2, 689, 676, 3, 2, 2, 2, 689, 684, 3, 2, 2, 2, 690, 131, 3, 2, 2, 2, 691, 693, 5, 84, 43, 2, 692, 691, 3, 2, 2, 2, 692, 693, 3, 2, 2, 2, 693, 694, 3, 2, 2, 2, 694, 695, 7, 34, 2, 2, 695, 696, 7, 22, 2, 2, 696, 698, 5, 166, 84, 2, 697, 699, 5, 102, 52, 2, 698, 697, 3, 2, 2, 2, 698, 699, 3, 2, 2, 2, 699, 700, 3, 2, 2, 2, 700, 701, 7, 13, 2, 2, 701, 702, 5, 134, 68, 2, 702, 133, 3, 2, 2, 2, 703, 708, 5, 136, 69, 2, 704, 705, 7, 31, 2, 2, 705, 707, 5, 136, 69, 2, 706, 704, 3, 2, 2, 2, 707, 710, 3, 2, 2, 2, 708, 706, 3, 2, 2, 2, 708, 709, 3, 2, 2, 2, 709, 135, 3, 2, 2, 2, 710, 708, 3, 2, 2, 2, 711, 714, 5, 138, 70, 2, 712, 714, 5, 140, 71, 2, 713, 711, 3, 2, 2, 2, 713, 712, 3, 2, 2, 2, 714, 137, 3, 2, 2, 2, 715, 716, 9, 5, 2, 2, 716, 139, 3, 2, 2, 2, 717, 718, 9, 6, 2, 2, 718, 141, 3, 2, 2, 2, 719, 720, 7, 22, 2, 2, 720, 721, 7, 53, 2, 2, 721, 143, 3, 2, 2, 2, 722, 723, 7, 22, 2, 2, 723, 724, 7, 54, 2, 2, 724, 725, 7, 8, 2, 2, 725, 726, 7, 55, 2, 2, 726, 727, 7, 10, 2, 2, 727, 728, 7, 56, 2, 2, 728, 729, 5, 154, 78, 2, 729, 730, 7, 56, 2, 2, 730, 731, 7, 9, 2, 2, 731, 145, 3, 2, 2, 2, 732, 733, 7, 22, 2, 2, 733, 734, 7, 57, 2, 2, 734, 735, 7, 8, 2, 2, 735, 736, 7, 55, 2, 2, 736, 737, 7, 10, 2, 2, 737, 738, 7, 56, 2, 2, 738, 739, 5, 154, 78, 2, 739, 740, 7, 56, 2, 2, 740, 741, 7, 9, 2, 2, 741, 147, 3, 2, 2, 2, 742, 743, 7, 22, 2, 2, 743, 744, 7, 58, 2, 2, 744, 745, 7, 8, 2, 2, 745, 746, 7, 55, 2, 2, 746, 747, 7, 10, 2, 2, 747, 748, 7, 56, 2, 2, 748, 749, 5, 154, 78, 2, 749, 750, 7, 56, 2, 2, 750, 751, 7, 9, 2, 2, 751, 149, 3, 2, 2, 2, 752, 753, 7, 22, 2, 2, 753, 754, 7, 59, 2, 2, 754, 151, 3, 2, 2, 2, 755, 756, 7, 22, 2, 2, 756, 757, 7, 60, 2, 2, 757, 758, 7, 8, 2, 2, 758, 759, 7, 61, 2, 2, 759, 760, 7, 10, 2, 2, 760, 761, 5, 166, 84, 2, 761, 762, 7, 9, 2, 2, 762, 153, 3, 2, 2, 2, 763, 765, 5, 156, 79, 2, 764, 763, 3, 2, 2, 2, 765, 766, 3, 2, 2, 2, 766, 764, 3, 2, 2, 2, 766, 767, 3, 2, 2, 2, 767, 155, 3, 2, 2, 2, 768, 770, 5, 166, 84, 2, 769, 771, 5, 158, 80, 2, 770, 769, 3, 2, 2, 2, 770, 771, 3, 2, 2, 2, 771, 157, 3, 2, 2, 2, 772, 773, 7, 6, 2, 2, 773, 774, 5, 154, 78, 2, 774, 775, 7, 7, 2, 2, 775, 159, 3, 2, 2, 2, 776, 782, 5, 142, 72, 2, 777, 782, 5, 144, 73, 2, 778, 782, 5, 146, 74, 2, 779, 782, 5, 150, 76, 2, 780, 782, 5, 152, 77, 2, 781, 776, 3, 2, 2, 2, 781, 777, 3, 2, 2, 2, 781, 778, 3, 2, 2, 2, 781, 779, 3, 2, 2, 2, 781, 780, 3, 2, 2, 2, 782, 161, 3, 2, 2, 2, 783, 785, 5, 148, 75, 2, 784, 783, 3, 2, 2, 2, 785, 788, 3, 2, 2, 2, 786, 784, 3, 2, 2, 2, 786, 787, 3, 2, 2, 2, 787, 790, 3, 2, 2, 2, 788, 786, 3, 2, 2, 2, 789, 791, 5, 150, 76, 2, 790, 789, 3, 2, 2, 2, 790, 791, 3, 2, 2, 2, 791, 163, 3, 2, 2, 2, 792, 794, 5, 148, 75, 2, 793, 792, 3, 2, 2, 2, 794, 797, 3, 2, 2, 2, 795, 793, 3, 2, 2, 2, 795, 796, 3, 2, 2, 2, 796, 799, 3, 2, 2, 2, 797, 795, 3, 2, 2, 2, 798, 800, 5, 150, 76, 2, 799, 798, 3, 2, 2, 2, 799, 800, 3, 2, 2, 2, 800, 165, 3, 2, 2, 2, 801, 804, 5, 168, 85, 2, 802, 804, 7, 68, 2, 2, 803, 801, 3, 2, 2, 2, 803, 802, 3, 2, 2, 2, 804, 167, 3, 2, 2, 2, 805, 806, 9, 7, 2, 2, 806, 169, 3, 2, 2, 2, 100, 173, 178, 182, 186, 189, 192, 197, 205, 212, 215, 219, 222, 225, 231, 245, 251, 262, 265, 278, 298, 302, 308, 324, 332, 339, 343, 345, 356, 361, 366, 370, 373, 377, 383, 394, 400, 407, 421, 429, 432, 437, 445, 450, 454, 457, 462, 471, 478, 483, 487, 494, 498, 504, 509, 515, 518, 524, 528, 536, 547, 550, 556, 559, 566, 576, 579, 584, 587, 591, 598, 605, 614, 617, 622, 625, 631, 636, 640, 646, 655, 658, 663, 666, 672, 680, 689, 692, 698, 708, 713, 766, 770, 781, 786, 790, 795, 799, 803]
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
T__0=1
|
|
2
|
+
T__1=2
|
|
3
|
+
T__2=3
|
|
4
|
+
T__3=4
|
|
5
|
+
T__4=5
|
|
6
|
+
T__5=6
|
|
7
|
+
T__6=7
|
|
8
|
+
T__7=8
|
|
9
|
+
T__8=9
|
|
10
|
+
T__9=10
|
|
11
|
+
T__10=11
|
|
12
|
+
T__11=12
|
|
13
|
+
T__12=13
|
|
14
|
+
T__13=14
|
|
15
|
+
T__14=15
|
|
16
|
+
T__15=16
|
|
17
|
+
T__16=17
|
|
18
|
+
T__17=18
|
|
19
|
+
T__18=19
|
|
20
|
+
T__19=20
|
|
21
|
+
T__20=21
|
|
22
|
+
T__21=22
|
|
23
|
+
T__22=23
|
|
24
|
+
T__23=24
|
|
25
|
+
T__24=25
|
|
26
|
+
T__25=26
|
|
27
|
+
T__26=27
|
|
28
|
+
T__27=28
|
|
29
|
+
T__28=29
|
|
30
|
+
T__29=30
|
|
31
|
+
T__30=31
|
|
32
|
+
T__31=32
|
|
33
|
+
T__32=33
|
|
34
|
+
T__33=34
|
|
35
|
+
T__34=35
|
|
36
|
+
T__35=36
|
|
37
|
+
T__36=37
|
|
38
|
+
T__37=38
|
|
39
|
+
T__38=39
|
|
40
|
+
T__39=40
|
|
41
|
+
T__40=41
|
|
42
|
+
T__41=42
|
|
43
|
+
T__42=43
|
|
44
|
+
T__43=44
|
|
45
|
+
T__44=45
|
|
46
|
+
T__45=46
|
|
47
|
+
T__46=47
|
|
48
|
+
T__47=48
|
|
49
|
+
T__48=49
|
|
50
|
+
T__49=50
|
|
51
|
+
T__50=51
|
|
52
|
+
T__51=52
|
|
53
|
+
T__52=53
|
|
54
|
+
T__53=54
|
|
55
|
+
T__54=55
|
|
56
|
+
T__55=56
|
|
57
|
+
T__56=57
|
|
58
|
+
T__57=58
|
|
59
|
+
T__58=59
|
|
60
|
+
T__59=60
|
|
61
|
+
T__60=61
|
|
62
|
+
T__61=62
|
|
63
|
+
T__62=63
|
|
64
|
+
T__63=64
|
|
65
|
+
T__64=65
|
|
66
|
+
NAME=66
|
|
67
|
+
STRING=67
|
|
68
|
+
BLOCK_STRING=68
|
|
69
|
+
ID=69
|
|
70
|
+
FLOAT=70
|
|
71
|
+
INT=71
|
|
72
|
+
PUNCTUATOR=72
|
|
73
|
+
WS=73
|
|
74
|
+
COMMA=74
|
|
75
|
+
LineComment=75
|
|
76
|
+
UNICODE_BOM=76
|
|
77
|
+
UTF8_BOM=77
|
|
78
|
+
UTF16_BOM=78
|
|
79
|
+
UTF32_BOM=79
|
|
80
|
+
'query'=1
|
|
81
|
+
'mutation'=2
|
|
82
|
+
'subscription'=3
|
|
83
|
+
'{'=4
|
|
84
|
+
'}'=5
|
|
85
|
+
'('=6
|
|
86
|
+
')'=7
|
|
87
|
+
':'=8
|
|
88
|
+
'...'=9
|
|
89
|
+
'fragment'=10
|
|
90
|
+
'on'=11
|
|
91
|
+
'true'=12
|
|
92
|
+
'false'=13
|
|
93
|
+
'null'=14
|
|
94
|
+
'['=15
|
|
95
|
+
']'=16
|
|
96
|
+
'$'=17
|
|
97
|
+
'='=18
|
|
98
|
+
'!'=19
|
|
99
|
+
'@'=20
|
|
100
|
+
'schema'=21
|
|
101
|
+
'extend'=22
|
|
102
|
+
'scalar'=23
|
|
103
|
+
'type'=24
|
|
104
|
+
'implements'=25
|
|
105
|
+
'&'=26
|
|
106
|
+
'interface'=27
|
|
107
|
+
'union'=28
|
|
108
|
+
'|'=29
|
|
109
|
+
'enum'=30
|
|
110
|
+
'input'=31
|
|
111
|
+
'directive'=32
|
|
112
|
+
'QUERY'=33
|
|
113
|
+
'MUTATION'=34
|
|
114
|
+
'SUBSCRIPTION'=35
|
|
115
|
+
'FIELD'=36
|
|
116
|
+
'FRAGMENT_DEFINITION'=37
|
|
117
|
+
'FRAGMENT_SPREAD'=38
|
|
118
|
+
'INLINE_FRAGMENT'=39
|
|
119
|
+
'SCHEMA'=40
|
|
120
|
+
'SCALAR'=41
|
|
121
|
+
'OBJECT'=42
|
|
122
|
+
'FIELD_DEFINITION'=43
|
|
123
|
+
'ARGUMENT_DEFINITION'=44
|
|
124
|
+
'INTERFACE'=45
|
|
125
|
+
'UNION'=46
|
|
126
|
+
'ENUM'=47
|
|
127
|
+
'ENUM_VALUE'=48
|
|
128
|
+
'INPUT_OBJECT'=49
|
|
129
|
+
'INPUT_FIELD_DEFINITION'=50
|
|
130
|
+
'external'=51
|
|
131
|
+
'requires'=52
|
|
132
|
+
'fields'=53
|
|
133
|
+
'"'=54
|
|
134
|
+
'provides'=55
|
|
135
|
+
'key'=56
|
|
136
|
+
'shareable'=57
|
|
137
|
+
'override'=58
|
|
138
|
+
'from'=59
|
|
139
|
+
'INPUT'=60
|
|
140
|
+
'TYPE'=61
|
|
141
|
+
'DIRECTIVE'=62
|
|
142
|
+
'EXTEND'=63
|
|
143
|
+
'IMPLEMENTS'=64
|
|
144
|
+
'FRAGMENT'=65
|
|
145
|
+
','=74
|
|
146
|
+
'\uEFBBBF'=77
|
|
147
|
+
'\uFEFF'=78
|
|
148
|
+
'\u0000FEFF'=79
|