@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,300 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) {
|
|
4
|
+
"@babel/helpers - typeof";
|
|
5
|
+
|
|
6
|
+
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
|
7
|
+
_typeof = function _typeof(obj) {
|
|
8
|
+
return typeof obj;
|
|
9
|
+
};
|
|
10
|
+
} else {
|
|
11
|
+
_typeof = function _typeof(obj) {
|
|
12
|
+
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
return _typeof(obj);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
Object.defineProperty(exports, "__esModule", {
|
|
20
|
+
value: true
|
|
21
|
+
});
|
|
22
|
+
exports["default"] = void 0;
|
|
23
|
+
|
|
24
|
+
var _antlr = _interopRequireDefault(require("antlr4"));
|
|
25
|
+
|
|
26
|
+
function _interopRequireDefault(obj) {
|
|
27
|
+
return obj && obj.__esModule ? obj : {
|
|
28
|
+
"default": obj
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function _classCallCheck(instance, Constructor) {
|
|
33
|
+
if (!(instance instanceof Constructor)) {
|
|
34
|
+
throw new TypeError("Cannot call a class as a function");
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function _defineProperties(target, props) {
|
|
39
|
+
for (var i = 0; i < props.length; i++) {
|
|
40
|
+
var descriptor = props[i];
|
|
41
|
+
descriptor.enumerable = descriptor.enumerable || false;
|
|
42
|
+
descriptor.configurable = true;
|
|
43
|
+
if ("value" in descriptor) descriptor.writable = true;
|
|
44
|
+
Object.defineProperty(target, descriptor.key, descriptor);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function _createClass(Constructor, protoProps, staticProps) {
|
|
49
|
+
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
50
|
+
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
51
|
+
return Constructor;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function _inherits(subClass, superClass) {
|
|
55
|
+
if (typeof superClass !== "function" && superClass !== null) {
|
|
56
|
+
throw new TypeError("Super expression must either be null or a function");
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
60
|
+
constructor: {
|
|
61
|
+
value: subClass,
|
|
62
|
+
writable: true,
|
|
63
|
+
configurable: true
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
function _setPrototypeOf(o, p) {
|
|
70
|
+
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
71
|
+
o.__proto__ = p;
|
|
72
|
+
return o;
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
return _setPrototypeOf(o, p);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function _createSuper(Derived) {
|
|
79
|
+
var hasNativeReflectConstruct = _isNativeReflectConstruct();
|
|
80
|
+
|
|
81
|
+
return function _createSuperInternal() {
|
|
82
|
+
var Super = _getPrototypeOf(Derived),
|
|
83
|
+
result;
|
|
84
|
+
|
|
85
|
+
if (hasNativeReflectConstruct) {
|
|
86
|
+
var NewTarget = _getPrototypeOf(this).constructor;
|
|
87
|
+
|
|
88
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
89
|
+
} else {
|
|
90
|
+
result = Super.apply(this, arguments);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
return _possibleConstructorReturn(this, result);
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
function _possibleConstructorReturn(self, call) {
|
|
98
|
+
if (call && (_typeof(call) === "object" || typeof call === "function")) {
|
|
99
|
+
return call;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
return _assertThisInitialized(self);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
function _assertThisInitialized(self) {
|
|
106
|
+
if (self === void 0) {
|
|
107
|
+
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
return self;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
function _isNativeReflectConstruct() {
|
|
114
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
115
|
+
if (Reflect.construct.sham) return false;
|
|
116
|
+
if (typeof Proxy === "function") return true;
|
|
117
|
+
|
|
118
|
+
try {
|
|
119
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
120
|
+
return true;
|
|
121
|
+
} catch (e) {
|
|
122
|
+
return false;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
function _getPrototypeOf(o) {
|
|
127
|
+
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
128
|
+
return o.__proto__ || Object.getPrototypeOf(o);
|
|
129
|
+
};
|
|
130
|
+
return _getPrototypeOf(o);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
function _defineProperty(obj, key, value) {
|
|
134
|
+
if (key in obj) {
|
|
135
|
+
Object.defineProperty(obj, key, {
|
|
136
|
+
value: value,
|
|
137
|
+
enumerable: true,
|
|
138
|
+
configurable: true,
|
|
139
|
+
writable: true
|
|
140
|
+
});
|
|
141
|
+
} else {
|
|
142
|
+
obj[key] = value;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
return obj;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
var serializedATN = ["\x03\u608B\uA72A\u8133\uB9ED\u417C\u3BE7\u7786", "\u5964\x02k\u041F\b\x01\b\x01\x04\x02\t\x02\x04\x03", "\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06", "\x04\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\x0B", "\t\x0B\x04\f\t\f\x04\r\t\r\x04\x0E\t\x0E\x04\x0F\t\x0F", "\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t\x12\x04\x13", "\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16", "\x04\x17\t\x17\x04\x18\t\x18\x04\x19\t\x19\x04\x1A", "\t\x1A\x04\x1B\t\x1B\x04\x1C\t\x1C\x04\x1D\t\x1D", "\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x04\"", "\t\"\x04#\t#\x04$\t$\x04%\t%\x04&\t&\x04'\t'\x04(\t(\x04", ")\t)\x04*\t*\x04+\t+\x04,\t,\x04-\t-\x04.\t.\x04/\t/\x04", "0\t0\x041\t1\x042\t2\x043\t3\x044\t4\x045\t5\x046\t6\x04", "7\t7\x048\t8\x049\t9\x04:\t:\x04;\t;\x04<\t<\x04=\t=\x04", ">\t>\x04?\t?\x04@\t@\x04A\tA\x04B\tB\x04C\tC\x04D\tD\x04", "E\tE\x04F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04", "L\tL\x04M\tM\x04N\tN\x04O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04", "S\tS\x04T\tT\x04U\tU\x04V\tV\x04W\tW\x04X\tX\x04Y\tY\x04", "Z\tZ\x04[\t[\x04\\\t\\\x04]\t]\x04^\t^\x04_\t_\x04`\t`\x04", "a\ta\x04b\tb\x04c\tc\x04d\td\x04e\te\x04f\tf\x04g\tg\x04", "h\th\x04i\ti\x04j\tj\x04k\tk\x04l\tl\x04m\tm\x04n\tn\x04", "o\to\x04p\tp\x04q\tq\x04r\tr\x04s\ts\x04t\tt\x04u\tu\x03", "\x02\x03\x02\x03\x02\x03\x02\x03\x02\x03\x02\x03", "\x02\x03\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03", "\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03", "\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03", "\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03", "\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03", "\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03", "\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03", "\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03", "\x06\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03", "\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03", "\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03", "\b\x03\b\x03\b\x03\t\x03\t\x03\t\x03\t\x03\t\x03\t\x03", "\n\x03\n\x03\n\x03\n\x03\n\x03\x0B\x03\x0B\x03\x0B", "\x03\x0B\x03\x0B\x03\f\x03\f\x03\f\x03\f\x03\f\x03", "\f\x03\f\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03", "\r\x03\r\x03\r\x03\x0E\x03\x0E\x03\x0E\x03\x0E\x03", "\x0E\x03\x0E\x03\x0E\x03\x0E\x03\x0E\x03\x0E\x03", "\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03", "\x0F\x03\x10\x03\x10\x03\x10\x03\x10\x03\x10\x03", "\x10\x03\x11\x03\x11\x03\x11\x03\x11\x03\x11\x03", "\x11\x03\x11\x03\x11\x03\x11\x03\x11\x03\x11\x03", "\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03", "\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03", "\x13\x03\x13\x03\x13\x03\x14\x03\x14\x03\x14\x03", "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03", "\x14\x03\x14\x03\x14\x03\x14\x03\x15\x03\x15\x03", "\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x16\x03", "\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03", "\x16\x03\x16\x03\x17\x03\x17\x03\x17\x03\x18\x03", "\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x19\x03", "\x19\x03\x19\x03\x19\x03\x19\x03\x1A\x03\x1A\x03", "\x1A\x03\x1A\x03\x1A\x03\x1B\x03\x1B\x03\x1B\x03", "\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1C\x03\x1C\x03", "\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03", "\x1C\x03\x1C\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03", "\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03", "\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03", "\x1E\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03", "\x1F\x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03", " \x03 \x03 \x03!\x03!\x03!\x03!\x03!\x03!\x03\"\x03", "\"\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x03#\x03", "#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03", "#\x03#\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03%\x03", "%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03&\x03&\x03", "&\x03&\x03&\x03&\x03'\x03'\x03'\x03'\x03'\x03", "'\x03'\x03'\x03'\x03'\x03'\x03'\x03'\x03'\x03", "'\x03'\x03'\x03'\x03'\x03'\x03(\x03(\x03(\x03", "(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03", "(\x03(\x03(\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03", ")\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03*\x03", "*\x03*\x03*\x03*\x03*\x03*\x03+\x03+\x03+\x03+\x03", "+\x03+\x03+\x03+\x03+\x03+\x03+\x03+\x03+\x03+\x03", "+\x03+\x03+\x03,\x03,\x03,\x03,\x03,\x03,\x03,\x03", ",\x03,\x03,\x03,\x03,\x03,\x03,\x03,\x03,\x03,\x03", ",\x03,\x03,\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03", "-\x03-\x03-\x03-\x03.\x03.\x03.\x03.\x03.\x03.\x03", ".\x03.\x03.\x03.\x03.\x03.\x03.\x03/\x03/\x03/\x03", "/\x03/\x03/\x03/\x03/\x03/\x03/\x03/\x03/\x03/\x03", "/\x03/\x03/\x03/\x03/\x03/\x03/\x03/\x03/\x03/\x03", "0\x030\x031\x031\x032\x032\x033\x033\x034\x034\x03", "5\x035\x036\x036\x037\x037\x038\x038\x039\x039\x03", ":\x03:\x03:\x03:\x03;\x03;\x03<\x03<\x03=\x03=\x03", ">\x03>\x03?\x03?\x07?\u02D3\n?\f?\x0E?\u02D6\x0B?\x03", "@\x03@\x03@\x03@\x03@\x03A\x03A\x03A\x03A\x03A\x03", "A\x03B\x03B\x03B\x03B\x03B\x03C\x03C\x07C\u02EA\nC\f", "C\x0EC\u02ED\x0BC\x03C\x03C\x03D\x03D\x03D\x03D\x03", "D\x07D\u02F6\nD\fD\x0ED\u02F9\x0BD\x03D\x03D\x03D\x03", "D\x03E\x03E\x05E\u0301\nE\x03F\x03F\x03F\x05F\u0306\n", "F\x03G\x03G\x03G\x03G\x03G\x03G\x03H\x03H\x03I\x03", "I\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x05I\u031A", "\nI\x03J\x05J\u031D\nJ\x03J\x03J\x05J\u0321\nJ\x03J\x03", "J\x07J\u0325\nJ\fJ\x0EJ\u0328\x0BJ\x05J\u032A\nJ\x03K\x03", "K\x03L\x03L\x03M\x03M\x06M\u0332\nM\rM\x0EM\u0333\x03", "N\x03N\x05N\u0338\nN\x03N\x06N\u033B\nN\rN\x0EN\u033C\x03", "O\x03O\x03P\x03P\x03Q\x03Q\x03R\x06R\u0346\nR\rR\x0E", "R\u0347\x03R\x03R\x03S\x03S\x03S\x03S\x03T\x03T\x07", "T\u0352\nT\fT\x0ET\u0355\x0BT\x03T\x03T\x03U\x03U\x03", "U\x05U\u035C\nU\x03U\x03U\x03V\x03V\x03V\x03V\x03W\x03", "W\x03X\x03X\x03X\x03X\x03X\x03X\x03Y\x03Y\x03Y\x03", "Y\x03Y\x03Y\x03Y\x03Z\x03Z\x03Z\x03Z\x03Z\x03[\x03", "[\x03[\x03[\x03[\x03[\x03[\x03[\x03[\x03[\x03[\x03", "\\\x03\\\x03\\\x03\\\x03\\\x03]\x03]\x03]\x03]\x03", "]\x03]\x03^\x06^\u038F\n^\r^\x0E^\u0390\x03^\x03^\x03", "_\x03_\x07_\u0397\n_\f_\x0E_\u039A\x0B_\x03`\x03`\x03", "a\x03a\x03b\x03b\x03c\x03c\x03d\x03d\x03e\x03e\x03", "e\x03e\x03f\x03f\x03f\x03f\x03f\x03f\x03g\x03g\x03", "g\x03g\x03g\x03h\x03h\x03h\x03h\x03h\x03i\x03i\x03", "i\x03i\x03i\x03i\x03i\x03j\x03j\x03j\x03j\x03j\x03", "j\x03j\x03j\x03j\x03j\x03k\x03k\x03k\x03k\x03k\x03", "k\x03k\x03k\x03k\x03k\x03l\x03l\x03l\x03l\x03l\x03", "l\x03l\x03m\x03m\x03m\x03m\x03m\x03m\x03n\x03n\x03", "n\x03n\x03n\x03n\x03n\x03n\x03n\x03n\x03n\x03o\x03", "o\x03o\x03o\x03o\x03o\x03p\x03p\x03p\x03p\x03p\x03", "p\x03p\x03p\x03p\x03q\x03q\x03q\x03q\x03q\x03q\x03", "q\x03q\x03q\x03q\x03q\x03q\x03q\x03r\x03r\x03r\x03", "r\x03r\x03r\x03r\x03s\x03s\x03s\x03s\x03s\x03s\x03", "s\x03s\x03s\x03t\x03t\x03t\x03u\x03u\x03u\x03u\x03", "\u02F7\x02v\x04\x03\x06\x04\b\x05\n\x06\f\x07\x0E", "\b\x10\t\x12\n\x14\x0B\x16\f\x18\r\x1A\x0E\x1C\x0F", "\x1E\x10 \x11\"\x12$\x13&\x14(\x15*\x16,\x17.\x18", "0\x192\x1A4\x1B6\x1C8\x1D:\x1E<\x1F> @!B\"D#F$H%J&L'", "N(P)R*T+V,X-Z.\\/^0`1b2d3f4h5j6l7n8p9r:t;v<x=z>|?~@\x80A\x82B\x84", "C\x86D\x88E\x8A\x02\x8C\x02\x8E\x02\x90\x02\x92", "F\x94G\x96\x02\x98\x02\x9A\x02\x9C\x02\x9E\x02", "\xA0\x02\xA2\x02\xA4H\xA6I\xA8J\xAAK\xACL\xAEM\xB0", "N\xB2O\xB4P\xB6Q\xB8R\xBAS\xBCT\xBEU\xC0V\xC2W\xC4", "X\xC6Y\xC8Z\xCA[\xCC\\\xCE]\xD0^\xD2_\xD4`\xD6a\xD8", "b\xDAc\xDCd\xDEe\xE0f\xE2g\xE4h\xE6i\xE8j\xEAk\x04", "\x02\x03\x0E\x05\x02C\\aac|\x06\x022;C\\aac|\x04\x02", "$$^^\n\x02$$11^^ddhhppttvv\x05\x022;CHch\x03\x023;\x03\x02", "2;\x04\x02GGgg\x04\x02--//\x05\x02\x0B\f\x0F\x0F\"", "\"\x04\x02\f\f\x0F\x0F\x03\x02\"\"\x02\u0426\x02\x04", "\x03\x02\x02\x02\x02\x06\x03\x02\x02\x02\x02\b", "\x03\x02\x02\x02\x02\n\x03\x02\x02\x02\x02\f\x03", "\x02\x02\x02\x02\x0E\x03\x02\x02\x02\x02\x10\x03", "\x02\x02\x02\x02\x12\x03\x02\x02\x02\x02\x14\x03", "\x02\x02\x02\x02\x16\x03\x02\x02\x02\x02\x18\x03", "\x02\x02\x02\x02\x1A\x03\x02\x02\x02\x02\x1C\x03", "\x02\x02\x02\x02\x1E\x03\x02\x02\x02\x02 \x03", "\x02\x02\x02\x02\"\x03\x02\x02\x02\x02$\x03\x02", "\x02\x02\x02&\x03\x02\x02\x02\x02(\x03\x02\x02", "\x02\x02*\x03\x02\x02\x02\x02,\x03\x02\x02\x02", "\x02.\x03\x02\x02\x02\x020\x03\x02\x02\x02\x02", "2\x03\x02\x02\x02\x024\x03\x02\x02\x02\x026\x03", "\x02\x02\x02\x028\x03\x02\x02\x02\x02:\x03\x02", "\x02\x02\x02<\x03\x02\x02\x02\x02>\x03\x02\x02", "\x02\x02@\x03\x02\x02\x02\x02B\x03\x02\x02\x02", "\x02D\x03\x02\x02\x02\x02F\x03\x02\x02\x02\x02", "H\x03\x02\x02\x02\x02J\x03\x02\x02\x02\x02L\x03", "\x02\x02\x02\x02N\x03\x02\x02\x02\x02P\x03\x02", "\x02\x02\x02R\x03\x02\x02\x02\x02T\x03\x02\x02", "\x02\x02V\x03\x02\x02\x02\x02X\x03\x02\x02\x02", "\x02Z\x03\x02\x02\x02\x02\\\x03\x02\x02\x02\x02", "^\x03\x02\x02\x02\x02`\x03\x02\x02\x02\x02b\x03", "\x02\x02\x02\x02d\x03\x02\x02\x02\x02f\x03\x02", "\x02\x02\x02h\x03\x02\x02\x02\x02j\x03\x02\x02", "\x02\x02l\x03\x02\x02\x02\x02n\x03\x02\x02\x02", "\x02p\x03\x02\x02\x02\x02r\x03\x02\x02\x02\x02", "t\x03\x02\x02\x02\x02v\x03\x02\x02\x02\x02x\x03", "\x02\x02\x02\x02z\x03\x02\x02\x02\x02|\x03\x02", "\x02\x02\x02~\x03\x02\x02\x02\x02\x80\x03\x02", "\x02\x02\x02\x82\x03\x02\x02\x02\x02\x84\x03\x02", "\x02\x02\x02\x86\x03\x02\x02\x02\x02\x88\x03\x02", "\x02\x02\x02\x92\x03\x02\x02\x02\x02\x94\x03\x02", "\x02\x02\x02\xA4\x03\x02\x02\x02\x02\xA6\x03\x02", "\x02\x02\x02\xA8\x03\x02\x02\x02\x02\xAA\x03\x02", "\x02\x02\x02\xAC\x03\x02\x02\x02\x02\xAE\x03\x02", "\x02\x02\x02\xB0\x03\x02\x02\x02\x03\xB2\x03\x02", "\x02\x02\x03\xB4\x03\x02\x02\x02\x03\xB6\x03\x02", "\x02\x02\x03\xB8\x03\x02\x02\x02\x03\xBA\x03\x02", "\x02\x02\x03\xBC\x03\x02\x02\x02\x03\xBE\x03\x02", "\x02\x02\x03\xC0\x03\x02\x02\x02\x03\xC2\x03\x02", "\x02\x02\x03\xC4\x03\x02\x02\x02\x03\xC6\x03\x02", "\x02\x02\x03\xC8\x03\x02\x02\x02\x03\xCA\x03\x02", "\x02\x02\x03\xCC\x03\x02\x02\x02\x03\xCE\x03\x02", "\x02\x02\x03\xD0\x03\x02\x02\x02\x03\xD2\x03\x02", "\x02\x02\x03\xD4\x03\x02\x02\x02\x03\xD6\x03\x02", "\x02\x02\x03\xD8\x03\x02\x02\x02\x03\xDA\x03\x02", "\x02\x02\x03\xDC\x03\x02\x02\x02\x03\xDE\x03\x02", "\x02\x02\x03\xE0\x03\x02\x02\x02\x03\xE2\x03\x02", "\x02\x02\x03\xE4\x03\x02\x02\x02\x03\xE6\x03\x02", "\x02\x02\x03\xE8\x03\x02\x02\x02\x03\xEA\x03\x02", "\x02\x02\x04\xEC\x03\x02\x02\x02\x06\xF6\x03\x02", "\x02\x02\b\u0104\x03\x02\x02\x02\n\u0110\x03\x02\x02", "\x02\f\u011C\x03\x02\x02\x02\x0E\u0123\x03\x02\x02", "\x02\x10\u012E\x03\x02\x02\x02\x12\u013A\x03\x02\x02", "\x02\x14\u0140\x03\x02\x02\x02\x16\u0145\x03\x02\x02", "\x02\x18\u014A\x03\x02\x02\x02\x1A\u0151\x03\x02\x02", "\x02\x1C\u015B\x03\x02\x02\x02\x1E\u0165\x03\x02\x02", "\x02 \u016C\x03\x02\x02\x02\"\u0172\x03\x02\x02\x02", "$\u017D\x03\x02\x02\x02&\u0183\x03\x02\x02\x02(\u018C", "\x03\x02\x02\x02*\u0199\x03\x02\x02\x02,\u01A0\x03", "\x02\x02\x02.\u01A9\x03\x02\x02\x020\u01AC\x03\x02", "\x02\x022\u01B2\x03\x02\x02\x024\u01B7\x03\x02\x02", "\x026\u01BC\x03\x02\x02\x028\u01C3\x03\x02\x02\x02", ":\u01CD\x03\x02\x02\x02<\u01D7\x03\x02\x02\x02>\u01DE", "\x03\x02\x02\x02@\u01E4\x03\x02\x02\x02B\u01EF\x03", "\x02\x02\x02D\u01F5\x03\x02\x02\x02F\u01FE\x03\x02", "\x02\x02H\u020B\x03\x02\x02\x02J\u0212\x03\x02\x02", "\x02L\u021B\x03\x02\x02\x02N\u0221\x03\x02\x02\x02", "P\u0235\x03\x02\x02\x02R\u0245\x03\x02\x02\x02T\u0255", "\x03\x02\x02\x02V\u025C\x03\x02\x02\x02X\u026D\x03", "\x02\x02\x02Z\u0281\x03\x02\x02\x02\\\u028C\x03\x02", "\x02\x02^\u0299\x03\x02\x02\x02`\u02B0\x03\x02\x02", "\x02b\u02B2\x03\x02\x02\x02d\u02B4\x03\x02\x02\x02", "f\u02B6\x03\x02\x02\x02h\u02B8\x03\x02\x02\x02j\u02BA", "\x03\x02\x02\x02l\u02BC\x03\x02\x02\x02n\u02BE\x03", "\x02\x02\x02p\u02C0\x03\x02\x02\x02r\u02C2\x03\x02", "\x02\x02t\u02C4\x03\x02\x02\x02v\u02C8\x03\x02\x02", "\x02x\u02CA\x03\x02\x02\x02z\u02CC\x03\x02\x02\x02", "|\u02CE\x03\x02\x02\x02~\u02D0\x03\x02\x02\x02\x80", "\u02D7\x03\x02\x02\x02\x82\u02DC\x03\x02\x02\x02\x84", "\u02E2\x03\x02\x02\x02\x86\u02E7\x03\x02\x02\x02\x88", "\u02F0\x03\x02\x02\x02\x8A\u0300\x03\x02\x02\x02\x8C", "\u0302\x03\x02\x02\x02\x8E\u0307\x03\x02\x02\x02\x90", "\u030D\x03\x02\x02\x02\x92\u0319\x03\x02\x02\x02\x94", "\u0329\x03\x02\x02\x02\x96\u032B\x03\x02\x02\x02\x98", "\u032D\x03\x02\x02\x02\x9A\u032F\x03\x02\x02\x02\x9C", "\u0335\x03\x02\x02\x02\x9E\u033E\x03\x02\x02\x02\xA0", "\u0340\x03\x02\x02\x02\xA2\u0342\x03\x02\x02\x02\xA4", "\u0345\x03\x02\x02\x02\xA6\u034B\x03\x02\x02\x02\xA8", "\u034F\x03\x02\x02\x02\xAA\u035B\x03\x02\x02\x02\xAC", "\u035F\x03\x02\x02\x02\xAE\u0363\x03\x02\x02\x02\xB0", "\u0365\x03\x02\x02\x02\xB2\u036B\x03\x02\x02\x02\xB4", "\u0372\x03\x02\x02\x02\xB6\u0377\x03\x02\x02\x02\xB8", "\u0382\x03\x02\x02\x02\xBA\u0387\x03\x02\x02\x02\xBC", "\u038E\x03\x02\x02\x02\xBE\u0394\x03\x02\x02\x02\xC0", "\u039B\x03\x02\x02\x02\xC2\u039D\x03\x02\x02\x02\xC4", "\u039F\x03\x02\x02\x02\xC6\u03A1\x03\x02\x02\x02\xC8", "\u03A3\x03\x02\x02\x02\xCA\u03A5\x03\x02\x02\x02\xCC", "\u03A9\x03\x02\x02\x02\xCE\u03AF\x03\x02\x02\x02\xD0", "\u03B4\x03\x02\x02\x02\xD2\u03B9\x03\x02\x02\x02\xD4", "\u03C0\x03\x02\x02\x02\xD6\u03CA\x03\x02\x02\x02\xD8", "\u03D4\x03\x02\x02\x02\xDA\u03DB\x03\x02\x02\x02\xDC", "\u03E1\x03\x02\x02\x02\xDE\u03EC\x03\x02\x02\x02\xE0", "\u03F2\x03\x02\x02\x02\xE2\u03FB\x03\x02\x02\x02\xE4", "\u0408\x03\x02\x02\x02\xE6\u040F\x03\x02\x02\x02\xE8", "\u0418\x03\x02\x02\x02\xEA\u041B\x03\x02\x02\x02\xEC", "\xED\x07B\x02\x02\xED\xEE\x07g\x02\x02\xEE\xEF", "\x07z\x02\x02\xEF\xF0\x07v\x02\x02\xF0\xF1\x07", "g\x02\x02\xF1\xF2\x07t\x02\x02\xF2\xF3\x07p\x02", "\x02\xF3\xF4\x07c\x02\x02\xF4\xF5\x07n\x02\x02", "\xF5\x05\x03\x02\x02\x02\xF6\xF7\x07B\x02\x02", "\xF7\xF8\x07k\x02\x02\xF8\xF9\x07p\x02\x02\xF9", "\xFA\x07c\x02\x02\xFA\xFB\x07e\x02\x02\xFB\xFC", "\x07e\x02\x02\xFC\xFD\x07g\x02\x02\xFD\xFE\x07", "u\x02\x02\xFE\xFF\x07u\x02\x02\xFF\u0100\x07k\x02", "\x02\u0100\u0101\x07d\x02\x02\u0101\u0102\x07n\x02\x02", "\u0102\u0103\x07g\x02\x02\u0103\x07\x03\x02\x02\x02", "\u0104\u0105\x07B\x02\x02\u0105\u0106\x07t\x02\x02\u0106", "\u0107\x07g\x02\x02\u0107\u0108\x07s\x02\x02\u0108\u0109", "\x07w\x02\x02\u0109\u010A\x07k\x02\x02\u010A\u010B\x07", "t\x02\x02\u010B\u010C\x07g\x02\x02\u010C\u010D\x07u\x02", "\x02\u010D\u010E\x03\x02\x02\x02\u010E\u010F\b\x04\x02", "\x02\u010F\t\x03\x02\x02\x02\u0110\u0111\x07B\x02\x02", "\u0111\u0112\x07r\x02\x02\u0112\u0113\x07t\x02\x02\u0113", "\u0114\x07q\x02\x02\u0114\u0115\x07x\x02\x02\u0115\u0116", "\x07k\x02\x02\u0116\u0117\x07f\x02\x02\u0117\u0118\x07", "g\x02\x02\u0118\u0119\x07u\x02\x02\u0119\u011A\x03\x02", "\x02\x02\u011A\u011B\b\x05\x02\x02\u011B\x0B\x03\x02", "\x02\x02\u011C\u011D\x07B\x02\x02\u011D\u011E\x07m\x02", "\x02\u011E\u011F\x07g\x02\x02\u011F\u0120\x07{\x02\x02", "\u0120\u0121\x03\x02\x02\x02\u0121\u0122\b\x06\x02\x02", "\u0122\r\x03\x02\x02\x02\u0123\u0124\x07B\x02\x02\u0124", "\u0125\x07u\x02\x02\u0125\u0126\x07j\x02\x02\u0126\u0127", "\x07c\x02\x02\u0127\u0128\x07t\x02\x02\u0128\u0129\x07", "g\x02\x02\u0129\u012A\x07c\x02\x02\u012A\u012B\x07d\x02", "\x02\u012B\u012C\x07n\x02\x02\u012C\u012D\x07g\x02\x02", "\u012D\x0F\x03\x02\x02\x02\u012E\u012F\x07B\x02\x02", "\u012F\u0130\x07q\x02\x02\u0130\u0131\x07x\x02\x02\u0131", "\u0132\x07g\x02\x02\u0132\u0133\x07t\x02\x02\u0133\u0134", "\x07t\x02\x02\u0134\u0135\x07k\x02\x02\u0135\u0136\x07", "f\x02\x02\u0136\u0137\x07g\x02\x02\u0137\u0138\x03\x02", "\x02\x02\u0138\u0139\b\b\x02\x02\u0139\x11\x03\x02\x02", "\x02\u013A\u013B\x07k\x02\x02\u013B\u013C\x07p\x02\x02", "\u013C\u013D\x07r\x02\x02\u013D\u013E\x07w\x02\x02\u013E", "\u013F\x07v\x02\x02\u013F\x13\x03\x02\x02\x02\u0140", "\u0141\x07v\x02\x02\u0141\u0142\x07{\x02\x02\u0142\u0143", "\x07r\x02\x02\u0143\u0144\x07g\x02\x02\u0144\x15\x03", "\x02\x02\x02\u0145\u0146\x07g\x02\x02\u0146\u0147\x07", "p\x02\x02\u0147\u0148\x07w\x02\x02\u0148\u0149\x07o\x02", "\x02\u0149\x17\x03\x02\x02\x02\u014A\u014B\x07u\x02", "\x02\u014B\u014C\x07e\x02\x02\u014C\u014D\x07c\x02\x02", "\u014D\u014E\x07n\x02\x02\u014E\u014F\x07c\x02\x02\u014F", "\u0150\x07t\x02\x02\u0150\x19\x03\x02\x02\x02\u0151", "\u0152\x07k\x02\x02\u0152\u0153\x07p\x02\x02\u0153\u0154", "\x07v\x02\x02\u0154\u0155\x07g\x02\x02\u0155\u0156\x07", "t\x02\x02\u0156\u0157\x07h\x02\x02\u0157\u0158\x07c\x02", "\x02\u0158\u0159\x07e\x02\x02\u0159\u015A\x07g\x02\x02", "\u015A\x1B\x03\x02\x02\x02\u015B\u015C\x07f\x02\x02", "\u015C\u015D\x07k\x02\x02\u015D\u015E\x07t\x02\x02\u015E", "\u015F\x07g\x02\x02\u015F\u0160\x07e\x02\x02\u0160\u0161", "\x07v\x02\x02\u0161\u0162\x07k\x02\x02\u0162\u0163\x07", "x\x02\x02\u0163\u0164\x07g\x02\x02\u0164\x1D\x03\x02", "\x02\x02\u0165\u0166\x07g\x02\x02\u0166\u0167\x07z\x02", "\x02\u0167\u0168\x07v\x02\x02\u0168\u0169\x07g\x02\x02", "\u0169\u016A\x07p\x02\x02\u016A\u016B\x07f\x02\x02\u016B", "\x1F\x03\x02\x02\x02\u016C\u016D\x07w\x02\x02\u016D", "\u016E\x07p\x02\x02\u016E\u016F\x07k\x02\x02\u016F\u0170", "\x07q\x02\x02\u0170\u0171\x07p\x02\x02\u0171!\x03\x02", "\x02\x02\u0172\u0173\x07k\x02\x02\u0173\u0174\x07o\x02", "\x02\u0174\u0175\x07r\x02\x02\u0175\u0176\x07n\x02\x02", "\u0176\u0177\x07g\x02\x02\u0177\u0178\x07o\x02\x02\u0178", "\u0179\x07g\x02\x02\u0179\u017A\x07p\x02\x02\u017A\u017B", "\x07v\x02\x02\u017B\u017C\x07u\x02\x02\u017C#\x03\x02", "\x02\x02\u017D\u017E\x07s\x02\x02\u017E\u017F\x07w\x02", "\x02\u017F\u0180\x07g\x02\x02\u0180\u0181\x07t\x02\x02", "\u0181\u0182\x07{\x02\x02\u0182%\x03\x02\x02\x02\u0183", "\u0184\x07o\x02\x02\u0184\u0185\x07w\x02\x02\u0185\u0186", "\x07v\x02\x02\u0186\u0187\x07c\x02\x02\u0187\u0188\x07", "v\x02\x02\u0188\u0189\x07k\x02\x02\u0189\u018A\x07q\x02", "\x02\u018A\u018B\x07p\x02\x02\u018B'\x03\x02\x02\x02", "\u018C\u018D\x07u\x02\x02\u018D\u018E\x07w\x02\x02\u018E", "\u018F\x07d\x02\x02\u018F\u0190\x07u\x02\x02\u0190\u0191", "\x07e\x02\x02\u0191\u0192\x07t\x02\x02\u0192\u0193\x07", "k\x02\x02\u0193\u0194\x07r\x02\x02\u0194\u0195\x07v\x02", "\x02\u0195\u0196\x07k\x02\x02\u0196\u0197\x07q\x02\x02", "\u0197\u0198\x07p\x02\x02\u0198)\x03\x02\x02\x02\u0199", "\u019A\x07u\x02\x02\u019A\u019B\x07e\x02\x02\u019B\u019C", "\x07j\x02\x02\u019C\u019D\x07g\x02\x02\u019D\u019E\x07", "o\x02\x02\u019E\u019F\x07c\x02\x02\u019F+\x03\x02\x02", "\x02\u01A0\u01A1\x07h\x02\x02\u01A1\u01A2\x07t\x02\x02", "\u01A2\u01A3\x07c\x02\x02\u01A3\u01A4\x07i\x02\x02\u01A4", "\u01A5\x07o\x02\x02\u01A5\u01A6\x07g\x02\x02\u01A6\u01A7", "\x07p\x02\x02\u01A7\u01A8\x07v\x02\x02\u01A8-\x03\x02", "\x02\x02\u01A9\u01AA\x07q\x02\x02\u01AA\u01AB\x07p\x02", "\x02\u01AB/\x03\x02\x02\x02\u01AC\u01AD\x07K\x02\x02", "\u01AD\u01AE\x07P\x02\x02\u01AE\u01AF\x07R\x02\x02\u01AF", "\u01B0\x07W\x02\x02\u01B0\u01B1\x07V\x02\x02\u01B11\x03", "\x02\x02\x02\u01B2\u01B3\x07V\x02\x02\u01B3\u01B4\x07", "[\x02\x02\u01B4\u01B5\x07R\x02\x02\u01B5\u01B6\x07G\x02", "\x02\u01B63\x03\x02\x02\x02\u01B7\u01B8\x07G\x02\x02", "\u01B8\u01B9\x07P\x02\x02\u01B9\u01BA\x07W\x02\x02\u01BA", "\u01BB\x07O\x02\x02\u01BB5\x03\x02\x02\x02\u01BC\u01BD", "\x07U\x02\x02\u01BD\u01BE\x07E\x02\x02\u01BE\u01BF\x07", "C\x02\x02\u01BF\u01C0\x07N\x02\x02\u01C0\u01C1\x07C\x02", "\x02\u01C1\u01C2\x07T\x02\x02\u01C27\x03\x02\x02\x02", "\u01C3\u01C4\x07K\x02\x02\u01C4\u01C5\x07P\x02\x02\u01C5", "\u01C6\x07V\x02\x02\u01C6\u01C7\x07G\x02\x02\u01C7\u01C8", "\x07T\x02\x02\u01C8\u01C9\x07H\x02\x02\u01C9\u01CA\x07", "C\x02\x02\u01CA\u01CB\x07E\x02\x02\u01CB\u01CC\x07G\x02", "\x02\u01CC9\x03\x02\x02\x02\u01CD\u01CE\x07F\x02\x02", "\u01CE\u01CF\x07K\x02\x02\u01CF\u01D0\x07T\x02\x02\u01D0", "\u01D1\x07G\x02\x02\u01D1\u01D2\x07E\x02\x02\u01D2\u01D3", "\x07V\x02\x02\u01D3\u01D4\x07K\x02\x02\u01D4\u01D5\x07", "X\x02\x02\u01D5\u01D6\x07G\x02\x02\u01D6;\x03\x02\x02", "\x02\u01D7\u01D8\x07G\x02\x02\u01D8\u01D9\x07Z\x02\x02", "\u01D9\u01DA\x07V\x02\x02\u01DA\u01DB\x07G\x02\x02\u01DB", "\u01DC\x07P\x02\x02\u01DC\u01DD\x07F\x02\x02\u01DD=\x03", "\x02\x02\x02\u01DE\u01DF\x07W\x02\x02\u01DF\u01E0\x07", "P\x02\x02\u01E0\u01E1\x07K\x02\x02\u01E1\u01E2\x07Q\x02", "\x02\u01E2\u01E3\x07P\x02\x02\u01E3?\x03\x02\x02\x02", "\u01E4\u01E5\x07K\x02\x02\u01E5\u01E6\x07O\x02\x02\u01E6", "\u01E7\x07R\x02\x02\u01E7\u01E8\x07N\x02\x02\u01E8\u01E9", "\x07G\x02\x02\u01E9\u01EA\x07O\x02\x02\u01EA\u01EB\x07", "G\x02\x02\u01EB\u01EC\x07P\x02\x02\u01EC\u01ED\x07V\x02", "\x02\u01ED\u01EE\x07U\x02\x02\u01EEA\x03\x02\x02\x02", "\u01EF\u01F0\x07S\x02\x02\u01F0\u01F1\x07W\x02\x02\u01F1", "\u01F2\x07G\x02\x02\u01F2\u01F3\x07T\x02\x02\u01F3\u01F4", "\x07[\x02\x02\u01F4C\x03\x02\x02\x02\u01F5\u01F6\x07", "O\x02\x02\u01F6\u01F7\x07W\x02\x02\u01F7\u01F8\x07V\x02", "\x02\u01F8\u01F9\x07C\x02\x02\u01F9\u01FA\x07V\x02\x02", "\u01FA\u01FB\x07K\x02\x02\u01FB\u01FC\x07Q\x02\x02\u01FC", "\u01FD\x07P\x02\x02\u01FDE\x03\x02\x02\x02\u01FE\u01FF", "\x07U\x02\x02\u01FF\u0200\x07W\x02\x02\u0200\u0201\x07", "D\x02\x02\u0201\u0202\x07U\x02\x02\u0202\u0203\x07E\x02", "\x02\u0203\u0204\x07T\x02\x02\u0204\u0205\x07K\x02\x02", "\u0205\u0206\x07R\x02\x02\u0206\u0207\x07V\x02\x02\u0207", "\u0208\x07K\x02\x02\u0208\u0209\x07Q\x02\x02\u0209\u020A", "\x07P\x02\x02\u020AG\x03\x02\x02\x02\u020B\u020C\x07", "U\x02\x02\u020C\u020D\x07E\x02\x02\u020D\u020E\x07J\x02", "\x02\u020E\u020F\x07G\x02\x02\u020F\u0210\x07O\x02\x02", "\u0210\u0211\x07C\x02\x02\u0211I\x03\x02\x02\x02\u0212", "\u0213\x07H\x02\x02\u0213\u0214\x07T\x02\x02\u0214\u0215", "\x07C\x02\x02\u0215\u0216\x07I\x02\x02\u0216\u0217\x07", "O\x02\x02\u0217\u0218\x07G\x02\x02\u0218\u0219\x07P\x02", "\x02\u0219\u021A\x07V\x02\x02\u021AK\x03\x02\x02\x02", "\u021B\u021C\x07H\x02\x02\u021C\u021D\x07K\x02\x02\u021D", "\u021E\x07G\x02\x02\u021E\u021F\x07N\x02\x02\u021F\u0220", "\x07F\x02\x02\u0220M\x03\x02\x02\x02\u0221\u0222\x07", "H\x02\x02\u0222\u0223\x07T\x02\x02\u0223\u0224\x07C\x02", "\x02\u0224\u0225\x07I\x02\x02\u0225\u0226\x07O\x02\x02", "\u0226\u0227\x07G\x02\x02\u0227\u0228\x07P\x02\x02\u0228", "\u0229\x07V\x02\x02\u0229\u022A\x07a\x02\x02\u022A\u022B", "\x07F\x02\x02\u022B\u022C\x07G\x02\x02\u022C\u022D\x07", "H\x02\x02\u022D\u022E\x07K\x02\x02\u022E\u022F\x07P\x02", "\x02\u022F\u0230\x07K\x02\x02\u0230\u0231\x07V\x02\x02", "\u0231\u0232\x07K\x02\x02\u0232\u0233\x07Q\x02\x02\u0233", "\u0234\x07P\x02\x02\u0234O\x03\x02\x02\x02\u0235\u0236", "\x07H\x02\x02\u0236\u0237\x07T\x02\x02\u0237\u0238\x07", "C\x02\x02\u0238\u0239\x07I\x02\x02\u0239\u023A\x07O\x02", "\x02\u023A\u023B\x07G\x02\x02\u023B\u023C\x07P\x02\x02", "\u023C\u023D\x07V\x02\x02\u023D\u023E\x07a\x02\x02\u023E", "\u023F\x07U\x02\x02\u023F\u0240\x07R\x02\x02\u0240\u0241", "\x07T\x02\x02\u0241\u0242\x07G\x02\x02\u0242\u0243\x07", "C\x02\x02\u0243\u0244\x07F\x02\x02\u0244Q\x03\x02\x02", "\x02\u0245\u0246\x07K\x02\x02\u0246\u0247\x07P\x02\x02", "\u0247\u0248\x07N\x02\x02\u0248\u0249\x07K\x02\x02\u0249", "\u024A\x07P\x02\x02\u024A\u024B\x07G\x02\x02\u024B\u024C", "\x07a\x02\x02\u024C\u024D\x07H\x02\x02\u024D\u024E\x07", "T\x02\x02\u024E\u024F\x07C\x02\x02\u024F\u0250\x07I\x02", "\x02\u0250\u0251\x07O\x02\x02\u0251\u0252\x07G\x02\x02", "\u0252\u0253\x07P\x02\x02\u0253\u0254\x07V\x02\x02\u0254", "S\x03\x02\x02\x02\u0255\u0256\x07Q\x02\x02\u0256\u0257", "\x07D\x02\x02\u0257\u0258\x07L\x02\x02\u0258\u0259\x07", "G\x02\x02\u0259\u025A\x07E\x02\x02\u025A\u025B\x07V\x02", "\x02\u025BU\x03\x02\x02\x02\u025C\u025D\x07H\x02\x02", "\u025D\u025E\x07K\x02\x02\u025E\u025F\x07G\x02\x02\u025F", "\u0260\x07N\x02\x02\u0260\u0261\x07F\x02\x02\u0261\u0262", "\x07a\x02\x02\u0262\u0263\x07F\x02\x02\u0263\u0264\x07", "G\x02\x02\u0264\u0265\x07H\x02\x02\u0265\u0266\x07K\x02", "\x02\u0266\u0267\x07P\x02\x02\u0267\u0268\x07K\x02\x02", "\u0268\u0269\x07V\x02\x02\u0269\u026A\x07K\x02\x02\u026A", "\u026B\x07Q\x02\x02\u026B\u026C\x07P\x02\x02\u026CW\x03", "\x02\x02\x02\u026D\u026E\x07C\x02\x02\u026E\u026F\x07", "T\x02\x02\u026F\u0270\x07I\x02\x02\u0270\u0271\x07W\x02", "\x02\u0271\u0272\x07O\x02\x02\u0272\u0273\x07G\x02\x02", "\u0273\u0274\x07P\x02\x02\u0274\u0275\x07V\x02\x02\u0275", "\u0276\x07a\x02\x02\u0276\u0277\x07F\x02\x02\u0277\u0278", "\x07G\x02\x02\u0278\u0279\x07H\x02\x02\u0279\u027A\x07", "K\x02\x02\u027A\u027B\x07P\x02\x02\u027B\u027C\x07K\x02", "\x02\u027C\u027D\x07V\x02\x02\u027D\u027E\x07K\x02\x02", "\u027E\u027F\x07Q\x02\x02\u027F\u0280\x07P\x02\x02\u0280", "Y\x03\x02\x02\x02\u0281\u0282\x07G\x02\x02\u0282\u0283", "\x07P\x02\x02\u0283\u0284\x07W\x02\x02\u0284\u0285\x07", "O\x02\x02\u0285\u0286\x07a\x02\x02\u0286\u0287\x07X\x02", "\x02\u0287\u0288\x07C\x02\x02\u0288\u0289\x07N\x02\x02", "\u0289\u028A\x07W\x02\x02\u028A\u028B\x07G\x02\x02\u028B", "[\x03\x02\x02\x02\u028C\u028D\x07K\x02\x02\u028D\u028E", "\x07P\x02\x02\u028E\u028F\x07R\x02\x02\u028F\u0290\x07", "W\x02\x02\u0290\u0291\x07V\x02\x02\u0291\u0292\x07a\x02", "\x02\u0292\u0293\x07Q\x02\x02\u0293\u0294\x07D\x02\x02", "\u0294\u0295\x07L\x02\x02\u0295\u0296\x07G\x02\x02\u0296", "\u0297\x07E\x02\x02\u0297\u0298\x07V\x02\x02\u0298]\x03", "\x02\x02\x02\u0299\u029A\x07K\x02\x02\u029A\u029B\x07", "P\x02\x02\u029B\u029C\x07R\x02\x02\u029C\u029D\x07W\x02", "\x02\u029D\u029E\x07V\x02\x02\u029E\u029F\x07a\x02\x02", "\u029F\u02A0\x07H\x02\x02\u02A0\u02A1\x07K\x02\x02\u02A1", "\u02A2\x07G\x02\x02\u02A2\u02A3\x07N\x02\x02\u02A3\u02A4", "\x07F\x02\x02\u02A4\u02A5\x07a\x02\x02\u02A5\u02A6\x07", "F\x02\x02\u02A6\u02A7\x07G\x02\x02\u02A7\u02A8\x07H\x02", "\x02\u02A8\u02A9\x07K\x02\x02\u02A9\u02AA\x07P\x02\x02", "\u02AA\u02AB\x07K\x02\x02\u02AB\u02AC\x07V\x02\x02\u02AC", "\u02AD\x07K\x02\x02\u02AD\u02AE\x07Q\x02\x02\u02AE\u02AF", "\x07P\x02\x02\u02AF_\x03\x02\x02\x02\u02B0\u02B1\x07", "}\x02\x02\u02B1a\x03\x02\x02\x02\u02B2\u02B3\x07\x7F", "\x02\x02\u02B3c\x03\x02\x02\x02\u02B4\u02B5\x07]\x02", "\x02\u02B5e\x03\x02\x02\x02\u02B6\u02B7\x07_\x02\x02", "\u02B7g\x03\x02\x02\x02\u02B8\u02B9\x07*\x02\x02\u02B9", "i\x03\x02\x02\x02\u02BA\u02BB\x07+\x02\x02\u02BBk\x03", "\x02\x02\x02\u02BC\u02BD\x07B\x02\x02\u02BDm\x03\x02", "\x02\x02\u02BE\u02BF\x07(\x02\x02\u02BFo\x03\x02\x02", "\x02\u02C0\u02C1\x07?\x02\x02\u02C1q\x03\x02\x02\x02", "\u02C2\u02C3\x07<\x02\x02\u02C3s\x03\x02\x02\x02\u02C4", "\u02C5\x070\x02\x02\u02C5\u02C6\x070\x02\x02\u02C6\u02C7", "\x070\x02\x02\u02C7u\x03\x02\x02\x02\u02C8\u02C9\x07", "#\x02\x02\u02C9w\x03\x02\x02\x02\u02CA\u02CB\x07~\x02", "\x02\u02CBy\x03\x02\x02\x02\u02CC\u02CD\x07&\x02\x02", "\u02CD{\x03\x02\x02\x02\u02CE\u02CF\x07$\x02\x02\u02CF", "}\x03\x02\x02\x02\u02D0\u02D4\t\x02\x02\x02\u02D1\u02D3", "\t\x03\x02\x02\u02D2\u02D1\x03\x02\x02\x02\u02D3\u02D6", "\x03\x02\x02\x02\u02D4\u02D2\x03\x02\x02\x02\u02D4\u02D5", "\x03\x02\x02\x02\u02D5\x7F\x03\x02\x02\x02\u02D6\u02D4", "\x03\x02\x02\x02\u02D7\u02D8\x07v\x02\x02\u02D8\u02D9", "\x07t\x02\x02\u02D9\u02DA\x07w\x02\x02\u02DA\u02DB\x07", "g\x02\x02\u02DB\x81\x03\x02\x02\x02\u02DC\u02DD\x07", "h\x02\x02\u02DD\u02DE\x07c\x02\x02\u02DE\u02DF\x07n\x02", "\x02\u02DF\u02E0\x07u\x02\x02\u02E0\u02E1\x07g\x02\x02", "\u02E1\x83\x03\x02\x02\x02\u02E2\u02E3\x07p\x02\x02", "\u02E3\u02E4\x07w\x02\x02\u02E4\u02E5\x07n\x02\x02\u02E5", "\u02E6\x07n\x02\x02\u02E6\x85\x03\x02\x02\x02\u02E7", "\u02EB\x07$\x02\x02\u02E8\u02EA\x05\x8AE\x02\u02E9\u02E8", "\x03\x02\x02\x02\u02EA\u02ED\x03\x02\x02\x02\u02EB\u02E9", "\x03\x02\x02\x02\u02EB\u02EC\x03\x02\x02\x02\u02EC\u02EE", "\x03\x02\x02\x02\u02ED\u02EB\x03\x02\x02\x02\u02EE\u02EF", "\x07$\x02\x02\u02EF\x87\x03\x02\x02\x02\u02F0\u02F1", "\x07$\x02\x02\u02F1\u02F2\x07$\x02\x02\u02F2\u02F3\x07", "$\x02\x02\u02F3\u02F7\x03\x02\x02\x02\u02F4\u02F6\x0B", "\x02\x02\x02\u02F5\u02F4\x03\x02\x02\x02\u02F6\u02F9\x03", "\x02\x02\x02\u02F7\u02F8\x03\x02\x02\x02\u02F7\u02F5\x03", "\x02\x02\x02\u02F8\u02FA\x03\x02\x02\x02\u02F9\u02F7\x03", "\x02\x02\x02\u02FA\u02FB\x07$\x02\x02\u02FB\u02FC\x07", "$\x02\x02\u02FC\u02FD\x07$\x02\x02\u02FD\x89\x03\x02", "\x02\x02\u02FE\u0301\x05\x8CF\x02\u02FF\u0301\n\x04\x02", "\x02\u0300\u02FE\x03\x02\x02\x02\u0300\u02FF\x03\x02\x02", "\x02\u0301\x8B\x03\x02\x02\x02\u0302\u0305\x07^\x02", "\x02\u0303\u0306\t\x05\x02\x02\u0304\u0306\x05\x8EG\x02", "\u0305\u0303\x03\x02\x02\x02\u0305\u0304\x03\x02\x02\x02", "\u0306\x8D\x03\x02\x02\x02\u0307\u0308\x07w\x02\x02", "\u0308\u0309\x05\x90H\x02\u0309\u030A\x05\x90H\x02\u030A", "\u030B\x05\x90H\x02\u030B\u030C\x05\x90H\x02\u030C\x8F", "\x03\x02\x02\x02\u030D\u030E\t\x06\x02\x02\u030E\x91", "\x03\x02\x02\x02\u030F\u0310\x05\x94J\x02\u0310\u0311", "\x05\x9AM\x02\u0311\u031A\x03\x02\x02\x02\u0312\u0313", "\x05\x94J\x02\u0313\u0314\x05\x9CN\x02\u0314\u031A\x03", "\x02\x02\x02\u0315\u0316\x05\x94J\x02\u0316\u0317\x05", "\x9AM\x02\u0317\u0318\x05\x9CN\x02\u0318\u031A\x03\x02", "\x02\x02\u0319\u030F\x03\x02\x02\x02\u0319\u0312\x03\x02", "\x02\x02\u0319\u0315\x03\x02\x02\x02\u031A\x93\x03\x02", "\x02\x02\u031B\u031D\x05\xA2Q\x02\u031C\u031B\x03\x02", "\x02\x02\u031C\u031D\x03\x02\x02\x02\u031D\u031E\x03\x02", "\x02\x02\u031E\u032A\x072\x02\x02\u031F\u0321\x05\xA2", "Q\x02\u0320\u031F\x03\x02\x02\x02\u0320\u0321\x03\x02", "\x02\x02\u0321\u0322\x03\x02\x02\x02\u0322\u0326\x05\x96", "K\x02\u0323\u0325\x05\x98L\x02\u0324\u0323\x03\x02\x02", "\x02\u0325\u0328\x03\x02\x02\x02\u0326\u0324\x03\x02\x02", "\x02\u0326\u0327\x03\x02\x02\x02\u0327\u032A\x03\x02\x02", "\x02\u0328\u0326\x03\x02\x02\x02\u0329\u031C\x03\x02\x02", "\x02\u0329\u0320\x03\x02\x02\x02\u032A\x95\x03\x02\x02", "\x02\u032B\u032C\t\x07\x02\x02\u032C\x97\x03\x02\x02", "\x02\u032D\u032E\t\b\x02\x02\u032E\x99\x03\x02\x02\x02", "\u032F\u0331\x070\x02\x02\u0330\u0332\x05\x98L\x02\u0331", "\u0330\x03\x02\x02\x02\u0332\u0333\x03\x02\x02\x02\u0333", "\u0331\x03\x02\x02\x02\u0333\u0334\x03\x02\x02\x02\u0334", "\x9B\x03\x02\x02\x02\u0335\u0337\x05\x9EO\x02\u0336", "\u0338\x05\xA0P\x02\u0337\u0336\x03\x02\x02\x02\u0337", "\u0338\x03\x02\x02\x02\u0338\u033A\x03\x02\x02\x02\u0339", "\u033B\x05\x98L\x02\u033A\u0339\x03\x02\x02\x02\u033B", "\u033C\x03\x02\x02\x02\u033C\u033A\x03\x02\x02\x02\u033C", "\u033D\x03\x02\x02\x02\u033D\x9D\x03\x02\x02\x02\u033E", "\u033F\t\t\x02\x02\u033F\x9F\x03\x02\x02\x02\u0340\u0341", "\t\n\x02\x02\u0341\xA1\x03\x02\x02\x02\u0342\u0343\x07", "/\x02\x02\u0343\xA3\x03\x02\x02\x02\u0344\u0346\t\x0B", "\x02\x02\u0345\u0344\x03\x02\x02\x02\u0346\u0347\x03\x02", "\x02\x02\u0347\u0345\x03\x02\x02\x02\u0347\u0348\x03\x02", "\x02\x02\u0348\u0349\x03\x02\x02\x02\u0349\u034A\bR\x03", "\x02\u034A\xA5\x03\x02\x02\x02\u034B\u034C\x07.\x02", "\x02\u034C\u034D\x03\x02\x02\x02\u034D\u034E\bS\x03\x02", "\u034E\xA7\x03\x02\x02\x02\u034F\u0353\x07%\x02\x02", "\u0350\u0352\n\f\x02\x02\u0351\u0350\x03\x02\x02\x02\u0352", "\u0355\x03\x02\x02\x02\u0353\u0351\x03\x02\x02\x02\u0353", "\u0354\x03\x02\x02\x02\u0354\u0356\x03\x02\x02\x02\u0355", "\u0353\x03\x02\x02\x02\u0356\u0357\bT\x03\x02\u0357\xA9", "\x03\x02\x02\x02\u0358\u035C\x05\xACV\x02\u0359\u035C", "\x05\xAEW\x02\u035A\u035C\x05\xB0X\x02\u035B\u0358\x03", "\x02\x02\x02\u035B\u0359\x03\x02\x02\x02\u035B\u035A\x03", "\x02\x02\x02\u035C\u035D\x03\x02\x02\x02\u035D\u035E\b", "U\x03\x02\u035E\xAB\x03\x02\x02\x02\u035F\u0360\x07", "\uEFBD\x02\x02\u0360\u0361\x07D\x02\x02\u0361\u0362\x07", "H\x02\x02\u0362\xAD\x03\x02\x02\x02\u0363\u0364\x07", "\uFF01\x02\x02\u0364\xAF\x03\x02\x02\x02\u0365\u0366\x07", "\x02\x02\x02\u0366\u0367\x07H\x02\x02\u0367\u0368\x07", "G\x02\x02\u0368\u0369\x07H\x02\x02\u0369\u036A\x07H\x02", "\x02\u036A\xB1\x03\x02\x02\x02\u036B\u036C\x07h\x02", "\x02\u036C\u036D\x07k\x02\x02\u036D\u036E\x07g\x02\x02", "\u036E\u036F\x07n\x02\x02\u036F\u0370\x07f\x02\x02\u0370", "\u0371\x07u\x02\x02\u0371\xB3\x03\x02\x02\x02\u0372", "\u0373\x07h\x02\x02\u0373\u0374\x07t\x02\x02\u0374\u0375", "\x07q\x02\x02\u0375\u0376\x07o\x02\x02\u0376\xB5\x03", "\x02\x02\x02\u0377\u0378\x07t\x02\x02\u0378\u0379\x07", "g\x02\x02\u0379\u037A\x07u\x02\x02\u037A\u037B\x07q\x02", "\x02\u037B\u037C\x07n\x02\x02\u037C\u037D\x07x\x02\x02", "\u037D\u037E\x07c\x02\x02\u037E\u037F\x07d\x02\x02\u037F", "\u0380\x07n\x02\x02\u0380\u0381\x07g\x02\x02\u0381\xB7", "\x03\x02\x02\x02\u0382\u0383\x07v\x02\x02\u0383\u0384", "\x07t\x02\x02\u0384\u0385\x07w\x02\x02\u0385\u0386\x07", "g\x02\x02\u0386\xB9\x03\x02\x02\x02\u0387\u0388\x07", "h\x02\x02\u0388\u0389\x07c\x02\x02\u0389\u038A\x07n\x02", "\x02\u038A\u038B\x07u\x02\x02\u038B\u038C\x07g\x02\x02", "\u038C\xBB\x03\x02\x02\x02\u038D\u038F\t\r\x02\x02\u038E", "\u038D\x03\x02\x02\x02\u038F\u0390\x03\x02\x02\x02\u0390", "\u038E\x03\x02\x02\x02\u0390\u0391\x03\x02\x02\x02\u0391", "\u0392\x03\x02\x02\x02\u0392\u0393\b^\x03\x02\u0393\xBD", "\x03\x02\x02\x02\u0394\u0398\t\x02\x02\x02\u0395\u0397", "\t\x03\x02\x02\u0396\u0395\x03\x02\x02\x02\u0397\u039A", "\x03\x02\x02\x02\u0398\u0396\x03\x02\x02\x02\u0398\u0399", "\x03\x02\x02\x02\u0399\xBF\x03\x02\x02\x02\u039A\u0398", "\x03\x02\x02\x02\u039B\u039C\x07$\x02\x02\u039C\xC1", "\x03\x02\x02\x02\u039D\u039E\x07<\x02\x02\u039E\xC3", "\x03\x02\x02\x02\u039F\u03A0\x07}\x02\x02\u03A0\xC5", "\x03\x02\x02\x02\u03A1\u03A2\x07\x7F\x02\x02\u03A2\xC7", "\x03\x02\x02\x02\u03A3\u03A4\x07*\x02\x02\u03A4\xC9", "\x03\x02\x02\x02\u03A5\u03A6\x07+\x02\x02\u03A6\u03A7", "\x03\x02\x02\x02\u03A7\u03A8\be\x04\x02\u03A8\xCB\x03", "\x02\x02\x02\u03A9\u03AA\x07k\x02\x02\u03AA\u03AB\x07", "p\x02\x02\u03AB\u03AC\x07r\x02\x02\u03AC\u03AD\x07w\x02", "\x02\u03AD\u03AE\x07v\x02\x02\u03AE\xCD\x03\x02\x02", "\x02\u03AF\u03B0\x07v\x02\x02\u03B0\u03B1\x07{\x02\x02", "\u03B1\u03B2\x07r\x02\x02\u03B2\u03B3\x07g\x02\x02\u03B3", "\xCF\x03\x02\x02\x02\u03B4\u03B5\x07g\x02\x02\u03B5", "\u03B6\x07p\x02\x02\u03B6\u03B7\x07w\x02\x02\u03B7\u03B8", "\x07o\x02\x02\u03B8\xD1\x03\x02\x02\x02\u03B9\u03BA", "\x07u\x02\x02\u03BA\u03BB\x07e\x02\x02\u03BB\u03BC\x07", "c\x02\x02\u03BC\u03BD\x07n\x02\x02\u03BD\u03BE\x07c\x02", "\x02\u03BE\u03BF\x07t\x02\x02\u03BF\xD3\x03\x02\x02", "\x02\u03C0\u03C1\x07k\x02\x02\u03C1\u03C2\x07p\x02\x02", "\u03C2\u03C3\x07v\x02\x02\u03C3\u03C4\x07g\x02\x02\u03C4", "\u03C5\x07t\x02\x02\u03C5\u03C6\x07h\x02\x02\u03C6\u03C7", "\x07c\x02\x02\u03C7\u03C8\x07e\x02\x02\u03C8\u03C9\x07", "g\x02\x02\u03C9\xD5\x03\x02\x02\x02\u03CA\u03CB\x07", "f\x02\x02\u03CB\u03CC\x07k\x02\x02\u03CC\u03CD\x07t\x02", "\x02\u03CD\u03CE\x07g\x02\x02\u03CE\u03CF\x07e\x02\x02", "\u03CF\u03D0\x07v\x02\x02\u03D0\u03D1\x07k\x02\x02\u03D1", "\u03D2\x07x\x02\x02\u03D2\u03D3\x07g\x02\x02\u03D3\xD7", "\x03\x02\x02\x02\u03D4\u03D5\x07g\x02\x02\u03D5\u03D6", "\x07z\x02\x02\u03D6\u03D7\x07v\x02\x02\u03D7\u03D8\x07", "g\x02\x02\u03D8\u03D9\x07p\x02\x02\u03D9\u03DA\x07f\x02", "\x02\u03DA\xD9\x03\x02\x02\x02\u03DB\u03DC\x07w\x02", "\x02\u03DC\u03DD\x07p\x02\x02\u03DD\u03DE\x07k\x02\x02", "\u03DE\u03DF\x07q\x02\x02\u03DF\u03E0\x07p\x02\x02\u03E0", "\xDB\x03\x02\x02\x02\u03E1\u03E2\x07k\x02\x02\u03E2", "\u03E3\x07o\x02\x02\u03E3\u03E4\x07r\x02\x02\u03E4\u03E5", "\x07n\x02\x02\u03E5\u03E6\x07g\x02\x02\u03E6\u03E7\x07", "o\x02\x02\u03E7\u03E8\x07g\x02\x02\u03E8\u03E9\x07p\x02", "\x02\u03E9\u03EA\x07v\x02\x02\u03EA\u03EB\x07u\x02\x02", "\u03EB\xDD\x03\x02\x02\x02\u03EC\u03ED\x07s\x02\x02", "\u03ED\u03EE\x07w\x02\x02\u03EE\u03EF\x07g\x02\x02\u03EF", "\u03F0\x07t\x02\x02\u03F0\u03F1\x07{\x02\x02\u03F1\xDF", "\x03\x02\x02\x02\u03F2\u03F3\x07o\x02\x02\u03F3\u03F4", "\x07w\x02\x02\u03F4\u03F5\x07v\x02\x02\u03F5\u03F6\x07", "c\x02\x02\u03F6\u03F7\x07v\x02\x02\u03F7\u03F8\x07k\x02", "\x02\u03F8\u03F9\x07q\x02\x02\u03F9\u03FA\x07p\x02\x02", "\u03FA\xE1\x03\x02\x02\x02\u03FB\u03FC\x07u\x02\x02", "\u03FC\u03FD\x07w\x02\x02\u03FD\u03FE\x07d\x02\x02\u03FE", "\u03FF\x07u\x02\x02\u03FF\u0400\x07e\x02\x02\u0400\u0401", "\x07t\x02\x02\u0401\u0402\x07k\x02\x02\u0402\u0403\x07", "r\x02\x02\u0403\u0404\x07v\x02\x02\u0404\u0405\x07k\x02", "\x02\u0405\u0406\x07q\x02\x02\u0406\u0407\x07p\x02\x02", "\u0407\xE3\x03\x02\x02\x02\u0408\u0409\x07u\x02\x02", "\u0409\u040A\x07e\x02\x02\u040A\u040B\x07j\x02\x02\u040B", "\u040C\x07g\x02\x02\u040C\u040D\x07o\x02\x02\u040D\u040E", "\x07c\x02\x02\u040E\xE5\x03\x02\x02\x02\u040F\u0410", "\x07h\x02\x02\u0410\u0411\x07t\x02\x02\u0411\u0412\x07", "c\x02\x02\u0412\u0413\x07i\x02\x02\u0413\u0414\x07o\x02", "\x02\u0414\u0415\x07g\x02\x02\u0415\u0416\x07p\x02\x02", "\u0416\u0417\x07v\x02\x02\u0417\xE7\x03\x02\x02\x02", "\u0418\u0419\x07q\x02\x02\u0419\u041A\x07p\x02\x02\u041A", "\xE9\x03\x02\x02\x02\u041B\u041C\x07.\x02\x02\u041C", "\u041D\x03\x02\x02\x02\u041D\u041E\bu\x03\x02\u041E\xEB", "\x03\x02\x02\x02\x16\x02\x03\u02D4\u02EB\u02F7\u0300\u0305", "\u0319\u031C\u0320\u0326\u0329\u0333\u0337\u033C\u0347\u0353\u035B\u0390", "\u0398\x05\x07\x03\x02\b\x02\x02\x06\x02\x02"].join("");
|
|
149
|
+
var atn = new _antlr["default"].atn.ATNDeserializer().deserialize(serializedATN);
|
|
150
|
+
var decisionsToDFA = atn.decisionToState.map(function (ds, index) {
|
|
151
|
+
return new _antlr["default"].dfa.DFA(ds, index);
|
|
152
|
+
});
|
|
153
|
+
|
|
154
|
+
var GraphQLFederationLexer = /*#__PURE__*/function (_antlr4$Lexer) {
|
|
155
|
+
_inherits(GraphQLFederationLexer, _antlr4$Lexer);
|
|
156
|
+
|
|
157
|
+
var _super = _createSuper(GraphQLFederationLexer);
|
|
158
|
+
|
|
159
|
+
function GraphQLFederationLexer(input) {
|
|
160
|
+
var _this;
|
|
161
|
+
|
|
162
|
+
_classCallCheck(this, GraphQLFederationLexer);
|
|
163
|
+
|
|
164
|
+
_this = _super.call(this, input);
|
|
165
|
+
_this._interp = new _antlr["default"].atn.LexerATNSimulator(_assertThisInitialized(_this), atn, decisionsToDFA, new _antlr["default"].PredictionContextCache());
|
|
166
|
+
return _this;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
_createClass(GraphQLFederationLexer, [{
|
|
170
|
+
key: "atn",
|
|
171
|
+
get: function get() {
|
|
172
|
+
return atn;
|
|
173
|
+
}
|
|
174
|
+
}]);
|
|
175
|
+
|
|
176
|
+
return GraphQLFederationLexer;
|
|
177
|
+
}(_antlr["default"].Lexer);
|
|
178
|
+
|
|
179
|
+
exports["default"] = GraphQLFederationLexer;
|
|
180
|
+
|
|
181
|
+
_defineProperty(GraphQLFederationLexer, "grammarFileName", "GraphQLFederationLexer.g4");
|
|
182
|
+
|
|
183
|
+
_defineProperty(GraphQLFederationLexer, "channelNames", ["DEFAULT_TOKEN_CHANNEL", "HIDDEN"]);
|
|
184
|
+
|
|
185
|
+
_defineProperty(GraphQLFederationLexer, "modeNames", ["DEFAULT_MODE", "FederationMode"]);
|
|
186
|
+
|
|
187
|
+
_defineProperty(GraphQLFederationLexer, "literalNames", [null, "'@external'", "'@inaccessible'", "'@requires'", "'@provides'", "'@key'", "'@shareable'", "'@override'", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, "'INPUT'", "'TYPE'", "'ENUM'", "'SCALAR'", "'INTERFACE'", "'DIRECTIVE'", "'EXTEND'", "'UNION'", "'IMPLEMENTS'", "'QUERY'", "'MUTATION'", "'SUBSCRIPTION'", "'SCHEMA'", "'FRAGMENT'", "'FIELD'", "'FRAGMENT_DEFINITION'", "'FRAGMENT_SPREAD'", "'INLINE_FRAGMENT'", "'OBJECT'", "'FIELD_DEFINITION'", "'ARGUMENT_DEFINITION'", "'ENUM_VALUE'", "'INPUT_OBJECT'", "'INPUT_FIELD_DEFINITION'", null, null, "'['", "']'", null, null, "'@'", "'&'", "'='", null, "'...'", "'!'", "'|'", "'$'", null, null, null, null, "'null'", null, null, null, null, null, null, null, null, "'\uEFBBBF'", "'\uFEFF'", "'\0FEFF'", "'fields'", "'from'", "'resolvable'"]);
|
|
188
|
+
|
|
189
|
+
_defineProperty(GraphQLFederationLexer, "symbolicNames", [null, "EXTERNAL", "INACCESSIBLE", "REQUIRES", "PROVIDES", "KEY", "SHAREABLE", "OVERRIDE", "INPUT_KEYWORD", "TYPE_KEYWORD", "ENUM_KEYWORD", "SCALAR_KEYWORD", "INTERFACE_KEYWORD", "DIRECTIVE_KEYWORD", "EXTEND_KEYWORD", "UNION_KEYWORD", "IMPLEMENTS_KEYWORD", "QUERY_KEYWORD", "MUTATION_KEYWORD", "SUBSCRIPTION_KEYWORD", "SCHEMA_KEYWORD", "FRAGMENT_KEYWORD", "ON_KEYWORD", "INPUT_LOCATION", "TYPE_LOCATION", "ENUM_LOCATION", "SCALAR_LOCATION", "INTERFACE_LOCATION", "DIRECTIVE_LOCATION", "EXTEND_LOCATION", "UNION_LOCATION", "IMPLEMENTS_LOCATION", "QUERY_LOCATION", "MUTATION_LOCATION", "SUBSCRIPTION_LOCATION", "SCHEMA_LOCATION", "FRAGMENT_LOCATION", "FIELD_LOCATION", "FRAGMENT_DEFINITION_LOCATION", "FRAGMENT_SPREAD_LOCATION", "INLINE_FRAGMENT_LOCATION", "OBJECT_LOCATION", "FIELD_DEFINITION_LOCATION", "ARGUMENT_DEFINITION_LOCATION", "ENUM_VALUE_LOCATION", "INPUT_OBJECT_LOCATION", "INPUT_FIELD_DEFINITION_LOCATION", "LBRACE", "RBRACE", "LBRACKET", "RBRACKET", "LPAREN", "RPAREN", "AT", "AMP", "EQ", "COLON", "ELLIPSIS", "EXCL", "VSLASH", "DOLLAR", "DQUOTE", "NAME", "TRUE", "FALSE", "NULL", "STRING", "BLOCK_STRING", "FLOAT", "INT", "WS", "COMMA", "LineComment", "UNICODE_BOM", "UTF8_BOM", "UTF16_BOM", "UTF32_BOM", "FIELDS_KEYWORD", "FROM_KEYWORD", "RESOLVABLE_KEYWORD", "TRUE_F", "FALSE_F", "WS_F", "NAME_F", "DQUOTE_F", "COLON_F", "LBRACE_F", "RBRACE_F", "LPAREN_F", "RPAREN_F", "INPUT_KEYWORD_F", "TYPE_KEYWORD_F", "ENUM_KEYWORD_F", "SCALAR_KEYWORD_F", "INTERFACE_KEYWORD_F", "DIRECTIVE_KEYWORD_F", "EXTEND_KEYWORD_F", "UNION_KEYWORD_F", "IMPLEMENTS_KEYWORD_F", "QUERY_KEYWORD_F", "MUTATION_KEYWORD_F", "SUBSCRIPTION_KEYWORD_F", "SCHEMA_KEYWORD_F", "FRAGMENT_KEYWORD_F", "ON_KEYWORD_F", "COMMA_F"]);
|
|
190
|
+
|
|
191
|
+
_defineProperty(GraphQLFederationLexer, "ruleNames", ["EXTERNAL", "INACCESSIBLE", "REQUIRES", "PROVIDES", "KEY", "SHAREABLE", "OVERRIDE", "INPUT_KEYWORD", "TYPE_KEYWORD", "ENUM_KEYWORD", "SCALAR_KEYWORD", "INTERFACE_KEYWORD", "DIRECTIVE_KEYWORD", "EXTEND_KEYWORD", "UNION_KEYWORD", "IMPLEMENTS_KEYWORD", "QUERY_KEYWORD", "MUTATION_KEYWORD", "SUBSCRIPTION_KEYWORD", "SCHEMA_KEYWORD", "FRAGMENT_KEYWORD", "ON_KEYWORD", "INPUT_LOCATION", "TYPE_LOCATION", "ENUM_LOCATION", "SCALAR_LOCATION", "INTERFACE_LOCATION", "DIRECTIVE_LOCATION", "EXTEND_LOCATION", "UNION_LOCATION", "IMPLEMENTS_LOCATION", "QUERY_LOCATION", "MUTATION_LOCATION", "SUBSCRIPTION_LOCATION", "SCHEMA_LOCATION", "FRAGMENT_LOCATION", "FIELD_LOCATION", "FRAGMENT_DEFINITION_LOCATION", "FRAGMENT_SPREAD_LOCATION", "INLINE_FRAGMENT_LOCATION", "OBJECT_LOCATION", "FIELD_DEFINITION_LOCATION", "ARGUMENT_DEFINITION_LOCATION", "ENUM_VALUE_LOCATION", "INPUT_OBJECT_LOCATION", "INPUT_FIELD_DEFINITION_LOCATION", "LBRACE", "RBRACE", "LBRACKET", "RBRACKET", "LPAREN", "RPAREN", "AT", "AMP", "EQ", "COLON", "ELLIPSIS", "EXCL", "VSLASH", "DOLLAR", "DQUOTE", "NAME", "TRUE", "FALSE", "NULL", "STRING", "BLOCK_STRING", "CHARACTER", "ESC", "UNICODE", "HEX", "FLOAT", "INT", "NONZERO_DIGIT", "DIGIT", "FRACTIONAL_PART", "EXPONENTIAL_PART", "EXPONENT_INDICATOR", "SIGN", "NEGATIVE_SIGN", "WS", "COMMA", "LineComment", "UNICODE_BOM", "UTF8_BOM", "UTF16_BOM", "UTF32_BOM", "FIELDS_KEYWORD", "FROM_KEYWORD", "RESOLVABLE_KEYWORD", "TRUE_F", "FALSE_F", "WS_F", "NAME_F", "DQUOTE_F", "COLON_F", "LBRACE_F", "RBRACE_F", "LPAREN_F", "RPAREN_F", "INPUT_KEYWORD_F", "TYPE_KEYWORD_F", "ENUM_KEYWORD_F", "SCALAR_KEYWORD_F", "INTERFACE_KEYWORD_F", "DIRECTIVE_KEYWORD_F", "EXTEND_KEYWORD_F", "UNION_KEYWORD_F", "IMPLEMENTS_KEYWORD_F", "QUERY_KEYWORD_F", "MUTATION_KEYWORD_F", "SUBSCRIPTION_KEYWORD_F", "SCHEMA_KEYWORD_F", "FRAGMENT_KEYWORD_F", "ON_KEYWORD_F", "COMMA_F"]);
|
|
192
|
+
|
|
193
|
+
GraphQLFederationLexer.EOF = _antlr["default"].Token.EOF;
|
|
194
|
+
GraphQLFederationLexer.EXTERNAL = 1;
|
|
195
|
+
GraphQLFederationLexer.INACCESSIBLE = 2;
|
|
196
|
+
GraphQLFederationLexer.REQUIRES = 3;
|
|
197
|
+
GraphQLFederationLexer.PROVIDES = 4;
|
|
198
|
+
GraphQLFederationLexer.KEY = 5;
|
|
199
|
+
GraphQLFederationLexer.SHAREABLE = 6;
|
|
200
|
+
GraphQLFederationLexer.OVERRIDE = 7;
|
|
201
|
+
GraphQLFederationLexer.INPUT_KEYWORD = 8;
|
|
202
|
+
GraphQLFederationLexer.TYPE_KEYWORD = 9;
|
|
203
|
+
GraphQLFederationLexer.ENUM_KEYWORD = 10;
|
|
204
|
+
GraphQLFederationLexer.SCALAR_KEYWORD = 11;
|
|
205
|
+
GraphQLFederationLexer.INTERFACE_KEYWORD = 12;
|
|
206
|
+
GraphQLFederationLexer.DIRECTIVE_KEYWORD = 13;
|
|
207
|
+
GraphQLFederationLexer.EXTEND_KEYWORD = 14;
|
|
208
|
+
GraphQLFederationLexer.UNION_KEYWORD = 15;
|
|
209
|
+
GraphQLFederationLexer.IMPLEMENTS_KEYWORD = 16;
|
|
210
|
+
GraphQLFederationLexer.QUERY_KEYWORD = 17;
|
|
211
|
+
GraphQLFederationLexer.MUTATION_KEYWORD = 18;
|
|
212
|
+
GraphQLFederationLexer.SUBSCRIPTION_KEYWORD = 19;
|
|
213
|
+
GraphQLFederationLexer.SCHEMA_KEYWORD = 20;
|
|
214
|
+
GraphQLFederationLexer.FRAGMENT_KEYWORD = 21;
|
|
215
|
+
GraphQLFederationLexer.ON_KEYWORD = 22;
|
|
216
|
+
GraphQLFederationLexer.INPUT_LOCATION = 23;
|
|
217
|
+
GraphQLFederationLexer.TYPE_LOCATION = 24;
|
|
218
|
+
GraphQLFederationLexer.ENUM_LOCATION = 25;
|
|
219
|
+
GraphQLFederationLexer.SCALAR_LOCATION = 26;
|
|
220
|
+
GraphQLFederationLexer.INTERFACE_LOCATION = 27;
|
|
221
|
+
GraphQLFederationLexer.DIRECTIVE_LOCATION = 28;
|
|
222
|
+
GraphQLFederationLexer.EXTEND_LOCATION = 29;
|
|
223
|
+
GraphQLFederationLexer.UNION_LOCATION = 30;
|
|
224
|
+
GraphQLFederationLexer.IMPLEMENTS_LOCATION = 31;
|
|
225
|
+
GraphQLFederationLexer.QUERY_LOCATION = 32;
|
|
226
|
+
GraphQLFederationLexer.MUTATION_LOCATION = 33;
|
|
227
|
+
GraphQLFederationLexer.SUBSCRIPTION_LOCATION = 34;
|
|
228
|
+
GraphQLFederationLexer.SCHEMA_LOCATION = 35;
|
|
229
|
+
GraphQLFederationLexer.FRAGMENT_LOCATION = 36;
|
|
230
|
+
GraphQLFederationLexer.FIELD_LOCATION = 37;
|
|
231
|
+
GraphQLFederationLexer.FRAGMENT_DEFINITION_LOCATION = 38;
|
|
232
|
+
GraphQLFederationLexer.FRAGMENT_SPREAD_LOCATION = 39;
|
|
233
|
+
GraphQLFederationLexer.INLINE_FRAGMENT_LOCATION = 40;
|
|
234
|
+
GraphQLFederationLexer.OBJECT_LOCATION = 41;
|
|
235
|
+
GraphQLFederationLexer.FIELD_DEFINITION_LOCATION = 42;
|
|
236
|
+
GraphQLFederationLexer.ARGUMENT_DEFINITION_LOCATION = 43;
|
|
237
|
+
GraphQLFederationLexer.ENUM_VALUE_LOCATION = 44;
|
|
238
|
+
GraphQLFederationLexer.INPUT_OBJECT_LOCATION = 45;
|
|
239
|
+
GraphQLFederationLexer.INPUT_FIELD_DEFINITION_LOCATION = 46;
|
|
240
|
+
GraphQLFederationLexer.LBRACE = 47;
|
|
241
|
+
GraphQLFederationLexer.RBRACE = 48;
|
|
242
|
+
GraphQLFederationLexer.LBRACKET = 49;
|
|
243
|
+
GraphQLFederationLexer.RBRACKET = 50;
|
|
244
|
+
GraphQLFederationLexer.LPAREN = 51;
|
|
245
|
+
GraphQLFederationLexer.RPAREN = 52;
|
|
246
|
+
GraphQLFederationLexer.AT = 53;
|
|
247
|
+
GraphQLFederationLexer.AMP = 54;
|
|
248
|
+
GraphQLFederationLexer.EQ = 55;
|
|
249
|
+
GraphQLFederationLexer.COLON = 56;
|
|
250
|
+
GraphQLFederationLexer.ELLIPSIS = 57;
|
|
251
|
+
GraphQLFederationLexer.EXCL = 58;
|
|
252
|
+
GraphQLFederationLexer.VSLASH = 59;
|
|
253
|
+
GraphQLFederationLexer.DOLLAR = 60;
|
|
254
|
+
GraphQLFederationLexer.DQUOTE = 61;
|
|
255
|
+
GraphQLFederationLexer.NAME = 62;
|
|
256
|
+
GraphQLFederationLexer.TRUE = 63;
|
|
257
|
+
GraphQLFederationLexer.FALSE = 64;
|
|
258
|
+
GraphQLFederationLexer.NULL = 65;
|
|
259
|
+
GraphQLFederationLexer.STRING = 66;
|
|
260
|
+
GraphQLFederationLexer.BLOCK_STRING = 67;
|
|
261
|
+
GraphQLFederationLexer.FLOAT = 68;
|
|
262
|
+
GraphQLFederationLexer.INT = 69;
|
|
263
|
+
GraphQLFederationLexer.WS = 70;
|
|
264
|
+
GraphQLFederationLexer.COMMA = 71;
|
|
265
|
+
GraphQLFederationLexer.LineComment = 72;
|
|
266
|
+
GraphQLFederationLexer.UNICODE_BOM = 73;
|
|
267
|
+
GraphQLFederationLexer.UTF8_BOM = 74;
|
|
268
|
+
GraphQLFederationLexer.UTF16_BOM = 75;
|
|
269
|
+
GraphQLFederationLexer.UTF32_BOM = 76;
|
|
270
|
+
GraphQLFederationLexer.FIELDS_KEYWORD = 77;
|
|
271
|
+
GraphQLFederationLexer.FROM_KEYWORD = 78;
|
|
272
|
+
GraphQLFederationLexer.RESOLVABLE_KEYWORD = 79;
|
|
273
|
+
GraphQLFederationLexer.TRUE_F = 80;
|
|
274
|
+
GraphQLFederationLexer.FALSE_F = 81;
|
|
275
|
+
GraphQLFederationLexer.WS_F = 82;
|
|
276
|
+
GraphQLFederationLexer.NAME_F = 83;
|
|
277
|
+
GraphQLFederationLexer.DQUOTE_F = 84;
|
|
278
|
+
GraphQLFederationLexer.COLON_F = 85;
|
|
279
|
+
GraphQLFederationLexer.LBRACE_F = 86;
|
|
280
|
+
GraphQLFederationLexer.RBRACE_F = 87;
|
|
281
|
+
GraphQLFederationLexer.LPAREN_F = 88;
|
|
282
|
+
GraphQLFederationLexer.RPAREN_F = 89;
|
|
283
|
+
GraphQLFederationLexer.INPUT_KEYWORD_F = 90;
|
|
284
|
+
GraphQLFederationLexer.TYPE_KEYWORD_F = 91;
|
|
285
|
+
GraphQLFederationLexer.ENUM_KEYWORD_F = 92;
|
|
286
|
+
GraphQLFederationLexer.SCALAR_KEYWORD_F = 93;
|
|
287
|
+
GraphQLFederationLexer.INTERFACE_KEYWORD_F = 94;
|
|
288
|
+
GraphQLFederationLexer.DIRECTIVE_KEYWORD_F = 95;
|
|
289
|
+
GraphQLFederationLexer.EXTEND_KEYWORD_F = 96;
|
|
290
|
+
GraphQLFederationLexer.UNION_KEYWORD_F = 97;
|
|
291
|
+
GraphQLFederationLexer.IMPLEMENTS_KEYWORD_F = 98;
|
|
292
|
+
GraphQLFederationLexer.QUERY_KEYWORD_F = 99;
|
|
293
|
+
GraphQLFederationLexer.MUTATION_KEYWORD_F = 100;
|
|
294
|
+
GraphQLFederationLexer.SUBSCRIPTION_KEYWORD_F = 101;
|
|
295
|
+
GraphQLFederationLexer.SCHEMA_KEYWORD_F = 102;
|
|
296
|
+
GraphQLFederationLexer.FRAGMENT_KEYWORD_F = 103;
|
|
297
|
+
GraphQLFederationLexer.ON_KEYWORD_F = 104;
|
|
298
|
+
GraphQLFederationLexer.COMMA_F = 105;
|
|
299
|
+
GraphQLFederationLexer.FederationMode = 1;
|
|
300
|
+
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
EXTERNAL=1
|
|
2
|
+
INACCESSIBLE=2
|
|
3
|
+
REQUIRES=3
|
|
4
|
+
PROVIDES=4
|
|
5
|
+
KEY=5
|
|
6
|
+
SHAREABLE=6
|
|
7
|
+
OVERRIDE=7
|
|
8
|
+
INPUT_KEYWORD=8
|
|
9
|
+
TYPE_KEYWORD=9
|
|
10
|
+
ENUM_KEYWORD=10
|
|
11
|
+
SCALAR_KEYWORD=11
|
|
12
|
+
INTERFACE_KEYWORD=12
|
|
13
|
+
DIRECTIVE_KEYWORD=13
|
|
14
|
+
EXTEND_KEYWORD=14
|
|
15
|
+
UNION_KEYWORD=15
|
|
16
|
+
IMPLEMENTS_KEYWORD=16
|
|
17
|
+
QUERY_KEYWORD=17
|
|
18
|
+
MUTATION_KEYWORD=18
|
|
19
|
+
SUBSCRIPTION_KEYWORD=19
|
|
20
|
+
SCHEMA_KEYWORD=20
|
|
21
|
+
FRAGMENT_KEYWORD=21
|
|
22
|
+
ON_KEYWORD=22
|
|
23
|
+
INPUT_LOCATION=23
|
|
24
|
+
TYPE_LOCATION=24
|
|
25
|
+
ENUM_LOCATION=25
|
|
26
|
+
SCALAR_LOCATION=26
|
|
27
|
+
INTERFACE_LOCATION=27
|
|
28
|
+
DIRECTIVE_LOCATION=28
|
|
29
|
+
EXTEND_LOCATION=29
|
|
30
|
+
UNION_LOCATION=30
|
|
31
|
+
IMPLEMENTS_LOCATION=31
|
|
32
|
+
QUERY_LOCATION=32
|
|
33
|
+
MUTATION_LOCATION=33
|
|
34
|
+
SUBSCRIPTION_LOCATION=34
|
|
35
|
+
SCHEMA_LOCATION=35
|
|
36
|
+
FRAGMENT_LOCATION=36
|
|
37
|
+
FIELD_LOCATION=37
|
|
38
|
+
FRAGMENT_DEFINITION_LOCATION=38
|
|
39
|
+
FRAGMENT_SPREAD_LOCATION=39
|
|
40
|
+
INLINE_FRAGMENT_LOCATION=40
|
|
41
|
+
OBJECT_LOCATION=41
|
|
42
|
+
FIELD_DEFINITION_LOCATION=42
|
|
43
|
+
ARGUMENT_DEFINITION_LOCATION=43
|
|
44
|
+
ENUM_VALUE_LOCATION=44
|
|
45
|
+
INPUT_OBJECT_LOCATION=45
|
|
46
|
+
INPUT_FIELD_DEFINITION_LOCATION=46
|
|
47
|
+
LBRACE=47
|
|
48
|
+
RBRACE=48
|
|
49
|
+
LBRACKET=49
|
|
50
|
+
RBRACKET=50
|
|
51
|
+
LPAREN=51
|
|
52
|
+
RPAREN=52
|
|
53
|
+
AT=53
|
|
54
|
+
AMP=54
|
|
55
|
+
EQ=55
|
|
56
|
+
COLON=56
|
|
57
|
+
ELLIPSIS=57
|
|
58
|
+
EXCL=58
|
|
59
|
+
VSLASH=59
|
|
60
|
+
DOLLAR=60
|
|
61
|
+
DQUOTE=61
|
|
62
|
+
NAME=62
|
|
63
|
+
TRUE=63
|
|
64
|
+
FALSE=64
|
|
65
|
+
NULL=65
|
|
66
|
+
STRING=66
|
|
67
|
+
BLOCK_STRING=67
|
|
68
|
+
FLOAT=68
|
|
69
|
+
INT=69
|
|
70
|
+
WS=70
|
|
71
|
+
COMMA=71
|
|
72
|
+
LineComment=72
|
|
73
|
+
UNICODE_BOM=73
|
|
74
|
+
UTF8_BOM=74
|
|
75
|
+
UTF16_BOM=75
|
|
76
|
+
UTF32_BOM=76
|
|
77
|
+
FIELDS_KEYWORD=77
|
|
78
|
+
FROM_KEYWORD=78
|
|
79
|
+
RESOLVABLE_KEYWORD=79
|
|
80
|
+
TRUE_F=80
|
|
81
|
+
FALSE_F=81
|
|
82
|
+
WS_F=82
|
|
83
|
+
NAME_F=83
|
|
84
|
+
DQUOTE_F=84
|
|
85
|
+
COLON_F=85
|
|
86
|
+
LBRACE_F=86
|
|
87
|
+
RBRACE_F=87
|
|
88
|
+
LPAREN_F=88
|
|
89
|
+
RPAREN_F=89
|
|
90
|
+
INPUT_KEYWORD_F=90
|
|
91
|
+
TYPE_KEYWORD_F=91
|
|
92
|
+
ENUM_KEYWORD_F=92
|
|
93
|
+
SCALAR_KEYWORD_F=93
|
|
94
|
+
INTERFACE_KEYWORD_F=94
|
|
95
|
+
DIRECTIVE_KEYWORD_F=95
|
|
96
|
+
EXTEND_KEYWORD_F=96
|
|
97
|
+
UNION_KEYWORD_F=97
|
|
98
|
+
IMPLEMENTS_KEYWORD_F=98
|
|
99
|
+
QUERY_KEYWORD_F=99
|
|
100
|
+
MUTATION_KEYWORD_F=100
|
|
101
|
+
SUBSCRIPTION_KEYWORD_F=101
|
|
102
|
+
SCHEMA_KEYWORD_F=102
|
|
103
|
+
FRAGMENT_KEYWORD_F=103
|
|
104
|
+
ON_KEYWORD_F=104
|
|
105
|
+
COMMA_F=105
|
|
106
|
+
'@external'=1
|
|
107
|
+
'@inaccessible'=2
|
|
108
|
+
'@requires'=3
|
|
109
|
+
'@provides'=4
|
|
110
|
+
'@key'=5
|
|
111
|
+
'@shareable'=6
|
|
112
|
+
'@override'=7
|
|
113
|
+
'INPUT'=23
|
|
114
|
+
'TYPE'=24
|
|
115
|
+
'ENUM'=25
|
|
116
|
+
'SCALAR'=26
|
|
117
|
+
'INTERFACE'=27
|
|
118
|
+
'DIRECTIVE'=28
|
|
119
|
+
'EXTEND'=29
|
|
120
|
+
'UNION'=30
|
|
121
|
+
'IMPLEMENTS'=31
|
|
122
|
+
'QUERY'=32
|
|
123
|
+
'MUTATION'=33
|
|
124
|
+
'SUBSCRIPTION'=34
|
|
125
|
+
'SCHEMA'=35
|
|
126
|
+
'FRAGMENT'=36
|
|
127
|
+
'FIELD'=37
|
|
128
|
+
'FRAGMENT_DEFINITION'=38
|
|
129
|
+
'FRAGMENT_SPREAD'=39
|
|
130
|
+
'INLINE_FRAGMENT'=40
|
|
131
|
+
'OBJECT'=41
|
|
132
|
+
'FIELD_DEFINITION'=42
|
|
133
|
+
'ARGUMENT_DEFINITION'=43
|
|
134
|
+
'ENUM_VALUE'=44
|
|
135
|
+
'INPUT_OBJECT'=45
|
|
136
|
+
'INPUT_FIELD_DEFINITION'=46
|
|
137
|
+
'['=49
|
|
138
|
+
']'=50
|
|
139
|
+
'@'=53
|
|
140
|
+
'&'=54
|
|
141
|
+
'='=55
|
|
142
|
+
'...'=57
|
|
143
|
+
'!'=58
|
|
144
|
+
'|'=59
|
|
145
|
+
'$'=60
|
|
146
|
+
'null'=65
|
|
147
|
+
'\uEFBBBF'=74
|
|
148
|
+
'\uFEFF'=75
|
|
149
|
+
'\u0000FEFF'=76
|
|
150
|
+
'fields'=77
|
|
151
|
+
'from'=78
|
|
152
|
+
'resolvable'=79
|