@designliquido/delegua 0.14.5 → 0.14.6

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 (26) hide show
  1. package/bin/package.json +5 -2
  2. package/fontes/avaliador-sintatico/dialetos/avaliador-sintatico-visualg.d.ts +8 -1
  3. package/fontes/avaliador-sintatico/dialetos/avaliador-sintatico-visualg.js +92 -38
  4. package/fontes/avaliador-sintatico/dialetos/avaliador-sintatico-visualg.js.map +1 -1
  5. package/fontes/lexador/dialetos/palavras-reservadas/visualg.d.ts +2 -0
  6. package/fontes/lexador/dialetos/palavras-reservadas/visualg.js +2 -0
  7. package/fontes/lexador/dialetos/palavras-reservadas/visualg.js.map +1 -1
  8. package/fontes/tipos-de-simbolos/visualg.d.ts +2 -0
  9. package/fontes/tipos-de-simbolos/visualg.js +2 -0
  10. package/fontes/tipos-de-simbolos/visualg.js.map +1 -1
  11. package/fontes/tradutores/python/python3-lexer.d.ts +152 -0
  12. package/fontes/tradutores/python/python3-lexer.js +1227 -0
  13. package/fontes/tradutores/python/python3-lexer.js.map +1 -0
  14. package/fontes/tradutores/python/python3-listener.d.ts +953 -0
  15. package/fontes/tradutores/python/python3-listener.js +3 -0
  16. package/fontes/tradutores/python/python3-listener.js.map +1 -0
  17. package/fontes/tradutores/python/python3-parser.d.ts +1330 -0
  18. package/fontes/tradutores/python/python3-parser.js +11157 -0
  19. package/fontes/tradutores/python/python3-parser.js.map +1 -0
  20. package/fontes/tradutores/python/python3-visitor.d.ts +612 -0
  21. package/fontes/tradutores/python/python3-visitor.js +3 -0
  22. package/fontes/tradutores/python/python3-visitor.js.map +1 -0
  23. package/fontes/tradutores/tradutor-python.d.ts +1 -0
  24. package/fontes/tradutores/tradutor-python.js +35 -0
  25. package/fontes/tradutores/tradutor-python.js.map +1 -0
  26. package/package.json +4 -1
@@ -0,0 +1,1227 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
19
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
20
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
21
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
22
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
23
+ };
24
+ var __importStar = (this && this.__importStar) || function (mod) {
25
+ if (mod && mod.__esModule) return mod;
26
+ var result = {};
27
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
28
+ __setModuleDefault(result, mod);
29
+ return result;
30
+ };
31
+ Object.defineProperty(exports, "__esModule", { value: true });
32
+ exports.Python3Lexer = void 0;
33
+ const Token_1 = require("antlr4ts/Token");
34
+ const CommonToken_1 = require("antlr4ts/CommonToken");
35
+ const python3_parser_1 = require("./python3-parser");
36
+ const ATNDeserializer_1 = require("antlr4ts/atn/ATNDeserializer");
37
+ const Lexer_1 = require("antlr4ts/Lexer");
38
+ const LexerATNSimulator_1 = require("antlr4ts/atn/LexerATNSimulator");
39
+ const Decorators_1 = require("antlr4ts/Decorators");
40
+ const VocabularyImpl_1 = require("antlr4ts/VocabularyImpl");
41
+ const Utils = __importStar(require("antlr4ts/misc/Utils"));
42
+ class Python3Lexer extends Lexer_1.Lexer {
43
+ // @Override
44
+ // @NotNull
45
+ get vocabulary() {
46
+ return Python3Lexer.VOCABULARY;
47
+ }
48
+ reset() {
49
+ // A queue where extra tokens are pushed on (see the NEWLINE lexer rule).
50
+ this.token_queue = [];
51
+ // The stack that keeps track of the indentation level.
52
+ this.indents = [];
53
+ // The amount of opened braces, brackets and parenthesis.
54
+ this.opened = 0;
55
+ super.reset();
56
+ }
57
+ emit(token) {
58
+ if (token) {
59
+ token = super.emit(token);
60
+ }
61
+ else {
62
+ token = super.emit();
63
+ }
64
+ this.token_queue.push(token);
65
+ return token;
66
+ }
67
+ /**
68
+ * Return the next token from the character stream and records this last
69
+ * token in case it resides on the default channel. This recorded token
70
+ * is used to determine when the lexer could possibly match a regex
71
+ * literal.
72
+ *
73
+ */
74
+ nextToken() {
75
+ // Check if the end-of-file is ahead and there are still some DEDENTS expected.
76
+ if (this.inputStream.LA(1) === python3_parser_1.Python3Parser.EOF && this.indents.length) {
77
+ // Remove any trailing EOF tokens from our buffer.
78
+ this.token_queue = this.token_queue.filter(function (val) {
79
+ return val.type !== python3_parser_1.Python3Parser.EOF;
80
+ });
81
+ // First emit an extra line break that serves as the end of the statement.
82
+ this.emit(this.commonToken(python3_parser_1.Python3Parser.NEWLINE, '\n'));
83
+ // Now emit as much DEDENT tokens as needed.
84
+ while (this.indents.length) {
85
+ this.emit(this.createDedent());
86
+ this.indents.pop();
87
+ }
88
+ // Put the EOF back on the token stream.
89
+ this.emit(this.commonToken(python3_parser_1.Python3Parser.EOF, '<EOF>'));
90
+ }
91
+ let next = super.nextToken();
92
+ if (next.channel == Token_1.Token.DEFAULT_CHANNEL) {
93
+ // Keep track of the last token on the default channel.
94
+ this.last_token = next;
95
+ }
96
+ return this.token_queue.shift() || next;
97
+ }
98
+ createDedent() {
99
+ let dedent = this.commonToken(python3_parser_1.Python3Parser.DEDENT, '');
100
+ if (this.last_token) {
101
+ dedent.line = this.last_token.line;
102
+ }
103
+ return dedent;
104
+ }
105
+ commonToken(type, text) {
106
+ let stop = this.charIndex - 1;
107
+ let start = text.length ? stop - text.length + 1 : stop;
108
+ return new CommonToken_1.CommonToken(type, text, this._tokenFactorySourcePair, Lexer_1.Lexer.DEFAULT_TOKEN_CHANNEL, start, stop);
109
+ }
110
+ // Calculates the indentation of the provided spaces, taking the
111
+ // following rules into account:
112
+ //
113
+ // "Tabs are replaced (from left to right) by one to eight spaces
114
+ // such that the total number of characters up to and including
115
+ // the replacement is a multiple of eight [...]"
116
+ //
117
+ // -- https://docs.python.org/3.1/reference/lexical_analysis.html#indentation
118
+ getIndentationCount(whitespace) {
119
+ let count = 0;
120
+ for (let i = 0; i < whitespace.length; i++) {
121
+ if (whitespace[i] === '\t') {
122
+ count += 8 - (count % 8);
123
+ }
124
+ else {
125
+ count++;
126
+ }
127
+ }
128
+ return count;
129
+ }
130
+ atStartOfInput() {
131
+ return this.charIndex === 0;
132
+ }
133
+ constructor(input) {
134
+ super(input);
135
+ // tslint:enable:no-trailing-whitespace
136
+ this.token_queue = [];
137
+ this.indents = [];
138
+ this.opened = 0;
139
+ this.last_token = undefined;
140
+ this._interp = new LexerATNSimulator_1.LexerATNSimulator(Python3Lexer._ATN, this);
141
+ }
142
+ // @Override
143
+ get grammarFileName() {
144
+ return 'Python3.g4';
145
+ }
146
+ // @Override
147
+ get ruleNames() {
148
+ return Python3Lexer.ruleNames;
149
+ }
150
+ // @Override
151
+ get serializedATN() {
152
+ return Python3Lexer._serializedATN;
153
+ }
154
+ // @Override
155
+ get channelNames() {
156
+ return Python3Lexer.channelNames;
157
+ }
158
+ // @Override
159
+ get modeNames() {
160
+ return Python3Lexer.modeNames;
161
+ }
162
+ // @Override
163
+ action(_localctx, ruleIndex, actionIndex) {
164
+ switch (ruleIndex) {
165
+ case 38:
166
+ this.NEWLINE_action(_localctx, actionIndex);
167
+ break;
168
+ case 51:
169
+ this.OPEN_PAREN_action(_localctx, actionIndex);
170
+ break;
171
+ case 52:
172
+ this.CLOSE_PAREN_action(_localctx, actionIndex);
173
+ break;
174
+ case 58:
175
+ this.OPEN_BRACK_action(_localctx, actionIndex);
176
+ break;
177
+ case 59:
178
+ this.CLOSE_BRACK_action(_localctx, actionIndex);
179
+ break;
180
+ case 71:
181
+ this.OPEN_BRACE_action(_localctx, actionIndex);
182
+ break;
183
+ case 72:
184
+ this.CLOSE_BRACE_action(_localctx, actionIndex);
185
+ break;
186
+ }
187
+ }
188
+ NEWLINE_action(_localctx, actionIndex) {
189
+ switch (actionIndex) {
190
+ case 0:
191
+ let newLine = this.text.replace(/[^\r\n]+/g, '');
192
+ let spaces = this.text.replace(/[\r\n]+/g, '');
193
+ // Strip newlines inside open clauses except if we are near EOF. We keep NEWLINEs near EOF to
194
+ // satisfy the final newline needed by the single_put rule used by the REPL.
195
+ let next = this.inputStream.LA(1);
196
+ let nextnext = this.inputStream.LA(2);
197
+ if (this.opened > 0 ||
198
+ (nextnext != -1 /* EOF */ &&
199
+ (next === 13 /* '\r' */ || next === 10 /* '\n' */ || next === 35) /* '#' */)) {
200
+ // If we're inside a list or on a blank line, ignore all indents,
201
+ // dedents and line breaks.
202
+ this.skip();
203
+ }
204
+ else {
205
+ this.emit(this.commonToken(python3_parser_1.Python3Parser.NEWLINE, newLine));
206
+ let indent = this.getIndentationCount(spaces);
207
+ let previous = this.indents.length ? this.indents[this.indents.length - 1] : 0;
208
+ if (indent === previous) {
209
+ // skip indents of the same size as the present indent-size
210
+ this.skip();
211
+ }
212
+ else if (indent > previous) {
213
+ this.indents.push(indent);
214
+ this.emit(this.commonToken(python3_parser_1.Python3Parser.INDENT, spaces));
215
+ }
216
+ else {
217
+ // Possibly emit more than 1 DEDENT token.
218
+ while (this.indents.length && this.indents[this.indents.length - 1] > indent) {
219
+ this.emit(this.createDedent());
220
+ this.indents.pop();
221
+ }
222
+ }
223
+ }
224
+ break;
225
+ }
226
+ }
227
+ OPEN_PAREN_action(_localctx, actionIndex) {
228
+ switch (actionIndex) {
229
+ case 1:
230
+ this.opened++;
231
+ break;
232
+ }
233
+ }
234
+ CLOSE_PAREN_action(_localctx, actionIndex) {
235
+ switch (actionIndex) {
236
+ case 2:
237
+ this.opened--;
238
+ break;
239
+ }
240
+ }
241
+ OPEN_BRACK_action(_localctx, actionIndex) {
242
+ switch (actionIndex) {
243
+ case 3:
244
+ this.opened++;
245
+ break;
246
+ }
247
+ }
248
+ CLOSE_BRACK_action(_localctx, actionIndex) {
249
+ switch (actionIndex) {
250
+ case 4:
251
+ this.opened--;
252
+ break;
253
+ }
254
+ }
255
+ OPEN_BRACE_action(_localctx, actionIndex) {
256
+ switch (actionIndex) {
257
+ case 5:
258
+ this.opened++;
259
+ break;
260
+ }
261
+ }
262
+ CLOSE_BRACE_action(_localctx, actionIndex) {
263
+ switch (actionIndex) {
264
+ case 6:
265
+ this.opened--;
266
+ break;
267
+ }
268
+ }
269
+ // @Override
270
+ sempred(_localctx, ruleIndex, predIndex) {
271
+ switch (ruleIndex) {
272
+ case 38:
273
+ return this.NEWLINE_sempred(_localctx, predIndex);
274
+ }
275
+ return true;
276
+ }
277
+ NEWLINE_sempred(_localctx, predIndex) {
278
+ switch (predIndex) {
279
+ case 0:
280
+ return this.atStartOfInput();
281
+ }
282
+ return true;
283
+ }
284
+ static get _ATN() {
285
+ if (!Python3Lexer.__ATN) {
286
+ Python3Lexer.__ATN = new ATNDeserializer_1.ATNDeserializer().deserialize(Utils.toCharArray(Python3Lexer._serializedATN));
287
+ }
288
+ return Python3Lexer.__ATN;
289
+ }
290
+ }
291
+ Python3Lexer.STRING = 1;
292
+ Python3Lexer.NUMBER = 2;
293
+ Python3Lexer.INTEGER = 3;
294
+ Python3Lexer.DEF = 4;
295
+ Python3Lexer.RETURN = 5;
296
+ Python3Lexer.RAISE = 6;
297
+ Python3Lexer.FROM = 7;
298
+ Python3Lexer.IMPORT = 8;
299
+ Python3Lexer.AS = 9;
300
+ Python3Lexer.GLOBAL = 10;
301
+ Python3Lexer.NONLOCAL = 11;
302
+ Python3Lexer.ASSERT = 12;
303
+ Python3Lexer.IF = 13;
304
+ Python3Lexer.ELIF = 14;
305
+ Python3Lexer.ELSE = 15;
306
+ Python3Lexer.WHILE = 16;
307
+ Python3Lexer.FOR = 17;
308
+ Python3Lexer.IN = 18;
309
+ Python3Lexer.TRY = 19;
310
+ Python3Lexer.FINALLY = 20;
311
+ Python3Lexer.WITH = 21;
312
+ Python3Lexer.EXCEPT = 22;
313
+ Python3Lexer.LAMBDA = 23;
314
+ Python3Lexer.OR = 24;
315
+ Python3Lexer.AND = 25;
316
+ Python3Lexer.NOT = 26;
317
+ Python3Lexer.IS = 27;
318
+ Python3Lexer.NONE = 28;
319
+ Python3Lexer.TRUE = 29;
320
+ Python3Lexer.FALSE = 30;
321
+ Python3Lexer.CLASS = 31;
322
+ Python3Lexer.YIELD = 32;
323
+ Python3Lexer.DEL = 33;
324
+ Python3Lexer.PASS = 34;
325
+ Python3Lexer.CONTINUE = 35;
326
+ Python3Lexer.BREAK = 36;
327
+ Python3Lexer.ASYNC = 37;
328
+ Python3Lexer.AWAIT = 38;
329
+ Python3Lexer.NEWLINE = 39;
330
+ Python3Lexer.NAME = 40;
331
+ Python3Lexer.STRING_LITERAL = 41;
332
+ Python3Lexer.BYTES_LITERAL = 42;
333
+ Python3Lexer.DECIMAL_INTEGER = 43;
334
+ Python3Lexer.OCT_INTEGER = 44;
335
+ Python3Lexer.HEX_INTEGER = 45;
336
+ Python3Lexer.BIN_INTEGER = 46;
337
+ Python3Lexer.FLOAT_NUMBER = 47;
338
+ Python3Lexer.IMAG_NUMBER = 48;
339
+ Python3Lexer.DOT = 49;
340
+ Python3Lexer.ELLIPSIS = 50;
341
+ Python3Lexer.STAR = 51;
342
+ Python3Lexer.OPEN_PAREN = 52;
343
+ Python3Lexer.CLOSE_PAREN = 53;
344
+ Python3Lexer.COMMA = 54;
345
+ Python3Lexer.COLON = 55;
346
+ Python3Lexer.SEMI_COLON = 56;
347
+ Python3Lexer.POWER = 57;
348
+ Python3Lexer.ASSIGN = 58;
349
+ Python3Lexer.OPEN_BRACK = 59;
350
+ Python3Lexer.CLOSE_BRACK = 60;
351
+ Python3Lexer.OR_OP = 61;
352
+ Python3Lexer.XOR = 62;
353
+ Python3Lexer.AND_OP = 63;
354
+ Python3Lexer.LEFT_SHIFT = 64;
355
+ Python3Lexer.RIGHT_SHIFT = 65;
356
+ Python3Lexer.ADD = 66;
357
+ Python3Lexer.MINUS = 67;
358
+ Python3Lexer.DIV = 68;
359
+ Python3Lexer.MOD = 69;
360
+ Python3Lexer.IDIV = 70;
361
+ Python3Lexer.NOT_OP = 71;
362
+ Python3Lexer.OPEN_BRACE = 72;
363
+ Python3Lexer.CLOSE_BRACE = 73;
364
+ Python3Lexer.LESS_THAN = 74;
365
+ Python3Lexer.GREATER_THAN = 75;
366
+ Python3Lexer.EQUALS = 76;
367
+ Python3Lexer.GT_EQ = 77;
368
+ Python3Lexer.LT_EQ = 78;
369
+ Python3Lexer.NOT_EQ_1 = 79;
370
+ Python3Lexer.NOT_EQ_2 = 80;
371
+ Python3Lexer.AT = 81;
372
+ Python3Lexer.ARROW = 82;
373
+ Python3Lexer.ADD_ASSIGN = 83;
374
+ Python3Lexer.SUB_ASSIGN = 84;
375
+ Python3Lexer.MULT_ASSIGN = 85;
376
+ Python3Lexer.AT_ASSIGN = 86;
377
+ Python3Lexer.DIV_ASSIGN = 87;
378
+ Python3Lexer.MOD_ASSIGN = 88;
379
+ Python3Lexer.AND_ASSIGN = 89;
380
+ Python3Lexer.OR_ASSIGN = 90;
381
+ Python3Lexer.XOR_ASSIGN = 91;
382
+ Python3Lexer.LEFT_SHIFT_ASSIGN = 92;
383
+ Python3Lexer.RIGHT_SHIFT_ASSIGN = 93;
384
+ Python3Lexer.POWER_ASSIGN = 94;
385
+ Python3Lexer.IDIV_ASSIGN = 95;
386
+ Python3Lexer.SKIP_ = 96;
387
+ Python3Lexer.UNKNOWN_CHAR = 97;
388
+ // tslint:disable:no-trailing-whitespace
389
+ Python3Lexer.channelNames = ['DEFAULT_TOKEN_CHANNEL', 'HIDDEN'];
390
+ // tslint:disable:no-trailing-whitespace
391
+ Python3Lexer.modeNames = ['DEFAULT_MODE'];
392
+ Python3Lexer.ruleNames = [
393
+ 'STRING',
394
+ 'NUMBER',
395
+ 'INTEGER',
396
+ 'DEF',
397
+ 'RETURN',
398
+ 'RAISE',
399
+ 'FROM',
400
+ 'IMPORT',
401
+ 'AS',
402
+ 'GLOBAL',
403
+ 'NONLOCAL',
404
+ 'ASSERT',
405
+ 'IF',
406
+ 'ELIF',
407
+ 'ELSE',
408
+ 'WHILE',
409
+ 'FOR',
410
+ 'IN',
411
+ 'TRY',
412
+ 'FINALLY',
413
+ 'WITH',
414
+ 'EXCEPT',
415
+ 'LAMBDA',
416
+ 'OR',
417
+ 'AND',
418
+ 'NOT',
419
+ 'IS',
420
+ 'NONE',
421
+ 'TRUE',
422
+ 'FALSE',
423
+ 'CLASS',
424
+ 'YIELD',
425
+ 'DEL',
426
+ 'PASS',
427
+ 'CONTINUE',
428
+ 'BREAK',
429
+ 'ASYNC',
430
+ 'AWAIT',
431
+ 'NEWLINE',
432
+ 'NAME',
433
+ 'STRING_LITERAL',
434
+ 'BYTES_LITERAL',
435
+ 'DECIMAL_INTEGER',
436
+ 'OCT_INTEGER',
437
+ 'HEX_INTEGER',
438
+ 'BIN_INTEGER',
439
+ 'FLOAT_NUMBER',
440
+ 'IMAG_NUMBER',
441
+ 'DOT',
442
+ 'ELLIPSIS',
443
+ 'STAR',
444
+ 'OPEN_PAREN',
445
+ 'CLOSE_PAREN',
446
+ 'COMMA',
447
+ 'COLON',
448
+ 'SEMI_COLON',
449
+ 'POWER',
450
+ 'ASSIGN',
451
+ 'OPEN_BRACK',
452
+ 'CLOSE_BRACK',
453
+ 'OR_OP',
454
+ 'XOR',
455
+ 'AND_OP',
456
+ 'LEFT_SHIFT',
457
+ 'RIGHT_SHIFT',
458
+ 'ADD',
459
+ 'MINUS',
460
+ 'DIV',
461
+ 'MOD',
462
+ 'IDIV',
463
+ 'NOT_OP',
464
+ 'OPEN_BRACE',
465
+ 'CLOSE_BRACE',
466
+ 'LESS_THAN',
467
+ 'GREATER_THAN',
468
+ 'EQUALS',
469
+ 'GT_EQ',
470
+ 'LT_EQ',
471
+ 'NOT_EQ_1',
472
+ 'NOT_EQ_2',
473
+ 'AT',
474
+ 'ARROW',
475
+ 'ADD_ASSIGN',
476
+ 'SUB_ASSIGN',
477
+ 'MULT_ASSIGN',
478
+ 'AT_ASSIGN',
479
+ 'DIV_ASSIGN',
480
+ 'MOD_ASSIGN',
481
+ 'AND_ASSIGN',
482
+ 'OR_ASSIGN',
483
+ 'XOR_ASSIGN',
484
+ 'LEFT_SHIFT_ASSIGN',
485
+ 'RIGHT_SHIFT_ASSIGN',
486
+ 'POWER_ASSIGN',
487
+ 'IDIV_ASSIGN',
488
+ 'SKIP_',
489
+ 'UNKNOWN_CHAR',
490
+ 'SHORT_STRING',
491
+ 'LONG_STRING',
492
+ 'LONG_STRING_ITEM',
493
+ 'LONG_STRING_CHAR',
494
+ 'STRING_ESCAPE_SEQ',
495
+ 'NON_ZERO_DIGIT',
496
+ 'DIGIT',
497
+ 'OCT_DIGIT',
498
+ 'HEX_DIGIT',
499
+ 'BIN_DIGIT',
500
+ 'POINT_FLOAT',
501
+ 'EXPONENT_FLOAT',
502
+ 'INT_PART',
503
+ 'FRACTION',
504
+ 'EXPONENT',
505
+ 'SHORT_BYTES',
506
+ 'LONG_BYTES',
507
+ 'LONG_BYTES_ITEM',
508
+ 'SHORT_BYTES_CHAR_NO_SINGLE_QUOTE',
509
+ 'SHORT_BYTES_CHAR_NO_DOUBLE_QUOTE',
510
+ 'LONG_BYTES_CHAR',
511
+ 'BYTES_ESCAPE_SEQ',
512
+ 'SPACES',
513
+ 'COMMENT',
514
+ 'LINE_JOINING',
515
+ 'ID_START',
516
+ 'ID_CONTINUE',
517
+ ];
518
+ Python3Lexer._LITERAL_NAMES = [
519
+ undefined,
520
+ undefined,
521
+ undefined,
522
+ undefined,
523
+ "'def'",
524
+ "'return'",
525
+ "'raise'",
526
+ "'from'",
527
+ "'import'",
528
+ "'as'",
529
+ "'global'",
530
+ "'nonlocal'",
531
+ "'assert'",
532
+ "'if'",
533
+ "'elif'",
534
+ "'else'",
535
+ "'while'",
536
+ "'for'",
537
+ "'in'",
538
+ "'try'",
539
+ "'finally'",
540
+ "'with'",
541
+ "'except'",
542
+ "'lambda'",
543
+ "'or'",
544
+ "'and'",
545
+ "'not'",
546
+ "'is'",
547
+ "'None'",
548
+ "'True'",
549
+ "'False'",
550
+ "'class'",
551
+ "'yield'",
552
+ "'del'",
553
+ "'pass'",
554
+ "'continue'",
555
+ "'break'",
556
+ "'async'",
557
+ "'await'",
558
+ undefined,
559
+ undefined,
560
+ undefined,
561
+ undefined,
562
+ undefined,
563
+ undefined,
564
+ undefined,
565
+ undefined,
566
+ undefined,
567
+ undefined,
568
+ "'.'",
569
+ "'...'",
570
+ "'*'",
571
+ "'('",
572
+ "')'",
573
+ "','",
574
+ "':'",
575
+ "';'",
576
+ "'**'",
577
+ "'='",
578
+ "'['",
579
+ "']'",
580
+ "'|'",
581
+ "'^'",
582
+ "'&'",
583
+ "'<<'",
584
+ "'>>'",
585
+ "'+'",
586
+ "'-'",
587
+ "'/'",
588
+ "'%'",
589
+ "'//'",
590
+ "'~'",
591
+ "'{'",
592
+ "'}'",
593
+ "'<'",
594
+ "'>'",
595
+ "'=='",
596
+ "'>='",
597
+ "'<='",
598
+ "'<>'",
599
+ "'!='",
600
+ "'@'",
601
+ "'->'",
602
+ "'+='",
603
+ "'-='",
604
+ "'*='",
605
+ "'@='",
606
+ "'/='",
607
+ "'%='",
608
+ "'&='",
609
+ "'|='",
610
+ "'^='",
611
+ "'<<='",
612
+ "'>>='",
613
+ "'**='",
614
+ "'//='",
615
+ ];
616
+ Python3Lexer._SYMBOLIC_NAMES = [
617
+ undefined,
618
+ 'STRING',
619
+ 'NUMBER',
620
+ 'INTEGER',
621
+ 'DEF',
622
+ 'RETURN',
623
+ 'RAISE',
624
+ 'FROM',
625
+ 'IMPORT',
626
+ 'AS',
627
+ 'GLOBAL',
628
+ 'NONLOCAL',
629
+ 'ASSERT',
630
+ 'IF',
631
+ 'ELIF',
632
+ 'ELSE',
633
+ 'WHILE',
634
+ 'FOR',
635
+ 'IN',
636
+ 'TRY',
637
+ 'FINALLY',
638
+ 'WITH',
639
+ 'EXCEPT',
640
+ 'LAMBDA',
641
+ 'OR',
642
+ 'AND',
643
+ 'NOT',
644
+ 'IS',
645
+ 'NONE',
646
+ 'TRUE',
647
+ 'FALSE',
648
+ 'CLASS',
649
+ 'YIELD',
650
+ 'DEL',
651
+ 'PASS',
652
+ 'CONTINUE',
653
+ 'BREAK',
654
+ 'ASYNC',
655
+ 'AWAIT',
656
+ 'NEWLINE',
657
+ 'NAME',
658
+ 'STRING_LITERAL',
659
+ 'BYTES_LITERAL',
660
+ 'DECIMAL_INTEGER',
661
+ 'OCT_INTEGER',
662
+ 'HEX_INTEGER',
663
+ 'BIN_INTEGER',
664
+ 'FLOAT_NUMBER',
665
+ 'IMAG_NUMBER',
666
+ 'DOT',
667
+ 'ELLIPSIS',
668
+ 'STAR',
669
+ 'OPEN_PAREN',
670
+ 'CLOSE_PAREN',
671
+ 'COMMA',
672
+ 'COLON',
673
+ 'SEMI_COLON',
674
+ 'POWER',
675
+ 'ASSIGN',
676
+ 'OPEN_BRACK',
677
+ 'CLOSE_BRACK',
678
+ 'OR_OP',
679
+ 'XOR',
680
+ 'AND_OP',
681
+ 'LEFT_SHIFT',
682
+ 'RIGHT_SHIFT',
683
+ 'ADD',
684
+ 'MINUS',
685
+ 'DIV',
686
+ 'MOD',
687
+ 'IDIV',
688
+ 'NOT_OP',
689
+ 'OPEN_BRACE',
690
+ 'CLOSE_BRACE',
691
+ 'LESS_THAN',
692
+ 'GREATER_THAN',
693
+ 'EQUALS',
694
+ 'GT_EQ',
695
+ 'LT_EQ',
696
+ 'NOT_EQ_1',
697
+ 'NOT_EQ_2',
698
+ 'AT',
699
+ 'ARROW',
700
+ 'ADD_ASSIGN',
701
+ 'SUB_ASSIGN',
702
+ 'MULT_ASSIGN',
703
+ 'AT_ASSIGN',
704
+ 'DIV_ASSIGN',
705
+ 'MOD_ASSIGN',
706
+ 'AND_ASSIGN',
707
+ 'OR_ASSIGN',
708
+ 'XOR_ASSIGN',
709
+ 'LEFT_SHIFT_ASSIGN',
710
+ 'RIGHT_SHIFT_ASSIGN',
711
+ 'POWER_ASSIGN',
712
+ 'IDIV_ASSIGN',
713
+ 'SKIP_',
714
+ 'UNKNOWN_CHAR',
715
+ ];
716
+ Python3Lexer.VOCABULARY = new VocabularyImpl_1.VocabularyImpl(Python3Lexer._LITERAL_NAMES, Python3Lexer._SYMBOLIC_NAMES, []);
717
+ Python3Lexer._serializedATNSegments = 2;
718
+ Python3Lexer._serializedATNSegment0 = '\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x02c\u0373\b\x01' +
719
+ '\x04\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06' +
720
+ '\x04\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04\r' +
721
+ '\t\r\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t' +
722
+ '\x12\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17\t' +
723
+ '\x17\x04\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C\t' +
724
+ '\x1C\x04\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x04"\t' +
725
+ "\"\x04#\t#\x04$\t$\x04%\t%\x04&\t&\x04'\t'\x04(\t(\x04)\t)\x04*\t*\x04" +
726
+ '+\t+\x04,\t,\x04-\t-\x04.\t.\x04/\t/\x040\t0\x041\t1\x042\t2\x043\t3\x04' +
727
+ '4\t4\x045\t5\x046\t6\x047\t7\x048\t8\x049\t9\x04:\t:\x04;\t;\x04<\t<\x04' +
728
+ '=\t=\x04>\t>\x04?\t?\x04@\t@\x04A\tA\x04B\tB\x04C\tC\x04D\tD\x04E\tE\x04' +
729
+ 'F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04L\tL\x04M\tM\x04N\tN\x04' +
730
+ 'O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04S\tS\x04T\tT\x04U\tU\x04V\tV\x04W\tW\x04' +
731
+ 'X\tX\x04Y\tY\x04Z\tZ\x04[\t[\x04\\\t\\\x04]\t]\x04^\t^\x04_\t_\x04`\t' +
732
+ '`\x04a\ta\x04b\tb\x04c\tc\x04d\td\x04e\te\x04f\tf\x04g\tg\x04h\th\x04' +
733
+ 'i\ti\x04j\tj\x04k\tk\x04l\tl\x04m\tm\x04n\tn\x04o\to\x04p\tp\x04q\tq\x04' +
734
+ 'r\tr\x04s\ts\x04t\tt\x04u\tu\x04v\tv\x04w\tw\x04x\tx\x04y\ty\x04z\tz\x04' +
735
+ '{\t{\x04|\t|\x04}\t}\x03\x02\x03\x02\x05\x02\xFE\n\x02\x03\x03\x03\x03' +
736
+ '\x03\x03\x05\x03\u0103\n\x03\x03\x04\x03\x04\x03\x04\x03\x04\x05\x04\u0109' +
737
+ '\n\x04\x03\x05\x03\x05\x03\x05\x03\x05\x03\x06\x03\x06\x03\x06\x03\x06' +
738
+ '\x03\x06\x03\x06\x03\x06\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07' +
739
+ '\x03\b\x03\b\x03\b\x03\b\x03\b\x03\t\x03\t\x03\t\x03\t\x03\t\x03\t\x03' +
740
+ '\t\x03\n\x03\n\x03\n\x03\v\x03\v\x03\v\x03\v\x03\v\x03\v\x03\v\x03\f\x03' +
741
+ '\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\r\x03\r\x03\r\x03\r\x03' +
742
+ '\r\x03\r\x03\r\x03\x0E\x03\x0E\x03\x0E\x03\x0F\x03\x0F\x03\x0F\x03\x0F' +
743
+ '\x03\x0F\x03\x10\x03\x10\x03\x10\x03\x10\x03\x10\x03\x11\x03\x11\x03\x11' +
744
+ '\x03\x11\x03\x11\x03\x11\x03\x12\x03\x12\x03\x12\x03\x12\x03\x13\x03\x13' +
745
+ '\x03\x13\x03\x14\x03\x14\x03\x14\x03\x14\x03\x15\x03\x15\x03\x15\x03\x15' +
746
+ '\x03\x15\x03\x15\x03\x15\x03\x15\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16' +
747
+ '\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x18\x03\x18' +
748
+ '\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x19\x03\x19\x03\x19\x03\x1A' +
749
+ '\x03\x1A\x03\x1A\x03\x1A\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1C\x03\x1C' +
750
+ '\x03\x1C\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1E\x03\x1E\x03\x1E' +
751
+ '\x03\x1E\x03\x1E\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03 ' +
752
+ '\x03 \x03 \x03 \x03 \x03 \x03!\x03!\x03!\x03!\x03!\x03!\x03"\x03"\x03' +
753
+ '"\x03"\x03#\x03#\x03#\x03#\x03#\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03' +
754
+ '$\x03$\x03%\x03%\x03%\x03%\x03%\x03%\x03&\x03&\x03&\x03&\x03&\x03&\x03' +
755
+ "'\x03'\x03'\x03'\x03'\x03'\x03(\x03(\x03(\x05(\u01CC\n(\x03(\x03" +
756
+ '(\x05(\u01D0\n(\x03(\x05(\u01D3\n(\x05(\u01D5\n(\x03(\x03(\x03)\x03)\x07' +
757
+ ')\u01DB\n)\f)\x0E)\u01DE\v)\x03*\x03*\x03*\x03*\x03*\x05*\u01E5\n*\x03' +
758
+ '*\x03*\x05*\u01E9\n*\x03+\x03+\x03+\x03+\x03+\x05+\u01F0\n+\x03+\x03+' +
759
+ '\x05+\u01F4\n+\x03,\x03,\x07,\u01F8\n,\f,\x0E,\u01FB\v,\x03,\x06,\u01FE' +
760
+ '\n,\r,\x0E,\u01FF\x05,\u0202\n,\x03-\x03-\x03-\x06-\u0207\n-\r-\x0E-\u0208' +
761
+ '\x03.\x03.\x03.\x06.\u020E\n.\r.\x0E.\u020F\x03/\x03/\x03/\x06/\u0215' +
762
+ '\n/\r/\x0E/\u0216\x030\x030\x050\u021B\n0\x031\x031\x051\u021F\n1\x03' +
763
+ '1\x031\x032\x032\x033\x033\x033\x033\x034\x034\x035\x035\x035\x036\x03' +
764
+ '6\x036\x037\x037\x038\x038\x039\x039\x03:\x03:\x03:\x03;\x03;\x03<\x03' +
765
+ '<\x03<\x03=\x03=\x03=\x03>\x03>\x03?\x03?\x03@\x03@\x03A\x03A\x03A\x03' +
766
+ 'B\x03B\x03B\x03C\x03C\x03D\x03D\x03E\x03E\x03F\x03F\x03G\x03G\x03G\x03' +
767
+ 'H\x03H\x03I\x03I\x03I\x03J\x03J\x03J\x03K\x03K\x03L\x03L\x03M\x03M\x03' +
768
+ 'M\x03N\x03N\x03N\x03O\x03O\x03O\x03P\x03P\x03P\x03Q\x03Q\x03Q\x03R\x03' +
769
+ 'R\x03S\x03S\x03S\x03T\x03T\x03T\x03U\x03U\x03U\x03V\x03V\x03V\x03W\x03' +
770
+ 'W\x03W\x03X\x03X\x03X\x03Y\x03Y\x03Y\x03Z\x03Z\x03Z\x03[\x03[\x03[\x03' +
771
+ '\\\x03\\\x03\\\x03]\x03]\x03]\x03]\x03^\x03^\x03^\x03^\x03_\x03_\x03_' +
772
+ '\x03_\x03`\x03`\x03`\x03`\x03a\x03a\x03a\x05a\u02A7\na\x03a\x03a\x03b' +
773
+ '\x03b\x03c\x03c\x03c\x07c\u02B0\nc\fc\x0Ec\u02B3\vc\x03c\x03c\x03c\x03' +
774
+ 'c\x07c\u02B9\nc\fc\x0Ec\u02BC\vc\x03c\x05c\u02BF\nc\x03d\x03d\x03d\x03' +
775
+ 'd\x03d\x07d\u02C6\nd\fd\x0Ed\u02C9\vd\x03d\x03d\x03d\x03d\x03d\x03d\x03' +
776
+ 'd\x03d\x07d\u02D3\nd\fd\x0Ed\u02D6\vd\x03d\x03d\x03d\x05d\u02DB\nd\x03' +
777
+ 'e\x03e\x05e\u02DF\ne\x03f\x03f\x03g\x03g\x03g\x03g\x05g\u02E7\ng\x03h' +
778
+ '\x03h\x03i\x03i\x03j\x03j\x03k\x03k\x03l\x03l\x03m\x05m\u02F4\nm\x03m' +
779
+ '\x03m\x03m\x03m\x05m\u02FA\nm\x03n\x03n\x05n\u02FE\nn\x03n\x03n\x03o\x06' +
780
+ 'o\u0303\no\ro\x0Eo\u0304\x03p\x03p\x06p\u0309\np\rp\x0Ep\u030A\x03q\x03' +
781
+ 'q\x05q\u030F\nq\x03q\x06q\u0312\nq\rq\x0Eq\u0313\x03r\x03r\x03r\x07r\u0319' +
782
+ '\nr\fr\x0Er\u031C\vr\x03r\x03r\x03r\x03r\x07r\u0322\nr\fr\x0Er\u0325\v' +
783
+ 'r\x03r\x05r\u0328\nr\x03s\x03s\x03s\x03s\x03s\x07s\u032F\ns\fs\x0Es\u0332' +
784
+ '\vs\x03s\x03s\x03s\x03s\x03s\x03s\x03s\x03s\x07s\u033C\ns\fs\x0Es\u033F' +
785
+ '\vs\x03s\x03s\x03s\x05s\u0344\ns\x03t\x03t\x05t\u0348\nt\x03u\x05u\u034B' +
786
+ '\nu\x03v\x05v\u034E\nv\x03w\x05w\u0351\nw\x03x\x03x\x03x\x03y\x06y\u0357' +
787
+ '\ny\ry\x0Ey\u0358\x03z\x03z\x07z\u035D\nz\fz\x0Ez\u0360\vz\x03{\x03{\x05' +
788
+ '{\u0364\n{\x03{\x05{\u0367\n{\x03{\x03{\x05{\u036B\n{\x03|\x05|\u036E' +
789
+ '\n|\x03}\x03}\x05}\u0372\n}\x06\u02C7\u02D4\u0330\u033D\x02\x02~\x03\x02' +
790
+ '\x03\x05\x02\x04\x07\x02\x05\t\x02\x06\v\x02\x07\r\x02\b\x0F\x02\t\x11' +
791
+ '\x02\n\x13\x02\v\x15\x02\f\x17\x02\r\x19\x02\x0E\x1B\x02\x0F\x1D\x02\x10' +
792
+ "\x1F\x02\x11!\x02\x12#\x02\x13%\x02\x14'\x02\x15)\x02\x16+\x02\x17-\x02" +
793
+ '\x18/\x02\x191\x02\x1A3\x02\x1B5\x02\x1C7\x02\x1D9\x02\x1E;\x02\x1F=\x02' +
794
+ ' ?\x02!A\x02"C\x02#E\x02$G\x02%I\x02&K\x02\'M\x02(O\x02)Q\x02*S\x02+' +
795
+ 'U\x02,W\x02-Y\x02.[\x02/]\x020_\x021a\x022c\x023e\x024g\x025i\x026k\x02' +
796
+ '7m\x028o\x029q\x02:s\x02;u\x02<w\x02=y\x02>{\x02?}\x02@\x7F\x02A\x81\x02' +
797
+ 'B\x83\x02C\x85\x02D\x87\x02E\x89\x02F\x8B\x02G\x8D\x02H\x8F\x02I\x91\x02' +
798
+ 'J\x93\x02K\x95\x02L\x97\x02M\x99\x02N\x9B\x02O\x9D\x02P\x9F\x02Q\xA1\x02' +
799
+ 'R\xA3\x02S\xA5\x02T\xA7\x02U\xA9\x02V\xAB\x02W\xAD\x02X\xAF\x02Y\xB1\x02' +
800
+ 'Z\xB3\x02[\xB5\x02\\\xB7\x02]\xB9\x02^\xBB\x02_\xBD\x02`\xBF\x02a\xC1' +
801
+ '\x02b\xC3\x02c\xC5\x02\x02\xC7\x02\x02\xC9\x02\x02\xCB\x02\x02\xCD\x02' +
802
+ '\x02\xCF\x02\x02\xD1\x02\x02\xD3\x02\x02\xD5\x02\x02\xD7\x02\x02\xD9\x02' +
803
+ '\x02\xDB\x02\x02\xDD\x02\x02\xDF\x02\x02\xE1\x02\x02\xE3\x02\x02\xE5\x02' +
804
+ '\x02\xE7\x02\x02\xE9\x02\x02\xEB\x02\x02\xED\x02\x02\xEF\x02\x02\xF1\x02' +
805
+ '\x02\xF3\x02\x02\xF5\x02\x02\xF7\x02\x02\xF9\x02\x02\x03\x02\x1B\b\x02' +
806
+ 'HHTTWWhhttww\x04\x02HHhh\x04\x02TTtt\x04\x02DDdd\x04\x02QQqq\x04\x02Z' +
807
+ 'Zzz\x04\x02LLll\x06\x02\f\f\x0E\x0F))^^\x06\x02\f\f\x0E\x0F$$^^\x03\x02' +
808
+ '^^\x03\x023;\x03\x022;\x03\x0229\x05\x022;CHch\x03\x0223\x04\x02GGgg\x04' +
809
+ '\x02--//\x07\x02\x02\v\r\x0E\x10(*]_\x81\x07\x02\x02\v\r\x0E\x10#%]_\x81' +
810
+ '\x04\x02\x02]_\x81\x03\x02\x02\x81\x04\x02\v\v""\x04\x02\f\f\x0E\x0F' +
811
+ '\u0129\x02C\\aac|\xAC\xAC\xB7\xB7\xBC\xBC\xC2\xD8\xDA\xF8\xFA\u0243\u0252' +
812
+ '\u02C3\u02C8\u02D3\u02E2\u02E6\u02F0\u02F0\u037C\u037C\u0388\u0388\u038A' +
813
+ '\u038C\u038E\u038E\u0390\u03A3\u03A5\u03D0\u03D2\u03F7\u03F9\u0483\u048C' +
814
+ '\u04D0\u04D2\u04FB\u0502\u0511\u0533\u0558\u055B\u055B\u0563\u0589\u05D2' +
815
+ '\u05EC\u05F2\u05F4\u0623\u063C\u0642\u064C\u0670\u0671\u0673\u06D5\u06D7' +
816
+ '\u06D7\u06E7\u06E8\u06F0\u06F1\u06FC\u06FE\u0701\u0701\u0712\u0712\u0714' +
817
+ '\u0731\u074F\u076F\u0782\u07A7\u07B3\u07B3\u0906\u093B\u093F\u093F\u0952' +
818
+ '\u0952\u095A\u0963\u097F\u097F\u0987\u098E\u0991\u0992\u0995\u09AA\u09AC' +
819
+ '\u09B2\u09B4\u09B4\u09B8\u09BB\u09BF\u09BF\u09D0\u09D0\u09DE\u09DF\u09E1' +
820
+ '\u09E3\u09F2\u09F3\u0A07\u0A0C\u0A11\u0A12\u0A15\u0A2A\u0A2C\u0A32\u0A34' +
821
+ '\u0A35\u0A37\u0A38\u0A3A\u0A3B\u0A5B\u0A5E\u0A60\u0A60\u0A74\u0A76\u0A87' +
822
+ '\u0A8F\u0A91\u0A93\u0A95\u0AAA\u0AAC\u0AB2\u0AB4\u0AB5\u0AB7\u0ABB\u0ABF' +
823
+ '\u0ABF\u0AD2\u0AD2\u0AE2\u0AE3\u0B07\u0B0E\u0B11\u0B12\u0B15\u0B2A\u0B2C' +
824
+ '\u0B32\u0B34\u0B35\u0B37\u0B3B\u0B3F\u0B3F\u0B5E\u0B5F\u0B61\u0B63\u0B73' +
825
+ '\u0B73\u0B85\u0B85\u0B87\u0B8C\u0B90\u0B92\u0B94\u0B97\u0B9B\u0B9C\u0B9E' +
826
+ '\u0B9E\u0BA0\u0BA1\u0BA5\u0BA6\u0BAA\u0BAC\u0BB0\u0BBB\u0C07\u0C0E\u0C10' +
827
+ '\u0C12\u0C14\u0C2A\u0C2C\u0C35\u0C37\u0C3B\u0C62\u0C63\u0C87\u0C8E\u0C90' +
828
+ '\u0C92\u0C94\u0CAA\u0CAC\u0CB5\u0CB7\u0CBB\u0CBF\u0CBF\u0CE0\u0CE0\u0CE2' +
829
+ '\u0CE3\u0D07\u0D0E\u0D10\u0D12\u0D14\u0D2A\u0D2C\u0D3B\u0D62\u0D63\u0D87' +
830
+ '\u0D98\u0D9C\u0DB3\u0DB5\u0DBD\u0DBF\u0DBF\u0DC2\u0DC8\u0E03\u0E32\u0E34' +
831
+ '\u0E35\u0E42\u0E48\u0E83\u0E84\u0E86\u0E86\u0E89\u0E8A\u0E8C\u0E8C\u0E8F' +
832
+ '\u0E8F\u0E96\u0E99\u0E9B\u0EA1\u0EA3\u0EA5\u0EA7\u0EA7\u0EA9\u0EA9\u0EAC' +
833
+ '\u0EAD\u0EAF\u0EB2\u0EB4\u0EB5\u0EBF\u0EBF\u0EC2\u0EC6\u0EC8\u0EC8\u0EDE' +
834
+ '\u0EDF\u0F02\u0F02\u0F42\u0F49\u0F4B\u0F6C\u0F8A\u0F8D\u1002\u1023\u1025' +
835
+ '\u1029\u102B\u102C\u1052\u1057\u10A2\u10C7\u10D2\u10FC\u10FE\u10FE\u1102' +
836
+ '\u115B\u1161\u11A4\u11AA\u11FB\u1202\u124A\u124C\u124F\u1252\u1258\u125A' +
837
+ '\u125A\u125C\u125F\u1262\u128A\u128C\u128F\u1292\u12B2\u12B4\u12B7\u12BA' +
838
+ '\u12C0\u12C2\u12C2\u12C4\u12C7\u12CA\u12D8\u12DA\u1312\u1314\u1317\u131A' +
839
+ '\u135C\u1382\u1391\u13A2\u13F6\u1403\u166E\u1671\u1678\u1683\u169C\u16A2' +
840
+ '\u16EC\u16F0\u16F2\u1702\u170E\u1710\u1713\u1722\u1733\u1742\u1753\u1762' +
841
+ '\u176E\u1770\u1772\u1782\u17B5\u17D9\u17D9\u17DE\u17DE\u1822\u1879\u1882' +
842
+ '\u18AA\u1902\u191E\u1952\u196F\u1972\u1976\u1982\u19AB\u19C3\u19C9\u1A02' +
843
+ '\u1A18\u1D02\u1DC1\u1E02\u1E9D\u1EA2\u1EFB\u1F02\u1F17\u1F1A\u1F1F\u1F22' +
844
+ '\u1F47\u1F4A\u1F4F\u1F52\u1F59\u1F5B\u1F5B\u1F5D\u1F5D\u1F5F\u1F5F\u1F61' +
845
+ '\u1F7F\u1F82\u1FB6\u1FB8\u1FBE\u1FC0\u1FC0\u1FC4\u1FC6\u1FC8\u1FCE\u1FD2' +
846
+ '\u1FD5\u1FD8\u1FDD\u1FE2\u1FEE\u1FF4\u1FF6\u1FF8\u1FFE\u2073\u2073\u2081' +
847
+ '\u2081\u2092\u2096\u2104\u2104\u2109\u2109\u210C\u2115\u2117\u2117\u211A' +
848
+ '\u211F\u2126\u2126\u2128\u2128\u212A\u212A\u212C\u2133\u2135\u213B\u213E' +
849
+ '\u2141\u2147\u214B\u2162\u2185\u2C02\u2C30\u2C32\u2C60\u2C82\u2CE6\u2D02' +
850
+ '\u2D27\u2D32\u2D67\u2D71\u2D71\u2D82\u2D98\u2DA2\u2DA8\u2DAA\u2DB0\u2DB2' +
851
+ '\u2DB8\u2DBA\u2DC0\u2DC2\u2DC8\u2DCA\u2DD0\u2DD2\u2DD8\u2DDA\u2DE0\u3007' +
852
+ '\u3009\u3023\u302B\u3033\u3037\u303A\u303E\u3043\u3098\u309D\u30A1\u30A3' +
853
+ '\u30FC\u30FE\u3101\u3107\u312E\u3133\u3190\u31A2\u31B9\u31F2\u3201\u3402' +
854
+ '\u4DB7\u4E02\u9FBD\uA002\uA48E\uA802\uA803\uA805\uA807\uA809\uA80C\uA80E' +
855
+ '\uA824\uAC02\uD7A5\uF902\uFA2F\uFA32\uFA6C\uFA72\uFADB\uFB02\uFB08\uFB15' +
856
+ '\uFB19\uFB1F\uFB1F\uFB21\uFB2A\uFB2C\uFB38\uFB3A\uFB3E\uFB40\uFB40\uFB42' +
857
+ '\uFB43\uFB45\uFB46\uFB48\uFBB3\uFBD5\uFD3F\uFD52\uFD91\uFD94\uFDC9\uFDF2' +
858
+ '\uFDFD\uFE72\uFE76\uFE78\uFEFE\uFF23\uFF3C\uFF43\uFF5C\uFF68\uFFC0\uFFC4' +
859
+ '\uFFC9\uFFCC\uFFD1\uFFD4\uFFD9\uFFDC\uFFDE\x96\x022;\u0302\u0371\u0485' +
860
+ '\u0488\u0593\u05BB\u05BD\u05BF\u05C1\u05C1\u05C3\u05C4\u05C6\u05C7\u05C9' +
861
+ '\u05C9\u0612\u0617\u064D\u0660\u0662\u066B\u0672\u0672\u06D8\u06DE\u06E1' +
862
+ '\u06E6\u06E9\u06EA\u06EC\u06EF\u06F2\u06FB\u0713\u0713\u0732\u074C\u07A8' +
863
+ '\u07B2\u0903\u0905\u093E\u093E\u0940\u094F\u0953\u0956\u0964\u0965\u0968' +
864
+ '\u0971\u0983\u0985\u09BE\u09BE\u09C0\u09C6\u09C9\u09CA\u09CD\u09CF\u09D9' +
865
+ '\u09D9\u09E4\u09E5\u09E8\u09F1\u0A03\u0A05\u0A3E\u0A3E\u0A40\u0A44\u0A49' +
866
+ '\u0A4A\u0A4D\u0A4F\u0A68\u0A73\u0A83\u0A85\u0ABE\u0ABE\u0AC0\u0AC7\u0AC9' +
867
+ '\u0ACB\u0ACD\u0ACF\u0AE4\u0AE5\u0AE8\u0AF1\u0B03\u0B05\u0B3E\u0B3E\u0B40' +
868
+ '\u0B45\u0B49\u0B4A\u0B4D\u0B4F\u0B58\u0B59\u0B68\u0B71\u0B84\u0B84\u0BC0' +
869
+ '\u0BC4\u0BC8\u0BCA\u0BCC\u0BCF\u0BD9\u0BD9\u0BE8\u0BF1\u0C03\u0C05\u0C40' +
870
+ '\u0C46\u0C48\u0C4A\u0C4C\u0C4F\u0C57\u0C58\u0C68\u0C71\u0C84\u0C85\u0CBE' +
871
+ '\u0CBE\u0CC0\u0CC6\u0CC8\u0CCA\u0CCC\u0CCF\u0CD7\u0CD8\u0CE8\u0CF1\u0D04' +
872
+ '\u0D05\u0D40\u0D45\u0D48\u0D4A\u0D4C\u0D4F\u0D59\u0D59\u0D68\u0D71\u0D84' +
873
+ '\u0D85\u0DCC\u0DCC\u0DD1\u0DD6\u0DD8\u0DD8\u0DDA\u0DE1\u0DF4\u0DF5\u0E33' +
874
+ '\u0E33\u0E36\u0E3C\u0E49\u0E50\u0E52\u0E5B\u0EB3\u0EB3\u0EB6\u0EBB\u0EBD' +
875
+ '\u0EBE\u0ECA\u0ECF\u0ED2\u0EDB\u0F1A\u0F1B\u0F22\u0F2B\u0F37\u0F37\u0F39' +
876
+ '\u0F39\u0F3B\u0F3B\u0F40\u0F41\u0F73\u0F86\u0F88\u0F89\u0F92\u0F99\u0F9B' +
877
+ '\u0FBE\u0FC8\u0FC8\u102E\u1034\u1038\u103B\u1042\u104B\u1058\u105B\u1361' +
878
+ '\u1361\u136B\u1373\u1714\u1716\u1734\u1736\u1754\u1755\u1774\u1775\u17B8' +
879
+ '\u17D5\u17DF\u17DF\u17E2\u17EB\u180D\u180F\u1812\u181B\u18AB\u18AB\u1922' +
880
+ '\u192D\u1932\u193D\u1948\u1951\u19B2\u19C2\u19CA\u19CB\u19D2\u19DB\u1A19' +
881
+ '\u1A1D\u1DC2\u1DC5\u2041\u2042\u2056\u2056\u20D2\u20DE\u20E3\u20E3\u20E7' +
882
+ '\u20ED\u302C\u3031\u309B\u309C\uA804\uA804\uA808\uA808\uA80D\uA80D\uA825' +
883
+ '\uA829\uFB20\uFB20\uFE02\uFE11\uFE22\uFE25\uFE35\uFE36\uFE4F\uFE51\uFF12' +
884
+ '\uFF1B\uFF41\uFF41\x02\u0393\x02\x03\x03\x02\x02\x02\x02\x05\x03\x02\x02' +
885
+ '\x02\x02\x07\x03\x02\x02\x02\x02\t\x03\x02\x02\x02\x02\v\x03\x02\x02\x02' +
886
+ '\x02\r\x03\x02\x02\x02\x02\x0F\x03\x02\x02\x02\x02\x11\x03\x02\x02\x02' +
887
+ '\x02\x13\x03\x02\x02\x02\x02\x15\x03\x02\x02\x02\x02\x17\x03\x02\x02\x02' +
888
+ '\x02\x19\x03\x02\x02\x02\x02\x1B\x03\x02\x02\x02\x02\x1D\x03\x02\x02\x02' +
889
+ '\x02\x1F\x03\x02\x02\x02\x02!\x03\x02\x02\x02\x02#\x03\x02\x02\x02\x02' +
890
+ "%\x03\x02\x02\x02\x02'\x03\x02\x02\x02\x02)\x03\x02\x02\x02\x02+\x03" +
891
+ '\x02\x02\x02\x02-\x03\x02\x02\x02\x02/\x03\x02\x02\x02\x021\x03\x02\x02' +
892
+ '\x02\x023\x03\x02\x02\x02\x025\x03\x02\x02\x02\x027\x03\x02\x02\x02\x02' +
893
+ '9\x03\x02\x02\x02\x02;\x03\x02\x02\x02\x02=\x03\x02\x02\x02\x02?\x03\x02' +
894
+ '\x02\x02\x02A\x03\x02\x02\x02\x02C\x03\x02\x02\x02\x02E\x03\x02\x02\x02' +
895
+ '\x02G\x03\x02\x02\x02\x02I\x03\x02\x02\x02\x02K\x03\x02\x02\x02\x02M\x03' +
896
+ '\x02\x02\x02\x02O\x03\x02\x02\x02\x02Q\x03\x02\x02\x02\x02S\x03\x02\x02' +
897
+ '\x02\x02U\x03\x02\x02\x02\x02W\x03\x02\x02\x02\x02Y\x03\x02\x02\x02\x02' +
898
+ '[\x03\x02\x02\x02\x02]\x03\x02\x02\x02\x02_\x03\x02\x02\x02\x02a\x03\x02' +
899
+ '\x02\x02\x02c\x03\x02\x02\x02\x02e\x03\x02\x02\x02\x02g\x03\x02\x02\x02' +
900
+ '\x02i\x03\x02\x02\x02\x02k\x03\x02\x02\x02\x02m\x03\x02\x02\x02\x02o\x03' +
901
+ '\x02\x02\x02\x02q\x03\x02\x02\x02\x02s\x03\x02\x02\x02\x02u\x03\x02\x02' +
902
+ '\x02\x02w\x03\x02\x02\x02\x02y\x03\x02\x02\x02\x02{\x03\x02\x02\x02\x02' +
903
+ '}\x03\x02\x02\x02\x02\x7F\x03\x02\x02\x02\x02\x81\x03\x02\x02\x02\x02' +
904
+ '\x83\x03\x02\x02\x02\x02\x85\x03\x02\x02\x02\x02\x87\x03\x02\x02\x02\x02' +
905
+ '\x89\x03\x02\x02\x02\x02\x8B\x03\x02\x02\x02\x02\x8D\x03\x02\x02\x02\x02' +
906
+ '\x8F\x03\x02\x02\x02\x02\x91\x03\x02\x02\x02\x02\x93\x03\x02\x02\x02\x02' +
907
+ '\x95\x03\x02\x02\x02\x02\x97\x03\x02\x02\x02\x02\x99\x03\x02\x02\x02\x02' +
908
+ '\x9B\x03\x02\x02\x02\x02\x9D\x03\x02\x02\x02\x02\x9F\x03\x02\x02\x02\x02' +
909
+ '\xA1\x03\x02\x02\x02\x02\xA3\x03\x02\x02\x02\x02\xA5\x03\x02\x02\x02\x02' +
910
+ '\xA7\x03\x02\x02\x02\x02\xA9\x03\x02\x02\x02\x02\xAB\x03\x02\x02\x02\x02' +
911
+ '\xAD\x03\x02\x02\x02\x02\xAF\x03\x02\x02\x02\x02\xB1\x03\x02\x02\x02\x02' +
912
+ '\xB3\x03\x02\x02\x02\x02\xB5\x03\x02\x02\x02\x02\xB7\x03\x02\x02\x02\x02' +
913
+ '\xB9\x03\x02\x02\x02\x02\xBB\x03\x02\x02\x02\x02\xBD\x03\x02\x02\x02\x02' +
914
+ '\xBF\x03\x02\x02\x02\x02\xC1\x03\x02\x02\x02\x02\xC3\x03\x02\x02\x02\x03' +
915
+ '\xFD\x03\x02\x02\x02\x05\u0102\x03\x02\x02\x02\x07\u0108\x03\x02\x02\x02' +
916
+ '\t\u010A\x03\x02\x02\x02\v\u010E\x03\x02\x02\x02\r\u0115\x03\x02\x02\x02' +
917
+ '\x0F\u011B\x03\x02\x02\x02\x11\u0120\x03\x02\x02\x02\x13\u0127\x03\x02' +
918
+ '\x02\x02\x15\u012A\x03\x02\x02\x02\x17\u0131\x03\x02\x02\x02\x19\u013A' +
919
+ '\x03\x02\x02\x02\x1B\u0141\x03\x02\x02\x02\x1D\u0144\x03\x02\x02\x02\x1F' +
920
+ '\u0149\x03\x02\x02\x02!\u014E\x03\x02\x02\x02#\u0154\x03\x02\x02\x02%' +
921
+ "\u0158\x03\x02\x02\x02'\u015B\x03\x02\x02\x02)\u015F\x03\x02\x02\x02" +
922
+ '+\u0167\x03\x02\x02\x02-\u016C\x03\x02\x02\x02/\u0173\x03\x02\x02\x02' +
923
+ '1\u017A\x03\x02\x02\x023\u017D\x03\x02\x02\x025\u0181\x03\x02\x02\x02' +
924
+ '7\u0185\x03\x02\x02\x029\u0188\x03\x02\x02\x02;\u018D\x03\x02\x02\x02' +
925
+ '=\u0192\x03\x02\x02\x02?\u0198\x03\x02\x02\x02A\u019E\x03\x02\x02\x02' +
926
+ 'C\u01A4\x03\x02\x02\x02E\u01A8\x03\x02\x02\x02G\u01AD\x03\x02\x02\x02' +
927
+ 'I\u01B6\x03\x02\x02\x02K\u01BC\x03\x02\x02\x02M\u01C2\x03\x02\x02\x02' +
928
+ 'O\u01D4\x03\x02\x02\x02Q\u01D8\x03\x02\x02\x02S\u01E4\x03\x02\x02\x02' +
929
+ 'U\u01EF\x03\x02\x02\x02W\u0201\x03\x02\x02\x02Y\u0203\x03\x02\x02\x02' +
930
+ '[\u020A\x03\x02\x02\x02]\u0211\x03\x02\x02\x02_\u021A\x03\x02\x02\x02' +
931
+ 'a\u021E\x03\x02\x02\x02c\u0222\x03\x02\x02\x02e\u0224\x03\x02\x02\x02' +
932
+ 'g\u0228\x03\x02\x02\x02i\u022A\x03\x02\x02\x02k\u022D\x03\x02\x02\x02' +
933
+ 'm\u0230\x03\x02\x02\x02o\u0232\x03\x02\x02\x02q\u0234\x03\x02\x02\x02' +
934
+ 's\u0236\x03\x02\x02\x02u\u0239\x03\x02\x02\x02w\u023B\x03\x02\x02\x02' +
935
+ 'y\u023E\x03\x02\x02\x02{\u0241\x03\x02\x02\x02}\u0243\x03\x02\x02\x02' +
936
+ '\x7F\u0245\x03\x02\x02\x02\x81\u0247\x03\x02\x02\x02\x83\u024A\x03\x02' +
937
+ '\x02\x02\x85\u024D\x03\x02\x02\x02\x87\u024F\x03\x02\x02\x02\x89\u0251' +
938
+ '\x03\x02\x02\x02\x8B\u0253\x03\x02\x02\x02\x8D\u0255\x03\x02\x02\x02\x8F' +
939
+ '\u0258\x03\x02\x02\x02\x91\u025A\x03\x02\x02\x02\x93\u025D\x03\x02\x02' +
940
+ '\x02\x95\u0260\x03\x02\x02\x02\x97\u0262\x03\x02\x02\x02\x99\u0264\x03' +
941
+ '\x02\x02\x02\x9B\u0267\x03\x02\x02\x02\x9D\u026A\x03\x02\x02\x02\x9F\u026D' +
942
+ '\x03\x02\x02\x02\xA1\u0270\x03\x02\x02\x02\xA3\u0273\x03\x02\x02\x02\xA5' +
943
+ '\u0275\x03\x02\x02\x02\xA7\u0278\x03\x02\x02\x02\xA9\u027B\x03\x02\x02' +
944
+ '\x02\xAB\u027E\x03\x02\x02\x02\xAD\u0281\x03\x02\x02\x02\xAF\u0284\x03' +
945
+ '\x02\x02\x02\xB1\u0287\x03\x02\x02\x02\xB3\u028A\x03\x02\x02\x02\xB5\u028D' +
946
+ '\x03\x02\x02\x02\xB7\u0290\x03\x02\x02\x02\xB9\u0293\x03\x02\x02\x02\xBB' +
947
+ '\u0297\x03\x02\x02\x02\xBD\u029B\x03\x02\x02\x02\xBF\u029F\x03\x02\x02' +
948
+ '\x02\xC1\u02A6\x03\x02\x02\x02\xC3\u02AA\x03\x02\x02\x02\xC5\u02BE\x03' +
949
+ '\x02\x02\x02\xC7\u02DA\x03\x02\x02\x02\xC9\u02DE\x03\x02\x02\x02\xCB\u02E0' +
950
+ '\x03\x02\x02\x02\xCD\u02E6\x03\x02\x02\x02\xCF\u02E8\x03\x02\x02\x02\xD1' +
951
+ '\u02EA\x03\x02\x02\x02\xD3\u02EC\x03\x02\x02\x02\xD5\u02EE\x03\x02\x02' +
952
+ '\x02\xD7\u02F0\x03\x02\x02\x02\xD9\u02F9\x03\x02\x02\x02\xDB\u02FD\x03' +
953
+ '\x02\x02\x02\xDD\u0302\x03\x02\x02\x02\xDF\u0306\x03\x02\x02\x02\xE1\u030C' +
954
+ '\x03\x02\x02\x02\xE3\u0327\x03\x02\x02\x02\xE5\u0343\x03\x02\x02\x02\xE7' +
955
+ '\u0347\x03\x02\x02\x02\xE9\u034A\x03\x02\x02\x02\xEB\u034D\x03\x02\x02' +
956
+ '\x02\xED\u0350\x03\x02\x02\x02\xEF\u0352\x03\x02\x02\x02\xF1\u0356\x03' +
957
+ '\x02\x02\x02\xF3\u035A\x03\x02\x02\x02\xF5\u0361\x03\x02\x02\x02\xF7\u036D' +
958
+ '\x03\x02\x02\x02\xF9\u0371\x03\x02\x02\x02\xFB\xFE\x05S*\x02\xFC\xFE\x05' +
959
+ 'U+\x02\xFD\xFB\x03\x02\x02\x02\xFD\xFC\x03\x02\x02\x02\xFE\x04\x03\x02' +
960
+ '\x02\x02\xFF\u0103\x05\x07\x04\x02\u0100\u0103\x05_0\x02\u0101\u0103\x05' +
961
+ 'a1\x02\u0102\xFF\x03\x02\x02\x02\u0102\u0100\x03\x02\x02\x02\u0102\u0101' +
962
+ '\x03\x02\x02\x02\u0103\x06\x03\x02\x02\x02\u0104\u0109\x05W,\x02\u0105' +
963
+ '\u0109\x05Y-\x02\u0106\u0109\x05[.\x02\u0107\u0109\x05]/\x02\u0108\u0104' +
964
+ '\x03\x02\x02\x02\u0108\u0105\x03\x02\x02\x02\u0108\u0106\x03\x02\x02\x02' +
965
+ '\u0108\u0107\x03\x02\x02\x02\u0109\b\x03\x02\x02\x02\u010A\u010B\x07f' +
966
+ '\x02\x02\u010B\u010C\x07g\x02\x02\u010C\u010D\x07h\x02\x02\u010D\n\x03' +
967
+ '\x02\x02\x02\u010E\u010F\x07t\x02\x02\u010F\u0110\x07g\x02\x02\u0110\u0111' +
968
+ '\x07v\x02\x02\u0111\u0112\x07w\x02\x02\u0112\u0113\x07t\x02\x02\u0113' +
969
+ '\u0114\x07p\x02\x02\u0114\f\x03\x02\x02\x02\u0115\u0116\x07t\x02\x02\u0116' +
970
+ '\u0117\x07c\x02\x02\u0117\u0118\x07k\x02\x02\u0118\u0119\x07u\x02\x02' +
971
+ '\u0119\u011A\x07g\x02\x02\u011A\x0E\x03\x02\x02\x02\u011B\u011C\x07h\x02' +
972
+ '\x02\u011C\u011D\x07t\x02\x02\u011D\u011E\x07q\x02\x02\u011E\u011F\x07' +
973
+ 'o\x02\x02\u011F\x10\x03\x02\x02\x02\u0120\u0121\x07k\x02\x02\u0121\u0122' +
974
+ '\x07o\x02\x02\u0122\u0123\x07r\x02\x02\u0123\u0124\x07q\x02\x02\u0124' +
975
+ '\u0125\x07t\x02\x02\u0125\u0126\x07v\x02\x02\u0126\x12\x03\x02\x02\x02' +
976
+ '\u0127\u0128\x07c\x02\x02\u0128\u0129\x07u\x02\x02\u0129\x14\x03\x02\x02' +
977
+ '\x02\u012A\u012B\x07i\x02\x02\u012B\u012C\x07n\x02\x02\u012C\u012D\x07' +
978
+ 'q\x02\x02\u012D\u012E\x07d\x02\x02\u012E\u012F\x07c\x02\x02\u012F\u0130' +
979
+ '\x07n\x02\x02\u0130\x16\x03\x02\x02\x02\u0131\u0132\x07p\x02\x02\u0132' +
980
+ '\u0133\x07q\x02\x02\u0133\u0134\x07p\x02\x02\u0134\u0135\x07n\x02\x02' +
981
+ '\u0135\u0136\x07q\x02\x02\u0136\u0137\x07e\x02\x02\u0137';
982
+ Python3Lexer._serializedATNSegment1 = '\u0138\x07c\x02\x02\u0138\u0139\x07n\x02\x02\u0139\x18\x03\x02\x02\x02' +
983
+ '\u013A\u013B\x07c\x02\x02\u013B\u013C\x07u\x02\x02\u013C\u013D\x07u\x02' +
984
+ '\x02\u013D\u013E\x07g\x02\x02\u013E\u013F\x07t\x02\x02\u013F\u0140\x07' +
985
+ 'v\x02\x02\u0140\x1A\x03\x02\x02\x02\u0141\u0142\x07k\x02\x02\u0142\u0143' +
986
+ '\x07h\x02\x02\u0143\x1C\x03\x02\x02\x02\u0144\u0145\x07g\x02\x02\u0145' +
987
+ '\u0146\x07n\x02\x02\u0146\u0147\x07k\x02\x02\u0147\u0148\x07h\x02\x02' +
988
+ '\u0148\x1E\x03\x02\x02\x02\u0149\u014A\x07g\x02\x02\u014A\u014B\x07n\x02' +
989
+ '\x02\u014B\u014C\x07u\x02\x02\u014C\u014D\x07g\x02\x02\u014D \x03\x02' +
990
+ '\x02\x02\u014E\u014F\x07y\x02\x02\u014F\u0150\x07j\x02\x02\u0150\u0151' +
991
+ '\x07k\x02\x02\u0151\u0152\x07n\x02\x02\u0152\u0153\x07g\x02\x02\u0153' +
992
+ '"\x03\x02\x02\x02\u0154\u0155\x07h\x02\x02\u0155\u0156\x07q\x02\x02\u0156' +
993
+ '\u0157\x07t\x02\x02\u0157$\x03\x02\x02\x02\u0158\u0159\x07k\x02\x02\u0159' +
994
+ '\u015A\x07p\x02\x02\u015A&\x03\x02\x02\x02\u015B\u015C\x07v\x02\x02\u015C' +
995
+ '\u015D\x07t\x02\x02\u015D\u015E\x07{\x02\x02\u015E(\x03\x02\x02\x02\u015F' +
996
+ '\u0160\x07h\x02\x02\u0160\u0161\x07k\x02\x02\u0161\u0162\x07p\x02\x02' +
997
+ '\u0162\u0163\x07c\x02\x02\u0163\u0164\x07n\x02\x02\u0164\u0165\x07n\x02' +
998
+ '\x02\u0165\u0166\x07{\x02\x02\u0166*\x03\x02\x02\x02\u0167\u0168\x07y' +
999
+ '\x02\x02\u0168\u0169\x07k\x02\x02\u0169\u016A\x07v\x02\x02\u016A\u016B' +
1000
+ '\x07j\x02\x02\u016B,\x03\x02\x02\x02\u016C\u016D\x07g\x02\x02\u016D\u016E' +
1001
+ '\x07z\x02\x02\u016E\u016F\x07e\x02\x02\u016F\u0170\x07g\x02\x02\u0170' +
1002
+ '\u0171\x07r\x02\x02\u0171\u0172\x07v\x02\x02\u0172.\x03\x02\x02\x02\u0173' +
1003
+ '\u0174\x07n\x02\x02\u0174\u0175\x07c\x02\x02\u0175\u0176\x07o\x02\x02' +
1004
+ '\u0176\u0177\x07d\x02\x02\u0177\u0178\x07f\x02\x02\u0178\u0179\x07c\x02' +
1005
+ '\x02\u01790\x03\x02\x02\x02\u017A\u017B\x07q\x02\x02\u017B\u017C\x07t' +
1006
+ '\x02\x02\u017C2\x03\x02\x02\x02\u017D\u017E\x07c\x02\x02\u017E\u017F\x07' +
1007
+ 'p\x02\x02\u017F\u0180\x07f\x02\x02\u01804\x03\x02\x02\x02\u0181\u0182' +
1008
+ '\x07p\x02\x02\u0182\u0183\x07q\x02\x02\u0183\u0184\x07v\x02\x02\u0184' +
1009
+ '6\x03\x02\x02\x02\u0185\u0186\x07k\x02\x02\u0186\u0187\x07u\x02\x02\u0187' +
1010
+ '8\x03\x02\x02\x02\u0188\u0189\x07P\x02\x02\u0189\u018A\x07q\x02\x02\u018A' +
1011
+ '\u018B\x07p\x02\x02\u018B\u018C\x07g\x02\x02\u018C:\x03\x02\x02\x02\u018D' +
1012
+ '\u018E\x07V\x02\x02\u018E\u018F\x07t\x02\x02\u018F\u0190\x07w\x02\x02' +
1013
+ '\u0190\u0191\x07g\x02\x02\u0191<\x03\x02\x02\x02\u0192\u0193\x07H\x02' +
1014
+ '\x02\u0193\u0194\x07c\x02\x02\u0194\u0195\x07n\x02\x02\u0195\u0196\x07' +
1015
+ 'u\x02\x02\u0196\u0197\x07g\x02\x02\u0197>\x03\x02\x02\x02\u0198\u0199' +
1016
+ '\x07e\x02\x02\u0199\u019A\x07n\x02\x02\u019A\u019B\x07c\x02\x02\u019B' +
1017
+ '\u019C\x07u\x02\x02\u019C\u019D\x07u\x02\x02\u019D@\x03\x02\x02\x02\u019E' +
1018
+ '\u019F\x07{\x02\x02\u019F\u01A0\x07k\x02\x02\u01A0\u01A1\x07g\x02\x02' +
1019
+ '\u01A1\u01A2\x07n\x02\x02\u01A2\u01A3\x07f\x02\x02\u01A3B\x03\x02\x02' +
1020
+ '\x02\u01A4\u01A5\x07f\x02\x02\u01A5\u01A6\x07g\x02\x02\u01A6\u01A7\x07' +
1021
+ 'n\x02\x02\u01A7D\x03\x02\x02\x02\u01A8\u01A9\x07r\x02\x02\u01A9\u01AA' +
1022
+ '\x07c\x02\x02\u01AA\u01AB\x07u\x02\x02\u01AB\u01AC\x07u\x02\x02\u01AC' +
1023
+ 'F\x03\x02\x02\x02\u01AD\u01AE\x07e\x02\x02\u01AE\u01AF\x07q\x02\x02\u01AF' +
1024
+ '\u01B0\x07p\x02\x02\u01B0\u01B1\x07v\x02\x02\u01B1\u01B2\x07k\x02\x02' +
1025
+ '\u01B2\u01B3\x07p\x02\x02\u01B3\u01B4\x07w\x02\x02\u01B4\u01B5\x07g\x02' +
1026
+ '\x02\u01B5H\x03\x02\x02\x02\u01B6\u01B7\x07d\x02\x02\u01B7\u01B8\x07t' +
1027
+ '\x02\x02\u01B8\u01B9\x07g\x02\x02\u01B9\u01BA\x07c\x02\x02\u01BA\u01BB' +
1028
+ '\x07m\x02\x02\u01BBJ\x03\x02\x02\x02\u01BC\u01BD\x07c\x02\x02\u01BD\u01BE' +
1029
+ '\x07u\x02\x02\u01BE\u01BF\x07{\x02\x02\u01BF\u01C0\x07p\x02\x02\u01C0' +
1030
+ '\u01C1\x07e\x02\x02\u01C1L\x03\x02\x02\x02\u01C2\u01C3\x07c\x02\x02\u01C3' +
1031
+ '\u01C4\x07y\x02\x02\u01C4\u01C5\x07c\x02\x02\u01C5\u01C6\x07k\x02\x02' +
1032
+ '\u01C6\u01C7\x07v\x02\x02\u01C7N\x03\x02\x02\x02\u01C8\u01C9\x06(\x02' +
1033
+ '\x02\u01C9\u01D5\x05\xF1y\x02\u01CA\u01CC\x07\x0F\x02\x02\u01CB\u01CA' +
1034
+ '\x03\x02\x02\x02\u01CB\u01CC\x03\x02\x02\x02\u01CC\u01CD\x03\x02\x02\x02' +
1035
+ '\u01CD\u01D0\x07\f\x02\x02\u01CE\u01D0\x07\x0F\x02\x02\u01CF\u01CB\x03' +
1036
+ '\x02\x02\x02\u01CF\u01CE\x03\x02\x02\x02\u01D0\u01D2\x03\x02\x02\x02\u01D1' +
1037
+ '\u01D3\x05\xF1y\x02\u01D2\u01D1\x03\x02\x02\x02\u01D2\u01D3\x03\x02\x02' +
1038
+ '\x02\u01D3\u01D5\x03\x02\x02\x02\u01D4\u01C8\x03\x02\x02\x02\u01D4\u01CF' +
1039
+ '\x03\x02\x02\x02\u01D5\u01D6\x03\x02\x02\x02\u01D6\u01D7\b(\x02\x02\u01D7' +
1040
+ 'P\x03\x02\x02\x02\u01D8\u01DC\x05\xF7|\x02\u01D9\u01DB\x05\xF9}\x02\u01DA' +
1041
+ '\u01D9\x03\x02\x02\x02\u01DB\u01DE\x03\x02\x02\x02\u01DC\u01DA\x03\x02' +
1042
+ '\x02\x02\u01DC\u01DD\x03\x02\x02\x02\u01DDR\x03\x02\x02\x02\u01DE\u01DC' +
1043
+ '\x03\x02\x02\x02\u01DF\u01E5\t\x02\x02\x02\u01E0\u01E1\t\x03\x02\x02\u01E1' +
1044
+ '\u01E5\t\x04\x02\x02\u01E2\u01E3\t\x04\x02\x02\u01E3\u01E5\t\x03\x02\x02' +
1045
+ '\u01E4\u01DF\x03\x02\x02\x02\u01E4\u01E0\x03\x02\x02\x02\u01E4\u01E2\x03' +
1046
+ '\x02\x02\x02\u01E4\u01E5\x03\x02\x02\x02\u01E5\u01E8\x03\x02\x02\x02\u01E6' +
1047
+ '\u01E9\x05\xC5c\x02\u01E7\u01E9\x05\xC7d\x02\u01E8\u01E6\x03\x02\x02\x02' +
1048
+ '\u01E8\u01E7\x03\x02\x02\x02\u01E9T\x03\x02\x02\x02\u01EA\u01F0\t\x05' +
1049
+ '\x02\x02\u01EB\u01EC\t\x05\x02\x02\u01EC\u01F0\t\x04\x02\x02\u01ED\u01EE' +
1050
+ '\t\x04\x02\x02\u01EE\u01F0\t\x05\x02\x02\u01EF\u01EA\x03\x02\x02\x02\u01EF' +
1051
+ '\u01EB\x03\x02\x02\x02\u01EF\u01ED\x03\x02\x02\x02\u01F0\u01F3\x03\x02' +
1052
+ '\x02\x02\u01F1\u01F4\x05\xE3r\x02\u01F2\u01F4\x05\xE5s\x02\u01F3\u01F1' +
1053
+ '\x03\x02\x02\x02\u01F3\u01F2\x03\x02\x02\x02\u01F4V\x03\x02\x02\x02\u01F5' +
1054
+ '\u01F9\x05\xCFh\x02\u01F6\u01F8\x05\xD1i\x02\u01F7\u01F6\x03\x02\x02\x02' +
1055
+ '\u01F8\u01FB\x03\x02\x02\x02\u01F9\u01F7\x03\x02\x02\x02\u01F9\u01FA\x03' +
1056
+ '\x02\x02\x02\u01FA\u0202\x03\x02\x02\x02\u01FB\u01F9\x03\x02\x02\x02\u01FC' +
1057
+ '\u01FE\x072\x02\x02\u01FD\u01FC\x03\x02\x02\x02\u01FE\u01FF\x03\x02\x02' +
1058
+ '\x02\u01FF\u01FD\x03\x02\x02\x02\u01FF\u0200\x03\x02\x02\x02\u0200\u0202' +
1059
+ '\x03\x02\x02\x02\u0201\u01F5\x03\x02\x02\x02\u0201\u01FD\x03\x02\x02\x02' +
1060
+ '\u0202X\x03\x02\x02\x02\u0203\u0204\x072\x02\x02\u0204\u0206\t\x06\x02' +
1061
+ '\x02\u0205\u0207\x05\xD3j\x02\u0206\u0205\x03\x02\x02\x02\u0207\u0208' +
1062
+ '\x03\x02\x02\x02\u0208\u0206\x03\x02\x02\x02\u0208\u0209\x03\x02\x02\x02' +
1063
+ '\u0209Z\x03\x02\x02\x02\u020A\u020B\x072\x02\x02\u020B\u020D\t\x07\x02' +
1064
+ '\x02\u020C\u020E\x05\xD5k\x02\u020D\u020C\x03\x02\x02\x02\u020E\u020F' +
1065
+ '\x03\x02\x02\x02\u020F\u020D\x03\x02\x02\x02\u020F\u0210\x03\x02\x02\x02' +
1066
+ '\u0210\\\x03\x02\x02\x02\u0211\u0212\x072\x02\x02\u0212\u0214\t\x05\x02' +
1067
+ '\x02\u0213\u0215\x05\xD7l\x02\u0214\u0213\x03\x02\x02\x02\u0215\u0216' +
1068
+ '\x03\x02\x02\x02\u0216\u0214\x03\x02\x02\x02\u0216\u0217\x03\x02\x02\x02' +
1069
+ '\u0217^\x03\x02\x02\x02\u0218\u021B\x05\xD9m\x02\u0219\u021B\x05\xDBn' +
1070
+ '\x02\u021A\u0218\x03\x02\x02\x02\u021A\u0219\x03\x02\x02\x02\u021B`\x03' +
1071
+ '\x02\x02\x02\u021C\u021F\x05_0\x02\u021D\u021F\x05\xDDo\x02\u021E\u021C' +
1072
+ '\x03\x02\x02\x02\u021E\u021D\x03\x02\x02\x02\u021F\u0220\x03\x02\x02\x02' +
1073
+ '\u0220\u0221\t\b\x02\x02\u0221b\x03\x02\x02\x02\u0222\u0223\x070\x02\x02' +
1074
+ '\u0223d\x03\x02\x02\x02\u0224\u0225\x070\x02\x02\u0225\u0226\x070\x02' +
1075
+ '\x02\u0226\u0227\x070\x02\x02\u0227f\x03\x02\x02\x02\u0228\u0229\x07,' +
1076
+ '\x02\x02\u0229h\x03\x02\x02\x02\u022A\u022B\x07*\x02\x02\u022B\u022C\b' +
1077
+ '5\x03\x02\u022Cj\x03\x02\x02\x02\u022D\u022E\x07+\x02\x02\u022E\u022F' +
1078
+ '\b6\x04\x02\u022Fl\x03\x02\x02\x02\u0230\u0231\x07.\x02\x02\u0231n\x03' +
1079
+ '\x02\x02\x02\u0232\u0233\x07<\x02\x02\u0233p\x03\x02\x02\x02\u0234\u0235' +
1080
+ '\x07=\x02\x02\u0235r\x03\x02\x02\x02\u0236\u0237\x07,\x02\x02\u0237\u0238' +
1081
+ '\x07,\x02\x02\u0238t\x03\x02\x02\x02\u0239\u023A\x07?\x02\x02\u023Av\x03' +
1082
+ '\x02\x02\x02\u023B\u023C\x07]\x02\x02\u023C\u023D\b<\x05\x02\u023Dx\x03' +
1083
+ '\x02\x02\x02\u023E\u023F\x07_\x02\x02\u023F\u0240\b=\x06\x02\u0240z\x03' +
1084
+ '\x02\x02\x02\u0241\u0242\x07~\x02\x02\u0242|\x03\x02\x02\x02\u0243\u0244' +
1085
+ '\x07`\x02\x02\u0244~\x03\x02\x02\x02\u0245\u0246\x07(\x02\x02\u0246\x80' +
1086
+ '\x03\x02\x02\x02\u0247\u0248\x07>\x02\x02\u0248\u0249\x07>\x02\x02\u0249' +
1087
+ '\x82\x03\x02\x02\x02\u024A\u024B\x07@\x02\x02\u024B\u024C\x07@\x02\x02' +
1088
+ '\u024C\x84\x03\x02\x02\x02\u024D\u024E\x07-\x02\x02\u024E\x86\x03\x02' +
1089
+ '\x02\x02\u024F\u0250\x07/\x02\x02\u0250\x88\x03\x02\x02\x02\u0251\u0252' +
1090
+ "\x071\x02\x02\u0252\x8A\x03\x02\x02\x02\u0253\u0254\x07'\x02\x02\u0254" +
1091
+ '\x8C\x03\x02\x02\x02\u0255\u0256\x071\x02\x02\u0256\u0257\x071\x02\x02' +
1092
+ '\u0257\x8E\x03\x02\x02\x02\u0258\u0259\x07\x80\x02\x02\u0259\x90\x03\x02' +
1093
+ '\x02\x02\u025A\u025B\x07}\x02\x02\u025B\u025C\bI\x07\x02\u025C\x92\x03' +
1094
+ '\x02\x02\x02\u025D\u025E\x07\x7F\x02\x02\u025E\u025F\bJ\b\x02\u025F\x94' +
1095
+ '\x03\x02\x02\x02\u0260\u0261\x07>\x02\x02\u0261\x96\x03\x02\x02\x02\u0262' +
1096
+ '\u0263\x07@\x02\x02\u0263\x98\x03\x02\x02\x02\u0264\u0265\x07?\x02\x02' +
1097
+ '\u0265\u0266\x07?\x02\x02\u0266\x9A\x03\x02\x02\x02\u0267\u0268\x07@\x02' +
1098
+ '\x02\u0268\u0269\x07?\x02\x02\u0269\x9C\x03\x02\x02\x02\u026A\u026B\x07' +
1099
+ '>\x02\x02\u026B\u026C\x07?\x02\x02\u026C\x9E\x03\x02\x02\x02\u026D\u026E' +
1100
+ '\x07>\x02\x02\u026E\u026F\x07@\x02\x02\u026F\xA0\x03\x02\x02\x02\u0270' +
1101
+ '\u0271\x07#\x02\x02\u0271\u0272\x07?\x02\x02\u0272\xA2\x03\x02\x02\x02' +
1102
+ '\u0273\u0274\x07B\x02\x02\u0274\xA4\x03\x02\x02\x02\u0275\u0276\x07/\x02' +
1103
+ '\x02\u0276\u0277\x07@\x02\x02\u0277\xA6\x03\x02\x02\x02\u0278\u0279\x07' +
1104
+ '-\x02\x02\u0279\u027A\x07?\x02\x02\u027A\xA8\x03\x02\x02\x02\u027B\u027C' +
1105
+ '\x07/\x02\x02\u027C\u027D\x07?\x02\x02\u027D\xAA\x03\x02\x02\x02\u027E' +
1106
+ '\u027F\x07,\x02\x02\u027F\u0280\x07?\x02\x02\u0280\xAC\x03\x02\x02\x02' +
1107
+ '\u0281\u0282\x07B\x02\x02\u0282\u0283\x07?\x02\x02\u0283\xAE\x03\x02\x02' +
1108
+ '\x02\u0284\u0285\x071\x02\x02\u0285\u0286\x07?\x02\x02\u0286\xB0\x03\x02' +
1109
+ "\x02\x02\u0287\u0288\x07'\x02\x02\u0288\u0289\x07?\x02\x02\u0289\xB2" +
1110
+ '\x03\x02\x02\x02\u028A\u028B\x07(\x02\x02\u028B\u028C\x07?\x02\x02\u028C' +
1111
+ '\xB4\x03\x02\x02\x02\u028D\u028E\x07~\x02\x02\u028E\u028F\x07?\x02\x02' +
1112
+ '\u028F\xB6\x03\x02\x02\x02\u0290\u0291\x07`\x02\x02\u0291\u0292\x07?\x02' +
1113
+ '\x02\u0292\xB8\x03\x02\x02\x02\u0293\u0294\x07>\x02\x02\u0294\u0295\x07' +
1114
+ '>\x02\x02\u0295\u0296\x07?\x02\x02\u0296\xBA\x03\x02\x02\x02\u0297\u0298' +
1115
+ '\x07@\x02\x02\u0298\u0299\x07@\x02\x02\u0299\u029A\x07?\x02\x02\u029A' +
1116
+ '\xBC\x03\x02\x02\x02\u029B\u029C\x07,\x02\x02\u029C\u029D\x07,\x02\x02' +
1117
+ '\u029D\u029E\x07?\x02\x02\u029E\xBE\x03\x02\x02\x02\u029F\u02A0\x071\x02' +
1118
+ '\x02\u02A0\u02A1\x071\x02\x02\u02A1\u02A2\x07?\x02\x02\u02A2\xC0\x03\x02' +
1119
+ '\x02\x02\u02A3\u02A7\x05\xF1y\x02\u02A4\u02A7\x05\xF3z\x02\u02A5\u02A7' +
1120
+ '\x05\xF5{\x02\u02A6\u02A3\x03\x02\x02\x02\u02A6\u02A4\x03\x02\x02\x02' +
1121
+ '\u02A6\u02A5\x03\x02\x02\x02\u02A7\u02A8\x03\x02\x02\x02\u02A8\u02A9\b' +
1122
+ 'a\t\x02\u02A9\xC2\x03\x02\x02\x02\u02AA\u02AB\v\x02\x02\x02\u02AB\xC4' +
1123
+ '\x03\x02\x02\x02\u02AC\u02B1\x07)\x02\x02\u02AD\u02B0\x05\xCDg\x02\u02AE' +
1124
+ '\u02B0\n\t\x02\x02\u02AF\u02AD\x03\x02\x02\x02\u02AF\u02AE\x03\x02\x02' +
1125
+ '\x02\u02B0\u02B3\x03\x02\x02\x02\u02B1\u02AF\x03\x02\x02\x02\u02B1\u02B2' +
1126
+ '\x03\x02\x02\x02\u02B2\u02B4\x03\x02\x02\x02\u02B3\u02B1\x03\x02\x02\x02' +
1127
+ '\u02B4\u02BF\x07)\x02\x02\u02B5\u02BA\x07$\x02\x02\u02B6\u02B9\x05\xCD' +
1128
+ 'g\x02\u02B7\u02B9\n\n\x02\x02\u02B8\u02B6\x03\x02\x02\x02\u02B8\u02B7' +
1129
+ '\x03\x02\x02\x02\u02B9\u02BC\x03\x02\x02\x02\u02BA\u02B8\x03\x02\x02\x02' +
1130
+ '\u02BA\u02BB\x03\x02\x02\x02\u02BB\u02BD\x03\x02\x02\x02\u02BC\u02BA\x03' +
1131
+ '\x02\x02\x02\u02BD\u02BF\x07$\x02\x02\u02BE\u02AC\x03\x02\x02\x02\u02BE' +
1132
+ '\u02B5\x03\x02\x02\x02\u02BF\xC6\x03\x02\x02\x02\u02C0\u02C1\x07)\x02' +
1133
+ '\x02\u02C1\u02C2\x07)\x02\x02\u02C2\u02C3\x07)\x02\x02\u02C3\u02C7\x03' +
1134
+ '\x02\x02\x02\u02C4\u02C6\x05\xC9e\x02\u02C5\u02C4\x03\x02\x02\x02\u02C6' +
1135
+ '\u02C9\x03\x02\x02\x02\u02C7\u02C8\x03\x02\x02\x02\u02C7\u02C5\x03\x02' +
1136
+ '\x02\x02\u02C8\u02CA\x03\x02\x02\x02\u02C9\u02C7\x03\x02\x02\x02\u02CA' +
1137
+ '\u02CB\x07)\x02\x02\u02CB\u02CC\x07)\x02\x02\u02CC\u02DB\x07)\x02\x02' +
1138
+ '\u02CD\u02CE\x07$\x02\x02\u02CE\u02CF\x07$\x02\x02\u02CF\u02D0\x07$\x02' +
1139
+ '\x02\u02D0\u02D4\x03\x02\x02\x02\u02D1\u02D3\x05\xC9e\x02\u02D2\u02D1' +
1140
+ '\x03\x02\x02\x02\u02D3\u02D6\x03\x02\x02\x02\u02D4\u02D5\x03\x02\x02\x02' +
1141
+ '\u02D4\u02D2\x03\x02\x02\x02\u02D5\u02D7\x03\x02\x02\x02\u02D6\u02D4\x03' +
1142
+ '\x02\x02\x02\u02D7\u02D8\x07$\x02\x02\u02D8\u02D9\x07$\x02\x02\u02D9\u02DB' +
1143
+ '\x07$\x02\x02\u02DA\u02C0\x03\x02\x02\x02\u02DA\u02CD\x03\x02\x02\x02' +
1144
+ '\u02DB\xC8\x03\x02\x02\x02\u02DC\u02DF\x05\xCBf\x02\u02DD\u02DF\x05\xCD' +
1145
+ 'g\x02\u02DE\u02DC\x03\x02\x02\x02\u02DE\u02DD\x03\x02\x02\x02\u02DF\xCA' +
1146
+ '\x03\x02\x02\x02\u02E0\u02E1\n\v\x02\x02\u02E1\xCC\x03\x02\x02\x02\u02E2' +
1147
+ '\u02E3\x07^\x02\x02\u02E3\u02E7\v\x02\x02\x02\u02E4\u02E5\x07^\x02\x02' +
1148
+ '\u02E5\u02E7\x05O(\x02\u02E6\u02E2\x03\x02\x02\x02\u02E6\u02E4\x03\x02' +
1149
+ '\x02\x02\u02E7\xCE\x03\x02\x02\x02\u02E8\u02E9\t\f\x02\x02\u02E9\xD0\x03' +
1150
+ '\x02\x02\x02\u02EA\u02EB\t\r\x02\x02\u02EB\xD2\x03\x02\x02\x02\u02EC\u02ED' +
1151
+ '\t\x0E\x02\x02\u02ED\xD4\x03\x02\x02\x02\u02EE\u02EF\t\x0F\x02\x02\u02EF' +
1152
+ '\xD6\x03\x02\x02\x02\u02F0\u02F1\t\x10\x02\x02\u02F1\xD8\x03\x02\x02\x02' +
1153
+ '\u02F2\u02F4\x05\xDDo\x02\u02F3\u02F2\x03\x02\x02\x02\u02F3\u02F4\x03' +
1154
+ '\x02\x02\x02\u02F4\u02F5\x03\x02\x02\x02\u02F5\u02FA\x05\xDFp\x02\u02F6' +
1155
+ '\u02F7\x05\xDDo\x02\u02F7\u02F8\x070\x02\x02\u02F8\u02FA\x03\x02\x02\x02' +
1156
+ '\u02F9\u02F3\x03\x02\x02\x02\u02F9\u02F6\x03\x02\x02\x02\u02FA\xDA\x03' +
1157
+ '\x02\x02\x02\u02FB\u02FE\x05\xDDo\x02\u02FC\u02FE\x05\xD9m\x02\u02FD\u02FB' +
1158
+ '\x03\x02\x02\x02\u02FD\u02FC\x03\x02\x02\x02\u02FE\u02FF\x03\x02\x02\x02' +
1159
+ '\u02FF\u0300\x05\xE1q\x02\u0300\xDC\x03\x02\x02\x02\u0301\u0303\x05\xD1' +
1160
+ 'i\x02\u0302\u0301\x03\x02\x02\x02\u0303\u0304\x03\x02\x02\x02\u0304\u0302' +
1161
+ '\x03\x02\x02\x02\u0304\u0305\x03\x02\x02\x02\u0305\xDE\x03\x02\x02\x02' +
1162
+ '\u0306\u0308\x070\x02\x02\u0307\u0309\x05\xD1i\x02\u0308\u0307\x03\x02' +
1163
+ '\x02\x02\u0309\u030A\x03\x02\x02\x02\u030A\u0308\x03\x02\x02\x02\u030A' +
1164
+ '\u030B\x03\x02\x02\x02\u030B\xE0\x03\x02\x02\x02\u030C\u030E\t\x11\x02' +
1165
+ '\x02\u030D\u030F\t\x12\x02\x02\u030E\u030D\x03\x02\x02\x02\u030E\u030F' +
1166
+ '\x03\x02\x02\x02\u030F\u0311\x03\x02\x02\x02\u0310\u0312\x05\xD1i\x02' +
1167
+ '\u0311\u0310\x03\x02\x02\x02\u0312\u0313\x03\x02\x02\x02\u0313\u0311\x03' +
1168
+ '\x02\x02\x02\u0313\u0314\x03\x02\x02\x02\u0314\xE2\x03\x02\x02\x02\u0315' +
1169
+ '\u031A\x07)\x02\x02\u0316\u0319\x05\xE9u\x02\u0317\u0319\x05\xEFx\x02' +
1170
+ '\u0318\u0316\x03\x02\x02\x02\u0318\u0317\x03\x02\x02\x02\u0319\u031C\x03' +
1171
+ '\x02\x02\x02\u031A\u0318\x03\x02\x02\x02\u031A\u031B\x03\x02\x02\x02\u031B' +
1172
+ '\u031D\x03\x02\x02\x02\u031C\u031A\x03\x02\x02\x02\u031D\u0328\x07)\x02' +
1173
+ '\x02\u031E\u0323\x07$\x02\x02\u031F\u0322\x05\xEBv\x02\u0320\u0322\x05' +
1174
+ '\xEFx\x02\u0321\u031F\x03\x02\x02\x02\u0321\u0320\x03\x02\x02\x02\u0322' +
1175
+ '\u0325\x03\x02\x02\x02\u0323\u0321\x03\x02\x02\x02\u0323\u0324\x03\x02' +
1176
+ '\x02\x02\u0324\u0326\x03\x02\x02\x02\u0325\u0323\x03\x02\x02\x02\u0326' +
1177
+ '\u0328\x07$\x02\x02\u0327\u0315\x03\x02\x02\x02\u0327\u031E\x03\x02\x02' +
1178
+ '\x02\u0328\xE4\x03\x02\x02\x02\u0329\u032A\x07)\x02\x02\u032A\u032B\x07' +
1179
+ ')\x02\x02\u032B\u032C\x07)\x02\x02\u032C\u0330\x03\x02\x02\x02\u032D\u032F' +
1180
+ '\x05\xE7t\x02\u032E\u032D\x03\x02\x02\x02\u032F\u0332\x03\x02\x02\x02' +
1181
+ '\u0330\u0331\x03\x02\x02\x02\u0330\u032E\x03\x02\x02\x02\u0331\u0333\x03' +
1182
+ '\x02\x02\x02\u0332\u0330\x03\x02\x02\x02\u0333\u0334\x07)\x02\x02\u0334' +
1183
+ '\u0335\x07)\x02\x02\u0335\u0344\x07)\x02\x02\u0336\u0337\x07$\x02\x02' +
1184
+ '\u0337\u0338\x07$\x02\x02\u0338\u0339\x07$\x02\x02\u0339\u033D\x03\x02' +
1185
+ '\x02\x02\u033A\u033C\x05\xE7t\x02\u033B\u033A\x03\x02\x02\x02\u033C\u033F' +
1186
+ '\x03\x02\x02\x02\u033D\u033E\x03\x02\x02\x02\u033D\u033B\x03\x02\x02\x02' +
1187
+ '\u033E\u0340\x03\x02\x02\x02\u033F\u033D\x03\x02\x02\x02\u0340\u0341\x07' +
1188
+ '$\x02\x02\u0341\u0342\x07$\x02\x02\u0342\u0344\x07$\x02\x02\u0343\u0329' +
1189
+ '\x03\x02\x02\x02\u0343\u0336\x03\x02\x02\x02\u0344\xE6\x03\x02\x02\x02' +
1190
+ '\u0345\u0348\x05\xEDw\x02\u0346\u0348\x05\xEFx\x02\u0347\u0345\x03\x02' +
1191
+ '\x02\x02\u0347\u0346\x03\x02\x02\x02\u0348\xE8\x03\x02\x02\x02\u0349\u034B' +
1192
+ '\t\x13\x02\x02\u034A\u0349\x03\x02\x02\x02\u034B\xEA\x03\x02\x02\x02\u034C' +
1193
+ '\u034E\t\x14\x02\x02\u034D\u034C\x03\x02\x02\x02\u034E\xEC\x03\x02\x02' +
1194
+ '\x02\u034F\u0351\t\x15\x02\x02\u0350\u034F\x03\x02\x02\x02\u0351\xEE\x03' +
1195
+ '\x02\x02\x02\u0352\u0353\x07^\x02\x02\u0353\u0354\t\x16\x02\x02\u0354' +
1196
+ '\xF0\x03\x02\x02\x02\u0355\u0357\t\x17\x02\x02\u0356\u0355\x03\x02\x02' +
1197
+ '\x02\u0357\u0358\x03\x02\x02\x02\u0358\u0356\x03\x02\x02\x02\u0358\u0359' +
1198
+ '\x03\x02\x02\x02\u0359\xF2\x03\x02\x02\x02\u035A\u035E\x07%\x02\x02\u035B' +
1199
+ '\u035D\n\x18\x02\x02\u035C\u035B\x03\x02\x02\x02\u035D\u0360\x03\x02\x02' +
1200
+ '\x02\u035E\u035C\x03\x02\x02\x02\u035E\u035F\x03\x02\x02\x02\u035F\xF4' +
1201
+ '\x03\x02\x02\x02\u0360\u035E\x03\x02\x02\x02\u0361\u0363\x07^\x02\x02' +
1202
+ '\u0362\u0364\x05\xF1y\x02\u0363\u0362\x03\x02\x02\x02\u0363\u0364\x03' +
1203
+ '\x02\x02\x02\u0364\u036A\x03\x02\x02\x02\u0365\u0367\x07\x0F\x02\x02\u0366' +
1204
+ '\u0365\x03\x02\x02\x02\u0366\u0367\x03\x02\x02\x02\u0367\u0368\x03\x02' +
1205
+ '\x02\x02\u0368\u036B\x07\f\x02\x02\u0369\u036B\x04\x0E\x0F\x02\u036A\u0366' +
1206
+ '\x03\x02\x02\x02\u036A\u0369\x03\x02\x02\x02\u036B\xF6\x03\x02\x02\x02' +
1207
+ '\u036C\u036E\t\x19\x02\x02\u036D\u036C\x03\x02\x02\x02\u036E\xF8\x03\x02' +
1208
+ '\x02\x02\u036F\u0372\x05\xF7|\x02\u0370\u0372\t\x1A\x02\x02\u0371\u036F' +
1209
+ '\x03\x02\x02\x02\u0371\u0370\x03\x02\x02\x02\u0372\xFA\x03\x02\x02\x02' +
1210
+ '<\x02\xFD\u0102\u0108\u01CB\u01CF\u01D2\u01D4\u01DC\u01E4\u01E8\u01EF' +
1211
+ '\u01F3\u01F9\u01FF\u0201\u0208\u020F\u0216\u021A\u021E\u02A6\u02AF\u02B1' +
1212
+ '\u02B8\u02BA\u02BE\u02C7\u02D4\u02DA\u02DE\u02E6\u02F3\u02F9\u02FD\u0304' +
1213
+ '\u030A\u030E\u0313\u0318\u031A\u0321\u0323\u0327\u0330\u033D\u0343\u0347' +
1214
+ '\u034A\u034D\u0350\u0358\u035E\u0363\u0366\u036A\u036D\u0371\n\x03(\x02' +
1215
+ '\x035\x03\x036\x04\x03<\x05\x03=\x06\x03I\x07\x03J\b\b\x02\x02';
1216
+ Python3Lexer._serializedATN = Utils.join([Python3Lexer._serializedATNSegment0, Python3Lexer._serializedATNSegment1], '');
1217
+ __decorate([
1218
+ Decorators_1.Override
1219
+ ], Python3Lexer.prototype, "reset", null);
1220
+ __decorate([
1221
+ Decorators_1.Override
1222
+ ], Python3Lexer.prototype, "emit", null);
1223
+ __decorate([
1224
+ Decorators_1.Override
1225
+ ], Python3Lexer.prototype, "nextToken", null);
1226
+ exports.Python3Lexer = Python3Lexer;
1227
+ //# sourceMappingURL=python3-lexer.js.map