@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.
Files changed (32) hide show
  1. package/index.js +9 -0
  2. package/lib/internal/graphql/GraphQL.interp +223 -0
  3. package/lib/internal/graphql/GraphQL.tokens +130 -0
  4. package/lib/internal/graphql/GraphQLLexer.interp +239 -0
  5. package/lib/internal/graphql/GraphQLLexer.js +264 -0
  6. package/lib/internal/graphql/GraphQLLexer.tokens +130 -0
  7. package/lib/internal/graphql/GraphQLListener.js +727 -0
  8. package/lib/internal/graphql/GraphQLParser.js +8018 -0
  9. package/lib/internal/graphqlcb.js +90 -0
  10. package/lib/internal/graphqlcb.m.js +34 -0
  11. package/lib/internal/graphqlfederation/GraphQLFederation.interp +253 -0
  12. package/lib/internal/graphqlfederation/GraphQLFederation.tokens +148 -0
  13. package/lib/internal/graphqlfederation/GraphQLFederationLexer.interp +344 -0
  14. package/lib/internal/graphqlfederation/GraphQLFederationLexer.js +300 -0
  15. package/lib/internal/graphqlfederation/GraphQLFederationLexer.tokens +152 -0
  16. package/lib/internal/graphqlfederation/GraphQLFederationListener.js +823 -0
  17. package/lib/internal/graphqlfederation/GraphQLFederationParser.interp +324 -0
  18. package/lib/internal/graphqlfederation/GraphQLFederationParser.js +12033 -0
  19. package/lib/internal/graphqlfederation/GraphQLFederationParser.tokens +152 -0
  20. package/lib/internal/graphqlfederation/GraphQLFederationParserListener.js +975 -0
  21. package/lib/internal/graphqlfederationcb.js +90 -0
  22. package/lib/internal/graphqlfederationcb.m.js +35 -0
  23. package/lib/internal/proto3/Protobuf3.interp +200 -0
  24. package/lib/internal/proto3/Protobuf3.tokens +128 -0
  25. package/lib/internal/proto3/Protobuf3Lexer.interp +234 -0
  26. package/lib/internal/proto3/Protobuf3Lexer.js +262 -0
  27. package/lib/internal/proto3/Protobuf3Lexer.tokens +128 -0
  28. package/lib/internal/proto3/Protobuf3Listener.js +575 -0
  29. package/lib/internal/proto3/Protobuf3Parser.js +6767 -0
  30. package/lib/internal/protobuf3cb.js +90 -0
  31. package/lib/internal/protobuf3cb.m.js +34 -0
  32. package/package.json +23 -0
@@ -0,0 +1,264 @@
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\x02H\u02E5\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/\x040\t0\x04", "1\t1\x042\t2\x043\t3\x044\t4\x045\t5\x046\t6\x047\t7\x04", "8\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\x04E\tE\x04", "F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04L\tL\x04", "M\tM\x04N\tN\x04O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04S\tS\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\x04\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", "\x06\x03\x06\x03\x07\x03\x07\x03\b\x03\b\x03\t\x03", "\t\x03\n\x03\n\x03\n\x03\n\x03\x0B\x03\x0B\x03\x0B", "\x03\x0B\x03\x0B\x03\x0B\x03\x0B\x03\x0B\x03\x0B", "\x03\f\x03\f\x03\f\x03\r\x03\r\x03\r\x03\r\x03\r\x03", "\x0E\x03\x0E\x03\x0E\x03\x0E\x03\x0E\x03\x0E\x03", "\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x10\x03", "\x10\x03\x11\x03\x11\x03\x12\x03\x12\x03\x13\x03", "\x13\x03\x14\x03\x14\x03\x15\x03\x15\x03\x16\x03", "\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03", "\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03", "\x17\x03\x18\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", "\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\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", "\x1E\x03\x1E\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", "/\x030\x030\x030\x030\x030\x031\x031\x031\x031\x03", "1\x031\x031\x031\x031\x031\x031\x032\x032\x032\x03", "2\x032\x032\x032\x032\x032\x032\x032\x032\x032\x03", "3\x033\x033\x033\x033\x033\x033\x033\x033\x033\x03", "3\x033\x033\x033\x033\x033\x033\x033\x033\x033\x03", "3\x033\x033\x034\x034\x034\x034\x034\x034\x035\x03", "5\x035\x035\x035\x036\x036\x036\x036\x036\x036\x03", "6\x036\x036\x036\x037\x037\x037\x037\x037\x037\x03", "7\x038\x038\x038\x038\x038\x038\x038\x038\x038\x03", "8\x038\x039\x039\x039\x039\x039\x039\x039\x039\x03", "9\x03:\x03:\x07:\u024E\n:\f:\x0E:\u0251\x0B:\x03;\x03", ";\x05;\u0255\n;\x03<\x03<\x07<\u0259\n<\f<\x0E<\u025C\x0B", "<\x03<\x03<\x03=\x03=\x03=\x03=\x03=\x07=\u0265\n=\f", "=\x0E=\u0268\x0B=\x03=\x03=\x03=\x03=\x03>\x03>\x03", "?\x03?\x03?\x05?\u0273\n?\x03@\x03@\x03@\x03@\x03@\x03", "@\x03A\x03A\x03B\x03B\x03C\x03C\x03D\x03D\x06D\u0283", "\nD\rD\x0ED\u0284\x03E\x03E\x05E\u0289\nE\x03E\x06E\u028C", "\nE\rE\x0EE\u028D\x03F\x03F\x03G\x03G\x03H\x03H\x03", "I\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x05", "I\u02A0\nI\x03J\x05J\u02A3\nJ\x03J\x03J\x05J\u02A7\nJ\x03", "J\x03J\x07J\u02AB\nJ\fJ\x0EJ\u02AE\x0BJ\x05J\u02B0\nJ\x03", "K\x03K\x03K\x03K\x03K\x05K\u02B7\nK\x03L\x03L\x05L\u02BB", "\nL\x03L\x03L\x03M\x06M\u02C0\nM\rM\x0EM\u02C1\x03M\x03", "M\x03N\x03N\x03N\x03N\x03O\x03O\x07O\u02CC\nO\fO\x0E", "O\u02CF\x0BO\x03O\x03O\x03P\x03P\x03P\x05P\u02D6\nP\x03", "P\x03P\x03Q\x03Q\x03Q\x03Q\x03R\x03R\x03S\x03S\x03", "S\x03S\x03S\x03S\x03\u0266\x02T\x03\x03\x05\x04\x07", "\x05\t\x06\x0B\x07\r\b\x0F\t\x11\n\x13\x0B\x15\f\x17", "\r\x19\x0E\x1B\x0F\x1D\x10\x1F\x11!\x12#\x13%\x14", "'\x15)\x16+\x17-\x18/\x191\x1A3\x1B5\x1C7\x1D9\x1E", ";\x1F= ?!A\"C#E$G%I&K'M(O)Q*S+U,W-Y.[/]0_1a2c3e4g5i6k7m8o9q:s;u\x02", "w<y={>}\x02\x7F\x02\x81\x02\x83\x02\x85\x02\x87", "\x02\x89\x02\x8B\x02\x8D\x02\x8F\x02\x91?\x93", "@\x95A\x97\x02\x99B\x9BC\x9DD\x9FE\xA1F\xA3G\xA5", "H\x03\x02\x0F\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##&&*+\b\x02<<??BB]", "]__}\x7F\x05\x02\x0B\f\x0F\x0F\"\"\x04\x02\f\f\x0F", "\x0F\x02\u02ED\x02\x03\x03\x02\x02\x02\x02\x05\x03", "\x02\x02\x02\x02\x07\x03\x02\x02\x02\x02\t\x03", "\x02\x02\x02\x02\x0B\x03\x02\x02\x02\x02\r\x03", "\x02\x02\x02\x02\x0F\x03\x02\x02\x02\x02\x11\x03", "\x02\x02\x02\x02\x13\x03\x02\x02\x02\x02\x15\x03", "\x02\x02\x02\x02\x17\x03\x02\x02\x02\x02\x19\x03", "\x02\x02\x02\x02\x1B\x03\x02\x02\x02\x02\x1D\x03", "\x02\x02\x02\x02\x1F\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\x021\x03\x02\x02\x02\x02", "3\x03\x02\x02\x02\x025\x03\x02\x02\x02\x027\x03", "\x02\x02\x02\x029\x03\x02\x02\x02\x02;\x03\x02", "\x02\x02\x02=\x03\x02\x02\x02\x02?\x03\x02\x02", "\x02\x02A\x03\x02\x02\x02\x02C\x03\x02\x02\x02", "\x02E\x03\x02\x02\x02\x02G\x03\x02\x02\x02\x02", "I\x03\x02\x02\x02\x02K\x03\x02\x02\x02\x02M\x03", "\x02\x02\x02\x02O\x03\x02\x02\x02\x02Q\x03\x02", "\x02\x02\x02S\x03\x02\x02\x02\x02U\x03\x02\x02", "\x02\x02W\x03\x02\x02\x02\x02Y\x03\x02\x02\x02", "\x02[\x03\x02\x02\x02\x02]\x03\x02\x02\x02\x02", "_\x03\x02\x02\x02\x02a\x03\x02\x02\x02\x02c\x03", "\x02\x02\x02\x02e\x03\x02\x02\x02\x02g\x03\x02", "\x02\x02\x02i\x03\x02\x02\x02\x02k\x03\x02\x02", "\x02\x02m\x03\x02\x02\x02\x02o\x03\x02\x02\x02", "\x02q\x03\x02\x02\x02\x02s\x03\x02\x02\x02\x02", "w\x03\x02\x02\x02\x02y\x03\x02\x02\x02\x02{\x03", "\x02\x02\x02\x02\x91\x03\x02\x02\x02\x02\x93\x03", "\x02\x02\x02\x02\x95\x03\x02\x02\x02\x02\x99\x03", "\x02\x02\x02\x02\x9B\x03\x02\x02\x02\x02\x9D\x03", "\x02\x02\x02\x02\x9F\x03\x02\x02\x02\x02\xA1\x03", "\x02\x02\x02\x02\xA3\x03\x02\x02\x02\x02\xA5\x03", "\x02\x02\x02\x03\xA7\x03\x02\x02\x02\x05\xAD\x03", "\x02\x02\x02\x07\xB6\x03\x02\x02\x02\t\xC3\x03", "\x02\x02\x02\x0B\xC5\x03\x02\x02\x02\r\xC7\x03", "\x02\x02\x02\x0F\xC9\x03\x02\x02\x02\x11\xCB\x03", "\x02\x02\x02\x13\xCD\x03\x02\x02\x02\x15\xD1\x03", "\x02\x02\x02\x17\xDA\x03\x02\x02\x02\x19\xDD\x03", "\x02\x02\x02\x1B\xE2\x03\x02\x02\x02\x1D\xE8\x03", "\x02\x02\x02\x1F\xED\x03\x02\x02\x02!\xEF\x03", "\x02\x02\x02#\xF1\x03\x02\x02\x02%\xF3\x03\x02", "\x02\x02'\xF5\x03\x02\x02\x02)\xF7\x03\x02\x02", "\x02+\xF9\x03\x02\x02\x02-\u0100\x03\x02\x02\x02", "/\u0107\x03\x02\x02\x021\u010E\x03\x02\x02\x023\u0113", "\x03\x02\x02\x025\u011E\x03\x02\x02\x027\u0120\x03", "\x02\x02\x029\u012A\x03\x02\x02\x02;\u0130\x03\x02", "\x02\x02=\u0132\x03\x02\x02\x02?\u0137\x03\x02\x02", "\x02A\u013D\x03\x02\x02\x02C\u0147\x03\x02\x02\x02", "E\u014D\x03\x02\x02\x02G\u0156\x03\x02\x02\x02I\u0163", "\x03\x02\x02\x02K\u0169\x03\x02\x02\x02M\u017D\x03", "\x02\x02\x02O\u018D\x03\x02\x02\x02Q\u019D\x03\x02", "\x02\x02S\u01A4\x03\x02\x02\x02U\u01AB\x03\x02\x02", "\x02W\u01B2\x03\x02\x02\x02Y\u01C3\x03\x02\x02\x02", "[\u01D7\x03\x02\x02\x02]\u01E1\x03\x02\x02\x02_\u01E7", "\x03\x02\x02\x02a\u01EC\x03\x02\x02\x02c\u01F7\x03", "\x02\x02\x02e\u0204\x03\x02\x02\x02g\u021B\x03\x02", "\x02\x02i\u0221\x03\x02\x02\x02k\u0226\x03\x02\x02", "\x02m\u0230\x03\x02\x02\x02o\u0237\x03\x02\x02\x02", "q\u0242\x03\x02\x02\x02s\u024B\x03\x02\x02\x02u\u0254", "\x03\x02\x02\x02w\u0256\x03\x02\x02\x02y\u025F\x03", "\x02\x02\x02{\u026D\x03\x02\x02\x02}\u026F\x03\x02", "\x02\x02\x7F\u0274\x03\x02\x02\x02\x81\u027A\x03\x02", "\x02\x02\x83\u027C\x03\x02\x02\x02\x85\u027E\x03\x02", "\x02\x02\x87\u0280\x03\x02\x02\x02\x89\u0286\x03\x02", "\x02\x02\x8B\u028F\x03\x02\x02\x02\x8D\u0291\x03\x02", "\x02\x02\x8F\u0293\x03\x02\x02\x02\x91\u029F\x03\x02", "\x02\x02\x93\u02AF\x03\x02\x02\x02\x95\u02B6\x03\x02", "\x02\x02\x97\u02B8\x03\x02\x02\x02\x99\u02BF\x03\x02", "\x02\x02\x9B\u02C5\x03\x02\x02\x02\x9D\u02C9\x03\x02", "\x02\x02\x9F\u02D5\x03\x02\x02\x02\xA1\u02D9\x03\x02", "\x02\x02\xA3\u02DD\x03\x02\x02\x02\xA5\u02DF\x03\x02", "\x02\x02\xA7\xA8\x07s\x02\x02\xA8\xA9\x07w\x02", "\x02\xA9\xAA\x07g\x02\x02\xAA\xAB\x07t\x02\x02", "\xAB\xAC\x07{\x02\x02\xAC\x04\x03\x02\x02\x02", "\xAD\xAE\x07o\x02\x02\xAE\xAF\x07w\x02\x02\xAF", "\xB0\x07v\x02\x02\xB0\xB1\x07c\x02\x02\xB1\xB2", "\x07v\x02\x02\xB2\xB3\x07k\x02\x02\xB3\xB4\x07", "q\x02\x02\xB4\xB5\x07p\x02\x02\xB5\x06\x03\x02", "\x02\x02\xB6\xB7\x07u\x02\x02\xB7\xB8\x07w\x02", "\x02\xB8\xB9\x07d\x02\x02\xB9\xBA\x07u\x02\x02", "\xBA\xBB\x07e\x02\x02\xBB\xBC\x07t\x02\x02\xBC", "\xBD\x07k\x02\x02\xBD\xBE\x07r\x02\x02\xBE\xBF", "\x07v\x02\x02\xBF\xC0\x07k\x02\x02\xC0\xC1\x07", "q\x02\x02\xC1\xC2\x07p\x02\x02\xC2\b\x03\x02\x02", "\x02\xC3\xC4\x07}\x02\x02\xC4\n\x03\x02\x02\x02", "\xC5\xC6\x07\x7F\x02\x02\xC6\f\x03\x02\x02\x02", "\xC7\xC8\x07*\x02\x02\xC8\x0E\x03\x02\x02\x02", "\xC9\xCA\x07+\x02\x02\xCA\x10\x03\x02\x02\x02", "\xCB\xCC\x07<\x02\x02\xCC\x12\x03\x02\x02\x02", "\xCD\xCE\x070\x02\x02\xCE\xCF\x070\x02\x02\xCF", "\xD0\x070\x02\x02\xD0\x14\x03\x02\x02\x02\xD1", "\xD2\x07h\x02\x02\xD2\xD3\x07t\x02\x02\xD3\xD4", "\x07c\x02\x02\xD4\xD5\x07i\x02\x02\xD5\xD6\x07", "o\x02\x02\xD6\xD7\x07g\x02\x02\xD7\xD8\x07p\x02", "\x02\xD8\xD9\x07v\x02\x02\xD9\x16\x03\x02\x02", "\x02\xDA\xDB\x07q\x02\x02\xDB\xDC\x07p\x02\x02", "\xDC\x18\x03\x02\x02\x02\xDD\xDE\x07v\x02\x02", "\xDE\xDF\x07t\x02\x02\xDF\xE0\x07w\x02\x02\xE0", "\xE1\x07g\x02\x02\xE1\x1A\x03\x02\x02\x02\xE2", "\xE3\x07h\x02\x02\xE3\xE4\x07c\x02\x02\xE4\xE5", "\x07n\x02\x02\xE5\xE6\x07u\x02\x02\xE6\xE7\x07", "g\x02\x02\xE7\x1C\x03\x02\x02\x02\xE8\xE9\x07", "p\x02\x02\xE9\xEA\x07w\x02\x02\xEA\xEB\x07n\x02", "\x02\xEB\xEC\x07n\x02\x02\xEC\x1E\x03\x02\x02", "\x02\xED\xEE\x07]\x02\x02\xEE \x03\x02\x02\x02", "\xEF\xF0\x07_\x02\x02\xF0\"\x03\x02\x02\x02\xF1", "\xF2\x07&\x02\x02\xF2$\x03\x02\x02\x02\xF3\xF4", "\x07?\x02\x02\xF4&\x03\x02\x02\x02\xF5\xF6\x07", "#\x02\x02\xF6(\x03\x02\x02\x02\xF7\xF8\x07B\x02", "\x02\xF8*\x03\x02\x02\x02\xF9\xFA\x07u\x02\x02", "\xFA\xFB\x07e\x02\x02\xFB\xFC\x07j\x02\x02\xFC", "\xFD\x07g\x02\x02\xFD\xFE\x07o\x02\x02\xFE\xFF", "\x07c\x02\x02\xFF,\x03\x02\x02\x02\u0100\u0101\x07", "g\x02\x02\u0101\u0102\x07z\x02\x02\u0102\u0103\x07v\x02", "\x02\u0103\u0104\x07g\x02\x02\u0104\u0105\x07p\x02\x02", "\u0105\u0106\x07f\x02\x02\u0106.\x03\x02\x02\x02\u0107", "\u0108\x07u\x02\x02\u0108\u0109\x07e\x02\x02\u0109\u010A", "\x07c\x02\x02\u010A\u010B\x07n\x02\x02\u010B\u010C\x07", "c\x02\x02\u010C\u010D\x07t\x02\x02\u010D0\x03\x02\x02", "\x02\u010E\u010F\x07v\x02\x02\u010F\u0110\x07{\x02\x02", "\u0110\u0111\x07r\x02\x02\u0111\u0112\x07g\x02\x02\u0112", "2\x03\x02\x02\x02\u0113\u0114\x07k\x02\x02\u0114\u0115", "\x07o\x02\x02\u0115\u0116\x07r\x02\x02\u0116\u0117\x07", "n\x02\x02\u0117\u0118\x07g\x02\x02\u0118\u0119\x07o\x02", "\x02\u0119\u011A\x07g\x02\x02\u011A\u011B\x07p\x02\x02", "\u011B\u011C\x07v\x02\x02\u011C\u011D\x07u\x02\x02\u011D", "4\x03\x02\x02\x02\u011E\u011F\x07(\x02\x02\u011F6\x03", "\x02\x02\x02\u0120\u0121\x07k\x02\x02\u0121\u0122\x07", "p\x02\x02\u0122\u0123\x07v\x02\x02\u0123\u0124\x07g\x02", "\x02\u0124\u0125\x07t\x02\x02\u0125\u0126\x07h\x02\x02", "\u0126\u0127\x07c\x02\x02\u0127\u0128\x07e\x02\x02\u0128", "\u0129\x07g\x02\x02\u01298\x03\x02\x02\x02\u012A\u012B", "\x07w\x02\x02\u012B\u012C\x07p\x02\x02\u012C\u012D\x07", "k\x02\x02\u012D\u012E\x07q\x02\x02\u012E\u012F\x07p\x02", "\x02\u012F:\x03\x02\x02\x02\u0130\u0131\x07~\x02\x02", "\u0131<\x03\x02\x02\x02\u0132\u0133\x07g\x02\x02\u0133", "\u0134\x07p\x02\x02\u0134\u0135\x07w\x02\x02\u0135\u0136", "\x07o\x02\x02\u0136>\x03\x02\x02\x02\u0137\u0138\x07", "k\x02\x02\u0138\u0139\x07p\x02\x02\u0139\u013A\x07r\x02", "\x02\u013A\u013B\x07w\x02\x02\u013B\u013C\x07v\x02\x02", "\u013C@\x03\x02\x02\x02\u013D\u013E\x07f\x02\x02\u013E", "\u013F\x07k\x02\x02\u013F\u0140\x07t\x02\x02\u0140\u0141", "\x07g\x02\x02\u0141\u0142\x07e\x02\x02\u0142\u0143\x07", "v\x02\x02\u0143\u0144\x07k\x02\x02\u0144\u0145\x07x\x02", "\x02\u0145\u0146\x07g\x02\x02\u0146B\x03\x02\x02\x02", "\u0147\u0148\x07S\x02\x02\u0148\u0149\x07W\x02\x02\u0149", "\u014A\x07G\x02\x02\u014A\u014B\x07T\x02\x02\u014B\u014C", "\x07[\x02\x02\u014CD\x03\x02\x02\x02\u014D\u014E\x07", "O\x02\x02\u014E\u014F\x07W\x02\x02\u014F\u0150\x07V\x02", "\x02\u0150\u0151\x07C\x02\x02\u0151\u0152\x07V\x02\x02", "\u0152\u0153\x07K\x02\x02\u0153\u0154\x07Q\x02\x02\u0154", "\u0155\x07P\x02\x02\u0155F\x03\x02\x02\x02\u0156\u0157", "\x07U\x02\x02\u0157\u0158\x07W\x02\x02\u0158\u0159\x07", "D\x02\x02\u0159\u015A\x07U\x02\x02\u015A\u015B\x07E\x02", "\x02\u015B\u015C\x07T\x02\x02\u015C\u015D\x07K\x02\x02", "\u015D\u015E\x07R\x02\x02\u015E\u015F\x07V\x02\x02\u015F", "\u0160\x07K\x02\x02\u0160\u0161\x07Q\x02\x02\u0161\u0162", "\x07P\x02\x02\u0162H\x03\x02\x02\x02\u0163\u0164\x07", "H\x02\x02\u0164\u0165\x07K\x02\x02\u0165\u0166\x07G\x02", "\x02\u0166\u0167\x07N\x02\x02\u0167\u0168\x07F\x02\x02", "\u0168J\x03\x02\x02\x02\u0169\u016A\x07H\x02\x02\u016A", "\u016B\x07T\x02\x02\u016B\u016C\x07C\x02\x02\u016C\u016D", "\x07I\x02\x02\u016D\u016E\x07O\x02\x02\u016E\u016F\x07", "G\x02\x02\u016F\u0170\x07P\x02\x02\u0170\u0171\x07V\x02", "\x02\u0171\u0172\x07a\x02\x02\u0172\u0173\x07F\x02\x02", "\u0173\u0174\x07G\x02\x02\u0174\u0175\x07H\x02\x02\u0175", "\u0176\x07K\x02\x02\u0176\u0177\x07P\x02\x02\u0177\u0178", "\x07K\x02\x02\u0178\u0179\x07V\x02\x02\u0179\u017A\x07", "K\x02\x02\u017A\u017B\x07Q\x02\x02\u017B\u017C\x07P\x02", "\x02\u017CL\x03\x02\x02\x02\u017D\u017E\x07H\x02\x02", "\u017E\u017F\x07T\x02\x02\u017F\u0180\x07C\x02\x02\u0180", "\u0181\x07I\x02\x02\u0181\u0182\x07O\x02\x02\u0182\u0183", "\x07G\x02\x02\u0183\u0184\x07P\x02\x02\u0184\u0185\x07", "V\x02\x02\u0185\u0186\x07a\x02\x02\u0186\u0187\x07U\x02", "\x02\u0187\u0188\x07R\x02\x02\u0188\u0189\x07T\x02\x02", "\u0189\u018A\x07G\x02\x02\u018A\u018B\x07C\x02\x02\u018B", "\u018C\x07F\x02\x02\u018CN\x03\x02\x02\x02\u018D\u018E", "\x07K\x02\x02\u018E\u018F\x07P\x02\x02\u018F\u0190\x07", "N\x02\x02\u0190\u0191\x07K\x02\x02\u0191\u0192\x07P\x02", "\x02\u0192\u0193\x07G\x02\x02\u0193\u0194\x07a\x02\x02", "\u0194\u0195\x07H\x02\x02\u0195\u0196\x07T\x02\x02\u0196", "\u0197\x07C\x02\x02\u0197\u0198\x07I\x02\x02\u0198\u0199", "\x07O\x02\x02\u0199\u019A\x07G\x02\x02\u019A\u019B\x07", "P\x02\x02\u019B\u019C\x07V\x02\x02\u019CP\x03\x02\x02", "\x02\u019D\u019E\x07U\x02\x02\u019E\u019F\x07E\x02\x02", "\u019F\u01A0\x07J\x02\x02\u01A0\u01A1\x07G\x02\x02\u01A1", "\u01A2\x07O\x02\x02\u01A2\u01A3\x07C\x02\x02\u01A3R\x03", "\x02\x02\x02\u01A4\u01A5\x07U\x02\x02\u01A5\u01A6\x07", "E\x02\x02\u01A6\u01A7\x07C\x02\x02\u01A7\u01A8\x07N\x02", "\x02\u01A8\u01A9\x07C\x02\x02\u01A9\u01AA\x07T\x02\x02", "\u01AAT\x03\x02\x02\x02\u01AB\u01AC\x07Q\x02\x02\u01AC", "\u01AD\x07D\x02\x02\u01AD\u01AE\x07L\x02\x02\u01AE\u01AF", "\x07G\x02\x02\u01AF\u01B0\x07E\x02\x02\u01B0\u01B1\x07", "V\x02\x02\u01B1V\x03\x02\x02\x02\u01B2\u01B3\x07H\x02", "\x02\u01B3\u01B4\x07K\x02\x02\u01B4\u01B5\x07G\x02\x02", "\u01B5\u01B6\x07N\x02\x02\u01B6\u01B7\x07F\x02\x02\u01B7", "\u01B8\x07a\x02\x02\u01B8\u01B9\x07F\x02\x02\u01B9\u01BA", "\x07G\x02\x02\u01BA\u01BB\x07H\x02\x02\u01BB\u01BC\x07", "K\x02\x02\u01BC\u01BD\x07P\x02\x02\u01BD\u01BE\x07K\x02", "\x02\u01BE\u01BF\x07V\x02\x02\u01BF\u01C0\x07K\x02\x02", "\u01C0\u01C1\x07Q\x02\x02\u01C1\u01C2\x07P\x02\x02\u01C2", "X\x03\x02\x02\x02\u01C3\u01C4\x07C\x02\x02\u01C4\u01C5", "\x07T\x02\x02\u01C5\u01C6\x07I\x02\x02\u01C6\u01C7\x07", "W\x02\x02\u01C7\u01C8\x07O\x02\x02\u01C8\u01C9\x07G\x02", "\x02\u01C9\u01CA\x07P\x02\x02\u01CA\u01CB\x07V\x02\x02", "\u01CB\u01CC\x07a\x02\x02\u01CC\u01CD\x07F\x02\x02\u01CD", "\u01CE\x07G\x02\x02\u01CE\u01CF\x07H\x02\x02\u01CF\u01D0", "\x07K\x02\x02\u01D0\u01D1\x07P\x02\x02\u01D1\u01D2\x07", "K\x02\x02\u01D2\u01D3\x07V\x02\x02\u01D3\u01D4\x07K\x02", "\x02\u01D4\u01D5\x07Q\x02\x02\u01D5\u01D6\x07P\x02\x02", "\u01D6Z\x03\x02\x02\x02\u01D7\u01D8\x07K\x02\x02\u01D8", "\u01D9\x07P\x02\x02\u01D9\u01DA\x07V\x02\x02\u01DA\u01DB", "\x07G\x02\x02\u01DB\u01DC\x07T\x02\x02\u01DC\u01DD\x07", "H\x02\x02\u01DD\u01DE\x07C\x02\x02\u01DE\u01DF\x07E\x02", "\x02\u01DF\u01E0\x07G\x02\x02\u01E0\\\x03\x02\x02\x02", "\u01E1\u01E2\x07W\x02\x02\u01E2\u01E3\x07P\x02\x02\u01E3", "\u01E4\x07K\x02\x02\u01E4\u01E5\x07Q\x02\x02\u01E5\u01E6", "\x07P\x02\x02\u01E6^\x03\x02\x02\x02\u01E7\u01E8\x07", "G\x02\x02\u01E8\u01E9\x07P\x02\x02\u01E9\u01EA\x07W\x02", "\x02\u01EA\u01EB\x07O\x02\x02\u01EB`\x03\x02\x02\x02", "\u01EC\u01ED\x07G\x02\x02\u01ED\u01EE\x07P\x02\x02\u01EE", "\u01EF\x07W\x02\x02\u01EF\u01F0\x07O\x02\x02\u01F0\u01F1", "\x07a\x02\x02\u01F1\u01F2\x07X\x02\x02\u01F2\u01F3\x07", "C\x02\x02\u01F3\u01F4\x07N\x02\x02\u01F4\u01F5\x07W\x02", "\x02\u01F5\u01F6\x07G\x02\x02\u01F6b\x03\x02\x02\x02", "\u01F7\u01F8\x07K\x02\x02\u01F8\u01F9\x07P\x02\x02\u01F9", "\u01FA\x07R\x02\x02\u01FA\u01FB\x07W\x02\x02\u01FB\u01FC", "\x07V\x02\x02\u01FC\u01FD\x07a\x02\x02\u01FD\u01FE\x07", "Q\x02\x02\u01FE\u01FF\x07D\x02\x02\u01FF\u0200\x07L\x02", "\x02\u0200\u0201\x07G\x02\x02\u0201\u0202\x07E\x02\x02", "\u0202\u0203\x07V\x02\x02\u0203d\x03\x02\x02\x02\u0204", "\u0205\x07K\x02\x02\u0205\u0206\x07P\x02\x02\u0206\u0207", "\x07R\x02\x02\u0207\u0208\x07W\x02\x02\u0208\u0209\x07", "V\x02\x02\u0209\u020A\x07a\x02\x02\u020A\u020B\x07H\x02", "\x02\u020B\u020C\x07K\x02\x02\u020C\u020D\x07G\x02\x02", "\u020D\u020E\x07N\x02\x02\u020E\u020F\x07F\x02\x02\u020F", "\u0210\x07a\x02\x02\u0210\u0211\x07F\x02\x02\u0211\u0212", "\x07G\x02\x02\u0212\u0213\x07H\x02\x02\u0213\u0214\x07", "K\x02\x02\u0214\u0215\x07P\x02\x02\u0215\u0216\x07K\x02", "\x02\u0216\u0217\x07V\x02\x02\u0217\u0218\x07K\x02\x02", "\u0218\u0219\x07Q\x02\x02\u0219\u021A\x07P\x02\x02\u021A", "f\x03\x02\x02\x02\u021B\u021C\x07K\x02\x02\u021C\u021D", "\x07P\x02\x02\u021D\u021E\x07R\x02\x02\u021E\u021F\x07", "W\x02\x02\u021F\u0220\x07V\x02\x02\u0220h\x03\x02\x02", "\x02\u0221\u0222\x07V\x02\x02\u0222\u0223\x07[\x02\x02", "\u0223\u0224\x07R\x02\x02\u0224\u0225\x07G\x02\x02\u0225", "j\x03\x02\x02\x02\u0226\u0227\x07F\x02\x02\u0227\u0228", "\x07K\x02\x02\u0228\u0229\x07T\x02\x02\u0229\u022A\x07", "G\x02\x02\u022A\u022B\x07E\x02\x02\u022B\u022C\x07V\x02", "\x02\u022C\u022D\x07K\x02\x02\u022D\u022E\x07X\x02\x02", "\u022E\u022F\x07G\x02\x02\u022Fl\x03\x02\x02\x02\u0230", "\u0231\x07G\x02\x02\u0231\u0232\x07Z\x02\x02\u0232\u0233", "\x07V\x02\x02\u0233\u0234\x07G\x02\x02\u0234\u0235\x07", "P\x02\x02\u0235\u0236\x07F\x02\x02\u0236n\x03\x02\x02", "\x02\u0237\u0238\x07K\x02\x02\u0238\u0239\x07O\x02\x02", "\u0239\u023A\x07R\x02\x02\u023A\u023B\x07N\x02\x02\u023B", "\u023C\x07G\x02\x02\u023C\u023D\x07O\x02\x02\u023D\u023E", "\x07G\x02\x02\u023E\u023F\x07P\x02\x02\u023F\u0240\x07", "V\x02\x02\u0240\u0241\x07U\x02\x02\u0241p\x03\x02\x02", "\x02\u0242\u0243\x07H\x02\x02\u0243\u0244\x07T\x02\x02", "\u0244\u0245\x07C\x02\x02\u0245\u0246\x07I\x02\x02\u0246", "\u0247\x07O\x02\x02\u0247\u0248\x07G\x02\x02\u0248\u0249", "\x07P\x02\x02\u0249\u024A\x07V\x02\x02\u024Ar\x03\x02", "\x02\x02\u024B\u024F\t\x02\x02\x02\u024C\u024E\t\x03\x02", "\x02\u024D\u024C\x03\x02\x02\x02\u024E\u0251\x03\x02\x02", "\x02\u024F\u024D\x03\x02\x02\x02\u024F\u0250\x03\x02\x02", "\x02\u0250t\x03\x02\x02\x02\u0251\u024F\x03\x02\x02", "\x02\u0252\u0255\x05}?\x02\u0253\u0255\n\x04\x02\x02\u0254", "\u0252\x03\x02\x02\x02\u0254\u0253\x03\x02\x02\x02\u0255", "v\x03\x02\x02\x02\u0256\u025A\x07$\x02\x02\u0257\u0259", "\x05u;\x02\u0258\u0257\x03\x02\x02\x02\u0259\u025C\x03", "\x02\x02\x02\u025A\u0258\x03\x02\x02\x02\u025A\u025B\x03", "\x02\x02\x02\u025B\u025D\x03\x02\x02\x02\u025C\u025A\x03", "\x02\x02\x02\u025D\u025E\x07$\x02\x02\u025Ex\x03\x02", "\x02\x02\u025F\u0260\x07$\x02\x02\u0260\u0261\x07$\x02", "\x02\u0261\u0262\x07$\x02\x02\u0262\u0266\x03\x02\x02", "\x02\u0263\u0265\x0B\x02\x02\x02\u0264\u0263\x03\x02\x02", "\x02\u0265\u0268\x03\x02\x02\x02\u0266\u0267\x03\x02\x02", "\x02\u0266\u0264\x03\x02\x02\x02\u0267\u0269\x03\x02\x02", "\x02\u0268\u0266\x03\x02\x02\x02\u0269\u026A\x07$\x02", "\x02\u026A\u026B\x07$\x02\x02\u026B\u026C\x07$\x02\x02", "\u026Cz\x03\x02\x02\x02\u026D\u026E\x05w<\x02\u026E|\x03", "\x02\x02\x02\u026F\u0272\x07^\x02\x02\u0270\u0273\t\x05", "\x02\x02\u0271\u0273\x05\x7F@\x02\u0272\u0270\x03\x02", "\x02\x02\u0272\u0271\x03\x02\x02\x02\u0273~\x03\x02", "\x02\x02\u0274\u0275\x07w\x02\x02\u0275\u0276\x05\x81", "A\x02\u0276\u0277\x05\x81A\x02\u0277\u0278\x05\x81A\x02", "\u0278\u0279\x05\x81A\x02\u0279\x80\x03\x02\x02\x02", "\u027A\u027B\t\x06\x02\x02\u027B\x82\x03\x02\x02\x02", "\u027C\u027D\t\x07\x02\x02\u027D\x84\x03\x02\x02\x02", "\u027E\u027F\t\b\x02\x02\u027F\x86\x03\x02\x02\x02\u0280", "\u0282\x070\x02\x02\u0281\u0283\x05\x85C\x02\u0282\u0281", "\x03\x02\x02\x02\u0283\u0284\x03\x02\x02\x02\u0284\u0282", "\x03\x02\x02\x02\u0284\u0285\x03\x02\x02\x02\u0285\x88", "\x03\x02\x02\x02\u0286\u0288\x05\x8BF\x02\u0287\u0289", "\x05\x8DG\x02\u0288\u0287\x03\x02\x02\x02\u0288\u0289", "\x03\x02\x02\x02\u0289\u028B\x03\x02\x02\x02\u028A\u028C", "\x05\x85C\x02\u028B\u028A\x03\x02\x02\x02\u028C\u028D", "\x03\x02\x02\x02\u028D\u028B\x03\x02\x02\x02\u028D\u028E", "\x03\x02\x02\x02\u028E\x8A\x03\x02\x02\x02\u028F\u0290", "\t\t\x02\x02\u0290\x8C\x03\x02\x02\x02\u0291\u0292\t\n", "\x02\x02\u0292\x8E\x03\x02\x02\x02\u0293\u0294\x07/", "\x02\x02\u0294\x90\x03\x02\x02\x02\u0295\u0296\x05\x93", "J\x02\u0296\u0297\x05\x87D\x02\u0297\u02A0\x03\x02\x02", "\x02\u0298\u0299\x05\x93J\x02\u0299\u029A\x05\x89E\x02", "\u029A\u02A0\x03\x02\x02\x02\u029B\u029C\x05\x93J\x02", "\u029C\u029D\x05\x87D\x02\u029D\u029E\x05\x89E\x02\u029E", "\u02A0\x03\x02\x02\x02\u029F\u0295\x03\x02\x02\x02\u029F", "\u0298\x03\x02\x02\x02\u029F\u029B\x03\x02\x02\x02\u02A0", "\x92\x03\x02\x02\x02\u02A1\u02A3\x05\x8FH\x02\u02A2", "\u02A1\x03\x02\x02\x02\u02A2\u02A3\x03\x02\x02\x02\u02A3", "\u02A4\x03\x02\x02\x02\u02A4\u02B0\x072\x02\x02\u02A5", "\u02A7\x05\x8FH\x02\u02A6\u02A5\x03\x02\x02\x02\u02A6", "\u02A7\x03\x02\x02\x02\u02A7\u02A8\x03\x02\x02\x02\u02A8", "\u02AC\x05\x83B\x02\u02A9\u02AB\x05\x85C\x02\u02AA\u02A9", "\x03\x02\x02\x02\u02AB\u02AE\x03\x02\x02\x02\u02AC\u02AA", "\x03\x02\x02\x02\u02AC\u02AD\x03\x02\x02\x02\u02AD\u02B0", "\x03\x02\x02\x02\u02AE\u02AC\x03\x02\x02\x02\u02AF\u02A2", "\x03\x02\x02\x02\u02AF\u02A6\x03\x02\x02\x02\u02B0\x94", "\x03\x02\x02\x02\u02B1\u02B7\t\x0B\x02\x02\u02B2\u02B3", "\x070\x02\x02\u02B3\u02B4\x070\x02\x02\u02B4\u02B7\x07", "0\x02\x02\u02B5\u02B7\t\f\x02\x02\u02B6\u02B1\x03\x02\x02", "\x02\u02B6\u02B2\x03\x02\x02\x02\u02B6\u02B5\x03\x02\x02", "\x02\u02B7\x96\x03\x02\x02\x02\u02B8\u02BA\t\t\x02\x02", "\u02B9\u02BB\t\n\x02\x02\u02BA\u02B9\x03\x02\x02\x02\u02BA", "\u02BB\x03\x02\x02\x02\u02BB\u02BC\x03\x02\x02\x02\u02BC", "\u02BD\x05\x93J\x02\u02BD\x98\x03\x02\x02\x02\u02BE", "\u02C0\t\r\x02\x02\u02BF\u02BE\x03\x02\x02\x02\u02C0\u02C1", "\x03\x02\x02\x02\u02C1\u02BF\x03\x02\x02\x02\u02C1\u02C2", "\x03\x02\x02\x02\u02C2\u02C3\x03\x02\x02\x02\u02C3\u02C4", "\bM\x02\x02\u02C4\x9A\x03\x02\x02\x02\u02C5\u02C6\x07", ".\x02\x02\u02C6\u02C7\x03\x02\x02\x02\u02C7\u02C8\bN\x02", "\x02\u02C8\x9C\x03\x02\x02\x02\u02C9\u02CD\x07%\x02", "\x02\u02CA\u02CC\n\x0E\x02\x02\u02CB\u02CA\x03\x02\x02", "\x02\u02CC\u02CF\x03\x02\x02\x02\u02CD\u02CB\x03\x02\x02", "\x02\u02CD\u02CE\x03\x02\x02\x02\u02CE\u02D0\x03\x02\x02", "\x02\u02CF\u02CD\x03\x02\x02\x02\u02D0\u02D1\bO\x02\x02", "\u02D1\x9E\x03\x02\x02\x02\u02D2\u02D6\x05\xA1Q\x02", "\u02D3\u02D6\x05\xA3R\x02\u02D4\u02D6\x05\xA5S\x02\u02D5", "\u02D2\x03\x02\x02\x02\u02D5\u02D3\x03\x02\x02\x02\u02D5", "\u02D4\x03\x02\x02\x02\u02D6\u02D7\x03\x02\x02\x02\u02D7", "\u02D8\bP\x02\x02\u02D8\xA0\x03\x02\x02\x02\u02D9\u02DA", "\x07\uEFBD\x02\x02\u02DA\u02DB\x07D\x02\x02\u02DB\u02DC", "\x07H\x02\x02\u02DC\xA2\x03\x02\x02\x02\u02DD\u02DE", "\x07\uFF01\x02\x02\u02DE\xA4\x03\x02\x02\x02\u02DF\u02E0", "\x07\x02\x02\x02\u02E0\u02E1\x07H\x02\x02\u02E1\u02E2", "\x07G\x02\x02\u02E2\u02E3\x07H\x02\x02\u02E3\u02E4\x07", "H\x02\x02\u02E4\xA6\x03\x02\x02\x02\x15\x02\u024F", "\u0254\u025A\u0266\u0272\u0284\u0288\u028D\u029F\u02A2\u02A6\u02AC\u02AF", "\u02B6\u02BA\u02C1\u02CD\u02D5\x03\b\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 GraphQLLexer = /*#__PURE__*/function (_antlr4$Lexer) {
155
+ _inherits(GraphQLLexer, _antlr4$Lexer);
156
+
157
+ var _super = _createSuper(GraphQLLexer);
158
+
159
+ function GraphQLLexer(input) {
160
+ var _this;
161
+
162
+ _classCallCheck(this, GraphQLLexer);
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(GraphQLLexer, [{
170
+ key: "atn",
171
+ get: function get() {
172
+ return atn;
173
+ }
174
+ }]);
175
+
176
+ return GraphQLLexer;
177
+ }(_antlr["default"].Lexer);
178
+
179
+ exports["default"] = GraphQLLexer;
180
+
181
+ _defineProperty(GraphQLLexer, "grammarFileName", "GraphQL.g4");
182
+
183
+ _defineProperty(GraphQLLexer, "channelNames", ["DEFAULT_TOKEN_CHANNEL", "HIDDEN"]);
184
+
185
+ _defineProperty(GraphQLLexer, "modeNames", ["DEFAULT_MODE"]);
186
+
187
+ _defineProperty(GraphQLLexer, "literalNames", [null, "'query'", "'mutation'", "'subscription'", "'{'", "'}'", "'('", "')'", "':'", "'...'", "'fragment'", "'on'", "'true'", "'false'", "'null'", "'['", "']'", "'$'", "'='", "'!'", "'@'", "'schema'", "'extend'", "'scalar'", "'type'", "'implements'", "'&'", "'interface'", "'union'", "'|'", "'enum'", "'input'", "'directive'", "'QUERY'", "'MUTATION'", "'SUBSCRIPTION'", "'FIELD'", "'FRAGMENT_DEFINITION'", "'FRAGMENT_SPREAD'", "'INLINE_FRAGMENT'", "'SCHEMA'", "'SCALAR'", "'OBJECT'", "'FIELD_DEFINITION'", "'ARGUMENT_DEFINITION'", "'INTERFACE'", "'UNION'", "'ENUM'", "'ENUM_VALUE'", "'INPUT_OBJECT'", "'INPUT_FIELD_DEFINITION'", "'INPUT'", "'TYPE'", "'DIRECTIVE'", "'EXTEND'", "'IMPLEMENTS'", "'FRAGMENT'", null, null, null, null, null, null, null, null, "','", null, null, "'\uEFBBBF'", "'\uFEFF'", "'\0FEFF'"]);
188
+
189
+ _defineProperty(GraphQLLexer, "symbolicNames", [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, "NAME", "STRING", "BLOCK_STRING", "ID", "FLOAT", "INT", "PUNCTUATOR", "WS", "COMMA", "LineComment", "UNICODE_BOM", "UTF8_BOM", "UTF16_BOM", "UTF32_BOM"]);
190
+
191
+ _defineProperty(GraphQLLexer, "ruleNames", ["T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6", "T__7", "T__8", "T__9", "T__10", "T__11", "T__12", "T__13", "T__14", "T__15", "T__16", "T__17", "T__18", "T__19", "T__20", "T__21", "T__22", "T__23", "T__24", "T__25", "T__26", "T__27", "T__28", "T__29", "T__30", "T__31", "T__32", "T__33", "T__34", "T__35", "T__36", "T__37", "T__38", "T__39", "T__40", "T__41", "T__42", "T__43", "T__44", "T__45", "T__46", "T__47", "T__48", "T__49", "T__50", "T__51", "T__52", "T__53", "T__54", "T__55", "NAME", "CHARACTER", "STRING", "BLOCK_STRING", "ID", "ESC", "UNICODE", "HEX", "NONZERO_DIGIT", "DIGIT", "FRACTIONAL_PART", "EXPONENTIAL_PART", "EXPONENT_INDICATOR", "SIGN", "NEGATIVE_SIGN", "FLOAT", "INT", "PUNCTUATOR", "EXP", "WS", "COMMA", "LineComment", "UNICODE_BOM", "UTF8_BOM", "UTF16_BOM", "UTF32_BOM"]);
192
+
193
+ GraphQLLexer.EOF = _antlr["default"].Token.EOF;
194
+ GraphQLLexer.T__0 = 1;
195
+ GraphQLLexer.T__1 = 2;
196
+ GraphQLLexer.T__2 = 3;
197
+ GraphQLLexer.T__3 = 4;
198
+ GraphQLLexer.T__4 = 5;
199
+ GraphQLLexer.T__5 = 6;
200
+ GraphQLLexer.T__6 = 7;
201
+ GraphQLLexer.T__7 = 8;
202
+ GraphQLLexer.T__8 = 9;
203
+ GraphQLLexer.T__9 = 10;
204
+ GraphQLLexer.T__10 = 11;
205
+ GraphQLLexer.T__11 = 12;
206
+ GraphQLLexer.T__12 = 13;
207
+ GraphQLLexer.T__13 = 14;
208
+ GraphQLLexer.T__14 = 15;
209
+ GraphQLLexer.T__15 = 16;
210
+ GraphQLLexer.T__16 = 17;
211
+ GraphQLLexer.T__17 = 18;
212
+ GraphQLLexer.T__18 = 19;
213
+ GraphQLLexer.T__19 = 20;
214
+ GraphQLLexer.T__20 = 21;
215
+ GraphQLLexer.T__21 = 22;
216
+ GraphQLLexer.T__22 = 23;
217
+ GraphQLLexer.T__23 = 24;
218
+ GraphQLLexer.T__24 = 25;
219
+ GraphQLLexer.T__25 = 26;
220
+ GraphQLLexer.T__26 = 27;
221
+ GraphQLLexer.T__27 = 28;
222
+ GraphQLLexer.T__28 = 29;
223
+ GraphQLLexer.T__29 = 30;
224
+ GraphQLLexer.T__30 = 31;
225
+ GraphQLLexer.T__31 = 32;
226
+ GraphQLLexer.T__32 = 33;
227
+ GraphQLLexer.T__33 = 34;
228
+ GraphQLLexer.T__34 = 35;
229
+ GraphQLLexer.T__35 = 36;
230
+ GraphQLLexer.T__36 = 37;
231
+ GraphQLLexer.T__37 = 38;
232
+ GraphQLLexer.T__38 = 39;
233
+ GraphQLLexer.T__39 = 40;
234
+ GraphQLLexer.T__40 = 41;
235
+ GraphQLLexer.T__41 = 42;
236
+ GraphQLLexer.T__42 = 43;
237
+ GraphQLLexer.T__43 = 44;
238
+ GraphQLLexer.T__44 = 45;
239
+ GraphQLLexer.T__45 = 46;
240
+ GraphQLLexer.T__46 = 47;
241
+ GraphQLLexer.T__47 = 48;
242
+ GraphQLLexer.T__48 = 49;
243
+ GraphQLLexer.T__49 = 50;
244
+ GraphQLLexer.T__50 = 51;
245
+ GraphQLLexer.T__51 = 52;
246
+ GraphQLLexer.T__52 = 53;
247
+ GraphQLLexer.T__53 = 54;
248
+ GraphQLLexer.T__54 = 55;
249
+ GraphQLLexer.T__55 = 56;
250
+ GraphQLLexer.NAME = 57;
251
+ GraphQLLexer.STRING = 58;
252
+ GraphQLLexer.BLOCK_STRING = 59;
253
+ GraphQLLexer.ID = 60;
254
+ GraphQLLexer.FLOAT = 61;
255
+ GraphQLLexer.INT = 62;
256
+ GraphQLLexer.PUNCTUATOR = 63;
257
+ GraphQLLexer.WS = 64;
258
+ GraphQLLexer.COMMA = 65;
259
+ GraphQLLexer.LineComment = 66;
260
+ GraphQLLexer.UNICODE_BOM = 67;
261
+ GraphQLLexer.UTF8_BOM = 68;
262
+ GraphQLLexer.UTF16_BOM = 69;
263
+ GraphQLLexer.UTF32_BOM = 70;
264
+
@@ -0,0 +1,130 @@
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
+ NAME=57
58
+ STRING=58
59
+ BLOCK_STRING=59
60
+ ID=60
61
+ FLOAT=61
62
+ INT=62
63
+ PUNCTUATOR=63
64
+ WS=64
65
+ COMMA=65
66
+ LineComment=66
67
+ UNICODE_BOM=67
68
+ UTF8_BOM=68
69
+ UTF16_BOM=69
70
+ UTF32_BOM=70
71
+ 'query'=1
72
+ 'mutation'=2
73
+ 'subscription'=3
74
+ '{'=4
75
+ '}'=5
76
+ '('=6
77
+ ')'=7
78
+ ':'=8
79
+ '...'=9
80
+ 'fragment'=10
81
+ 'on'=11
82
+ 'true'=12
83
+ 'false'=13
84
+ 'null'=14
85
+ '['=15
86
+ ']'=16
87
+ '$'=17
88
+ '='=18
89
+ '!'=19
90
+ '@'=20
91
+ 'schema'=21
92
+ 'extend'=22
93
+ 'scalar'=23
94
+ 'type'=24
95
+ 'implements'=25
96
+ '&'=26
97
+ 'interface'=27
98
+ 'union'=28
99
+ '|'=29
100
+ 'enum'=30
101
+ 'input'=31
102
+ 'directive'=32
103
+ 'QUERY'=33
104
+ 'MUTATION'=34
105
+ 'SUBSCRIPTION'=35
106
+ 'FIELD'=36
107
+ 'FRAGMENT_DEFINITION'=37
108
+ 'FRAGMENT_SPREAD'=38
109
+ 'INLINE_FRAGMENT'=39
110
+ 'SCHEMA'=40
111
+ 'SCALAR'=41
112
+ 'OBJECT'=42
113
+ 'FIELD_DEFINITION'=43
114
+ 'ARGUMENT_DEFINITION'=44
115
+ 'INTERFACE'=45
116
+ 'UNION'=46
117
+ 'ENUM'=47
118
+ 'ENUM_VALUE'=48
119
+ 'INPUT_OBJECT'=49
120
+ 'INPUT_FIELD_DEFINITION'=50
121
+ 'INPUT'=51
122
+ 'TYPE'=52
123
+ 'DIRECTIVE'=53
124
+ 'EXTEND'=54
125
+ 'IMPLEMENTS'=55
126
+ 'FRAGMENT'=56
127
+ ','=65
128
+ '\uEFBBBF'=68
129
+ '\uFEFF'=69
130
+ '\u0000FEFF'=70