#![allow(dead_code)]
#![allow(nonstandard_style)]
#![allow(unused_imports)]
#![allow(unused_variables)]
use antlr4rust::atn::ATN;
use antlr4rust::atn_deserializer::ATNDeserializer;
use antlr4rust::char_stream::CharStream;
use antlr4rust::dfa::DFA;
use antlr4rust::error_listener::ErrorListener;
use antlr4rust::int_stream::IntStream;
use antlr4rust::lexer::{BaseLexer, Lexer, LexerRecog};
use antlr4rust::lexer_atn_simulator::{ILexerATNSimulator, LexerATNSimulator};
use antlr4rust::parser_rule_context::{cast, BaseParserRuleContext, ParserRuleContext};
use antlr4rust::recognizer::{Actions, Recognizer};
use antlr4rust::rule_context::{BaseRuleContext, EmptyContext, EmptyCustomRuleContext};
use antlr4rust::token::*;
use antlr4rust::token_factory::{CommonTokenFactory, TokenAware, TokenFactory};
use antlr4rust::tree::ParseTree;
use antlr4rust::vocabulary::{Vocabulary, VocabularyImpl};
use antlr4rust::PredictionContextCache;
use antlr4rust::TokenSource;
use antlr4rust::{lazy_static, Tid, TidAble, TidExt};
use std::cell::RefCell;
use std::marker::PhantomData;
use std::ops::{Deref, DerefMut};
use std::rc::Rc;
use std::sync::Arc;
pub const ASSIGN: i32 = 1;
pub const ADD_ASSIGN: i32 = 2;
pub const LE: i32 = 3;
pub const GE: i32 = 4;
pub const GT: i32 = 5;
pub const LT: i32 = 6;
pub const NOT_EQUAL: i32 = 7;
pub const RANGE: i32 = 8;
pub const SEMI: i32 = 9;
pub const DOT: i32 = 10;
pub const COMMA: i32 = 11;
pub const LPAREN: i32 = 12;
pub const RPAREN: i32 = 13;
pub const LBRACE: i32 = 14;
pub const RBRACE: i32 = 15;
pub const LBRACK: i32 = 16;
pub const RBRACK: i32 = 17;
pub const SUB: i32 = 18;
pub const PLUS: i32 = 19;
pub const DIV: i32 = 20;
pub const MOD: i32 = 21;
pub const CARET: i32 = 22;
pub const MULT: i32 = 23;
pub const ESC: i32 = 24;
pub const COLON: i32 = 25;
pub const STICK: i32 = 26;
pub const DOLLAR: i32 = 27;
pub const CALL: i32 = 28;
pub const YIELD: i32 = 29;
pub const FILTER: i32 = 30;
pub const EXTRACT: i32 = 31;
pub const COUNT: i32 = 32;
pub const ANY: i32 = 33;
pub const NONE: i32 = 34;
pub const SINGLE: i32 = 35;
pub const ALL: i32 = 36;
pub const ASC: i32 = 37;
pub const ASCENDING: i32 = 38;
pub const BY: i32 = 39;
pub const CREATE: i32 = 40;
pub const DELETE: i32 = 41;
pub const DESC: i32 = 42;
pub const DESCENDING: i32 = 43;
pub const DETACH: i32 = 44;
pub const EXISTS: i32 = 45;
pub const EXPLAIN: i32 = 46;
pub const LIMIT: i32 = 47;
pub const MATCH: i32 = 48;
pub const MERGE: i32 = 49;
pub const ON: i32 = 50;
pub const OPTIONAL: i32 = 51;
pub const ORDER: i32 = 52;
pub const REMOVE: i32 = 53;
pub const RETURN: i32 = 54;
pub const SET: i32 = 55;
pub const SKIP_W: i32 = 56;
pub const WHERE: i32 = 57;
pub const WITH: i32 = 58;
pub const UNION: i32 = 59;
pub const UNWIND: i32 = 60;
pub const AND: i32 = 61;
pub const AS: i32 = 62;
pub const CONTAINS: i32 = 63;
pub const DISTINCT: i32 = 64;
pub const ENDS: i32 = 65;
pub const IN: i32 = 66;
pub const INDEX: i32 = 67;
pub const IS: i32 = 68;
pub const NOT: i32 = 69;
pub const OR: i32 = 70;
pub const STARTS: i32 = 71;
pub const XOR: i32 = 72;
pub const SHORTEST_PATH: i32 = 73;
pub const FALSE: i32 = 74;
pub const TRUE: i32 = 75;
pub const NULL_W: i32 = 76;
pub const CONSTRAINT: i32 = 77;
pub const DO: i32 = 78;
pub const FOR: i32 = 79;
pub const REQUIRE: i32 = 80;
pub const UNIQUE: i32 = 81;
pub const CASE: i32 = 82;
pub const WHEN: i32 = 83;
pub const THEN: i32 = 84;
pub const ELSE: i32 = 85;
pub const END: i32 = 86;
pub const MANDATORY: i32 = 87;
pub const SCALAR: i32 = 88;
pub const OF: i32 = 89;
pub const ADD: i32 = 90;
pub const DROP: i32 = 91;
pub const ID: i32 = 92;
pub const ESC_LITERAL: i32 = 93;
pub const CHAR_LITERAL: i32 = 94;
pub const STRING_LITERAL: i32 = 95;
pub const DIGIT: i32 = 96;
pub const FLOAT: i32 = 97;
pub const WS: i32 = 98;
pub const COMMENT: i32 = 99;
pub const LINE_COMMENT: i32 = 100;
pub const Letter: i32 = 101;
pub const channelNames: [&'static str; 1 + 2] = ["DEFAULT_TOKEN_CHANNEL", "HIDDEN", "COMMENTS"];
pub const modeNames: [&'static str; 1] = ["DEFAULT_MODE"];
pub const ruleNames: [&'static str; 109] = [
"ASSIGN",
"ADD_ASSIGN",
"LE",
"GE",
"GT",
"LT",
"NOT_EQUAL",
"RANGE",
"SEMI",
"DOT",
"COMMA",
"LPAREN",
"RPAREN",
"LBRACE",
"RBRACE",
"LBRACK",
"RBRACK",
"SUB",
"PLUS",
"DIV",
"MOD",
"CARET",
"MULT",
"ESC",
"COLON",
"STICK",
"DOLLAR",
"CALL",
"YIELD",
"FILTER",
"EXTRACT",
"COUNT",
"ANY",
"NONE",
"SINGLE",
"ALL",
"ASC",
"ASCENDING",
"BY",
"CREATE",
"DELETE",
"DESC",
"DESCENDING",
"DETACH",
"EXISTS",
"EXPLAIN",
"LIMIT",
"MATCH",
"MERGE",
"ON",
"OPTIONAL",
"ORDER",
"REMOVE",
"RETURN",
"SET",
"SKIP_W",
"WHERE",
"WITH",
"UNION",
"UNWIND",
"AND",
"AS",
"CONTAINS",
"DISTINCT",
"ENDS",
"IN",
"INDEX",
"IS",
"NOT",
"OR",
"STARTS",
"XOR",
"SHORTEST_PATH",
"FALSE",
"TRUE",
"NULL_W",
"CONSTRAINT",
"DO",
"FOR",
"REQUIRE",
"UNIQUE",
"CASE",
"WHEN",
"THEN",
"ELSE",
"END",
"MANDATORY",
"SCALAR",
"OF",
"ADD",
"DROP",
"ID",
"ESC_LITERAL",
"CHAR_LITERAL",
"STRING_LITERAL",
"DIGIT",
"FLOAT",
"WS",
"COMMENT",
"LINE_COMMENT",
"EscapeSequence",
"ExponentPart",
"HexDigits",
"HexDigit",
"OctalDigits",
"OctalDigit",
"Digits",
"LetterOrDigit",
"Letter",
];
pub const _LITERAL_NAMES: [Option<&'static str>; 92] = [
None,
Some("'='"),
Some("'+='"),
Some("'<='"),
Some("'>='"),
Some("'>'"),
Some("'<'"),
Some("'<>'"),
Some("'..'"),
Some("';'"),
Some("'.'"),
Some("','"),
Some("'('"),
Some("')'"),
Some("'{'"),
Some("'}'"),
Some("'['"),
Some("']'"),
Some("'-'"),
Some("'+'"),
Some("'/'"),
Some("'%'"),
Some("'^'"),
Some("'*'"),
Some("'`'"),
Some("':'"),
Some("'|'"),
Some("'$'"),
Some("'CALL'"),
Some("'YIELD'"),
Some("'FILTER'"),
Some("'EXTRACT'"),
Some("'COUNT'"),
Some("'ANY'"),
Some("'NONE'"),
Some("'SINGLE'"),
Some("'ALL'"),
Some("'ASC'"),
Some("'ASCENDING'"),
Some("'BY'"),
Some("'CREATE'"),
Some("'DELETE'"),
Some("'DESC'"),
Some("'DESCENDING'"),
Some("'DETACH'"),
Some("'EXISTS'"),
Some("'EXPLAIN'"),
Some("'LIMIT'"),
Some("'MATCH'"),
Some("'MERGE'"),
Some("'ON'"),
Some("'OPTIONAL'"),
Some("'ORDER'"),
Some("'REMOVE'"),
Some("'RETURN'"),
Some("'SET'"),
Some("'SKIP'"),
Some("'WHERE'"),
Some("'WITH'"),
Some("'UNION'"),
Some("'UNWIND'"),
Some("'AND'"),
Some("'AS'"),
Some("'CONTAINS'"),
Some("'DISTINCT'"),
Some("'ENDS'"),
Some("'IN'"),
Some("'INDEX'"),
Some("'IS'"),
Some("'NOT'"),
Some("'OR'"),
Some("'STARTS'"),
Some("'XOR'"),
Some("'shortestPath'"),
Some("'FALSE'"),
Some("'TRUE'"),
Some("'NULL'"),
Some("'CONSTRAINT'"),
Some("'DO'"),
Some("'FOR'"),
Some("'REQUIRE'"),
Some("'UNIQUE'"),
Some("'CASE'"),
Some("'WHEN'"),
Some("'THEN'"),
Some("'ELSE'"),
Some("'END'"),
Some("'MANDATORY'"),
Some("'SCALAR'"),
Some("'OF'"),
Some("'ADD'"),
Some("'DROP'"),
];
pub const _SYMBOLIC_NAMES: [Option<&'static str>; 102] = [
None,
Some("ASSIGN"),
Some("ADD_ASSIGN"),
Some("LE"),
Some("GE"),
Some("GT"),
Some("LT"),
Some("NOT_EQUAL"),
Some("RANGE"),
Some("SEMI"),
Some("DOT"),
Some("COMMA"),
Some("LPAREN"),
Some("RPAREN"),
Some("LBRACE"),
Some("RBRACE"),
Some("LBRACK"),
Some("RBRACK"),
Some("SUB"),
Some("PLUS"),
Some("DIV"),
Some("MOD"),
Some("CARET"),
Some("MULT"),
Some("ESC"),
Some("COLON"),
Some("STICK"),
Some("DOLLAR"),
Some("CALL"),
Some("YIELD"),
Some("FILTER"),
Some("EXTRACT"),
Some("COUNT"),
Some("ANY"),
Some("NONE"),
Some("SINGLE"),
Some("ALL"),
Some("ASC"),
Some("ASCENDING"),
Some("BY"),
Some("CREATE"),
Some("DELETE"),
Some("DESC"),
Some("DESCENDING"),
Some("DETACH"),
Some("EXISTS"),
Some("EXPLAIN"),
Some("LIMIT"),
Some("MATCH"),
Some("MERGE"),
Some("ON"),
Some("OPTIONAL"),
Some("ORDER"),
Some("REMOVE"),
Some("RETURN"),
Some("SET"),
Some("SKIP_W"),
Some("WHERE"),
Some("WITH"),
Some("UNION"),
Some("UNWIND"),
Some("AND"),
Some("AS"),
Some("CONTAINS"),
Some("DISTINCT"),
Some("ENDS"),
Some("IN"),
Some("INDEX"),
Some("IS"),
Some("NOT"),
Some("OR"),
Some("STARTS"),
Some("XOR"),
Some("SHORTEST_PATH"),
Some("FALSE"),
Some("TRUE"),
Some("NULL_W"),
Some("CONSTRAINT"),
Some("DO"),
Some("FOR"),
Some("REQUIRE"),
Some("UNIQUE"),
Some("CASE"),
Some("WHEN"),
Some("THEN"),
Some("ELSE"),
Some("END"),
Some("MANDATORY"),
Some("SCALAR"),
Some("OF"),
Some("ADD"),
Some("DROP"),
Some("ID"),
Some("ESC_LITERAL"),
Some("CHAR_LITERAL"),
Some("STRING_LITERAL"),
Some("DIGIT"),
Some("FLOAT"),
Some("WS"),
Some("COMMENT"),
Some("LINE_COMMENT"),
Some("Letter"),
];
lazy_static! {
static ref _shared_context_cache: Arc<PredictionContextCache> =
Arc::new(PredictionContextCache::new());
static ref VOCABULARY: Box<dyn Vocabulary> = Box::new(VocabularyImpl::new(
_LITERAL_NAMES.iter(),
_SYMBOLIC_NAMES.iter(),
None
));
}
pub type LexerContext<'input> =
BaseRuleContext<'input, EmptyCustomRuleContext<'input, LocalTokenFactory<'input>>>;
pub type LocalTokenFactory<'input> = CommonTokenFactory;
type From<'a> = <LocalTokenFactory<'a> as TokenFactory<'a>>::From;
pub struct CypherLexer<'input, Input: CharStream<From<'input>>> {
base: BaseLexer<'input, CypherLexerActions, Input, LocalTokenFactory<'input>>,
}
antlr4rust::tid! { impl<'input,Input> TidAble<'input> for CypherLexer<'input,Input> where Input:CharStream<From<'input> > }
impl<'input, Input: CharStream<From<'input>>> Deref for CypherLexer<'input, Input> {
type Target = BaseLexer<'input, CypherLexerActions, Input, LocalTokenFactory<'input>>;
fn deref(&self) -> &Self::Target {
&self.base
}
}
impl<'input, Input: CharStream<From<'input>>> DerefMut for CypherLexer<'input, Input> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.base
}
}
impl<'input, Input: CharStream<From<'input>>> CypherLexer<'input, Input> {
fn get_rule_names(&self) -> &'static [&'static str] {
&ruleNames
}
fn get_literal_names(&self) -> &[Option<&str>] {
&_LITERAL_NAMES
}
fn get_symbolic_names(&self) -> &[Option<&str>] {
&_SYMBOLIC_NAMES
}
fn get_grammar_file_name(&self) -> &'static str {
"CypherLexer.g4"
}
pub fn new_with_token_factory(input: Input, tf: &'input LocalTokenFactory<'input>) -> Self {
antlr4rust::recognizer::check_version("0", "5");
Self {
base: BaseLexer::new_base_lexer(
input,
LexerATNSimulator::new_lexer_atnsimulator(
_ATN.clone(),
_decision_to_DFA.clone(),
_shared_context_cache.clone(),
),
CypherLexerActions {},
tf,
),
}
}
}
impl<'input, Input: CharStream<From<'input>>> CypherLexer<'input, Input>
where
&'input LocalTokenFactory<'input>: Default,
{
pub fn new(input: Input) -> Self {
CypherLexer::new_with_token_factory(
input,
<&LocalTokenFactory<'input> as Default>::default(),
)
}
}
pub struct CypherLexerActions {}
impl CypherLexerActions {}
impl<'input, Input: CharStream<From<'input>>>
Actions<'input, BaseLexer<'input, CypherLexerActions, Input, LocalTokenFactory<'input>>>
for CypherLexerActions
{
}
impl<'input, Input: CharStream<From<'input>>> CypherLexer<'input, Input> {}
impl<'input, Input: CharStream<From<'input>>>
LexerRecog<'input, BaseLexer<'input, CypherLexerActions, Input, LocalTokenFactory<'input>>>
for CypherLexerActions
{
}
impl<'input> TokenAware<'input> for CypherLexerActions {
type TF = LocalTokenFactory<'input>;
}
impl<'input, Input: CharStream<From<'input>>> TokenSource<'input> for CypherLexer<'input, Input> {
type TF = LocalTokenFactory<'input>;
fn next_token(&mut self) -> <Self::TF as TokenFactory<'input>>::Tok {
self.base.next_token()
}
fn get_line(&self) -> isize {
self.base.get_line()
}
fn get_char_position_in_line(&self) -> isize {
self.base.get_char_position_in_line()
}
fn get_input_stream(&mut self) -> Option<&mut dyn IntStream> {
self.base.get_input_stream()
}
fn get_source_name(&self) -> String {
self.base.get_source_name()
}
fn get_token_factory(&self) -> &'input Self::TF {
self.base.get_token_factory()
}
fn get_dfa_string(&self) -> String {
self.base.get_dfa_string()
}
}
lazy_static! {
static ref _ATN: Arc<ATN> =
Arc::new(ATNDeserializer::new(None).deserialize(&mut _serializedATN.iter()));
static ref _decision_to_DFA: Arc<Vec<antlr4rust::RwLock<DFA>>> = {
let mut dfa = Vec::new();
let size = _ATN.decision_to_state.len() as i32;
for i in 0..size {
dfa.push(DFA::new(_ATN.clone(), _ATN.get_decision_state(i), i).into())
}
Arc::new(dfa)
};
static ref _serializedATN: Vec<i32> = vec![
4, 0, 101, 836, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7,
5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7,
12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2,
19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7,
25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2,
32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7,
38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2,
45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7,
51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2,
58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7,
64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2,
71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7,
77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2,
84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7,
90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2,
97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2,
103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7,
108, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1,
5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11,
1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18,
1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24,
1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28,
1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30,
1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32,
1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34,
1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37,
1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39,
1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41,
1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43,
1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44,
1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46,
1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48,
1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51,
1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53,
1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55,
1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57,
1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59,
1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62,
1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64,
1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66,
1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70,
1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72,
1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73,
1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76,
1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78,
1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80,
1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82,
1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85,
1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86,
1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89,
1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 5, 91, 660, 8, 91, 10, 91, 12, 91,
663, 9, 91, 1, 92, 1, 92, 5, 92, 667, 8, 92, 10, 92, 12, 92, 670, 9, 92, 1, 92, 1, 92, 1,
93, 1, 93, 1, 93, 5, 93, 677, 8, 93, 10, 93, 12, 93, 680, 9, 93, 1, 93, 1, 93, 1, 94, 1,
94, 1, 94, 5, 94, 687, 8, 94, 10, 94, 12, 94, 690, 9, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1,
95, 1, 95, 3, 95, 698, 8, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 706, 8, 96,
1, 96, 3, 96, 709, 8, 96, 1, 96, 3, 96, 712, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 717, 8, 96,
1, 96, 3, 96, 720, 8, 96, 3, 96, 722, 8, 96, 1, 97, 4, 97, 725, 8, 97, 11, 97, 12, 97, 726,
1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 735, 8, 98, 10, 98, 12, 98, 738, 9, 98, 1,
98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 749, 8, 99, 10, 99, 12,
99, 752, 9, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 760, 8, 100, 1, 100,
3, 100, 763, 8, 100, 1, 100, 1, 100, 1, 100, 4, 100, 768, 8, 100, 11, 100, 12, 100, 769, 1,
100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 777, 8, 100, 1, 101, 1, 101, 3, 101, 781, 8,
101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 791, 8, 102,
10, 102, 12, 102, 794, 9, 102, 1, 102, 3, 102, 797, 8, 102, 1, 103, 1, 103, 1, 104, 1, 104,
1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 807, 8, 104, 10, 104, 12, 104, 810, 9, 104, 1, 104,
3, 104, 813, 8, 104, 1, 105, 1, 105, 1, 106, 1, 106, 5, 106, 819, 8, 106, 10, 106, 12, 106,
822, 9, 106, 1, 106, 3, 106, 825, 8, 106, 1, 107, 1, 107, 3, 107, 829, 8, 107, 1, 108, 1,
108, 1, 108, 1, 108, 3, 108, 835, 8, 108, 2, 668, 736, 0, 109, 1, 1, 3, 2, 5, 3, 7, 4, 9,
5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33,
17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28,
57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79,
40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101,
51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121,
61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141,
71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161,
81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181,
91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201,
0, 203, 0, 205, 0, 207, 0, 209, 0, 211, 0, 213, 0, 215, 0, 217, 101, 1, 0, 40, 2, 0, 67,
67, 99, 99, 2, 0, 65, 65, 97, 97, 2, 0, 76, 76, 108, 108, 2, 0, 89, 89, 121, 121, 2, 0, 73,
73, 105, 105, 2, 0, 69, 69, 101, 101, 2, 0, 68, 68, 100, 100, 2, 0, 70, 70, 102, 102, 2, 0,
84, 84, 116, 116, 2, 0, 82, 82, 114, 114, 2, 0, 88, 88, 120, 120, 2, 0, 79, 79, 111, 111,
2, 0, 85, 85, 117, 117, 2, 0, 78, 78, 110, 110, 2, 0, 83, 83, 115, 115, 2, 0, 71, 71, 103,
103, 2, 0, 66, 66, 98, 98, 2, 0, 72, 72, 104, 104, 2, 0, 80, 80, 112, 112, 2, 0, 77, 77,
109, 109, 2, 0, 86, 86, 118, 118, 2, 0, 75, 75, 107, 107, 2, 0, 87, 87, 119, 119, 2, 0, 81,
81, 113, 113, 4, 0, 10, 10, 13, 13, 39, 39, 92, 92, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92,
4, 0, 68, 68, 70, 70, 100, 100, 102, 102, 3, 0, 9, 10, 12, 13, 32, 32, 2, 0, 10, 10, 13,
13, 13, 0, 34, 34, 39, 39, 66, 66, 70, 70, 78, 78, 82, 82, 84, 84, 92, 92, 98, 98, 102,
102, 110, 110, 114, 114, 116, 116, 1, 0, 48, 51, 1, 0, 48, 55, 2, 0, 43, 43, 45, 45, 3, 0,
48, 57, 65, 70, 97, 102, 1, 0, 48, 57, 2, 0, 48, 57, 95, 95, 3, 0, 65, 90, 95, 95, 97, 122,
2, 0, 0, 127, 55296, 56319, 1, 0, 55296, 56319, 1, 0, 56320, 57343, 862, 0, 1, 1, 0, 0, 0,
0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0,
0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0,
0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0,
0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1,
0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51,
1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0,
61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0,
0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0,
0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0,
0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1,
0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0,
109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0,
0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0,
127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0,
0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0,
145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0,
0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0,
163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0,
0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0,
181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0,
0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0,
199, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 1, 219, 1, 0, 0, 0, 3, 221, 1, 0, 0, 0, 5, 224, 1, 0,
0, 0, 7, 227, 1, 0, 0, 0, 9, 230, 1, 0, 0, 0, 11, 232, 1, 0, 0, 0, 13, 234, 1, 0, 0, 0, 15,
237, 1, 0, 0, 0, 17, 240, 1, 0, 0, 0, 19, 242, 1, 0, 0, 0, 21, 244, 1, 0, 0, 0, 23, 246, 1,
0, 0, 0, 25, 248, 1, 0, 0, 0, 27, 250, 1, 0, 0, 0, 29, 252, 1, 0, 0, 0, 31, 254, 1, 0, 0,
0, 33, 256, 1, 0, 0, 0, 35, 258, 1, 0, 0, 0, 37, 260, 1, 0, 0, 0, 39, 262, 1, 0, 0, 0, 41,
264, 1, 0, 0, 0, 43, 266, 1, 0, 0, 0, 45, 268, 1, 0, 0, 0, 47, 270, 1, 0, 0, 0, 49, 272, 1,
0, 0, 0, 51, 274, 1, 0, 0, 0, 53, 276, 1, 0, 0, 0, 55, 278, 1, 0, 0, 0, 57, 283, 1, 0, 0,
0, 59, 289, 1, 0, 0, 0, 61, 296, 1, 0, 0, 0, 63, 304, 1, 0, 0, 0, 65, 310, 1, 0, 0, 0, 67,
314, 1, 0, 0, 0, 69, 319, 1, 0, 0, 0, 71, 326, 1, 0, 0, 0, 73, 330, 1, 0, 0, 0, 75, 334, 1,
0, 0, 0, 77, 344, 1, 0, 0, 0, 79, 347, 1, 0, 0, 0, 81, 354, 1, 0, 0, 0, 83, 361, 1, 0, 0,
0, 85, 366, 1, 0, 0, 0, 87, 377, 1, 0, 0, 0, 89, 384, 1, 0, 0, 0, 91, 391, 1, 0, 0, 0, 93,
399, 1, 0, 0, 0, 95, 405, 1, 0, 0, 0, 97, 411, 1, 0, 0, 0, 99, 417, 1, 0, 0, 0, 101, 420,
1, 0, 0, 0, 103, 429, 1, 0, 0, 0, 105, 435, 1, 0, 0, 0, 107, 442, 1, 0, 0, 0, 109, 449, 1,
0, 0, 0, 111, 453, 1, 0, 0, 0, 113, 458, 1, 0, 0, 0, 115, 464, 1, 0, 0, 0, 117, 469, 1, 0,
0, 0, 119, 475, 1, 0, 0, 0, 121, 482, 1, 0, 0, 0, 123, 486, 1, 0, 0, 0, 125, 489, 1, 0, 0,
0, 127, 498, 1, 0, 0, 0, 129, 507, 1, 0, 0, 0, 131, 512, 1, 0, 0, 0, 133, 515, 1, 0, 0, 0,
135, 521, 1, 0, 0, 0, 137, 524, 1, 0, 0, 0, 139, 528, 1, 0, 0, 0, 141, 531, 1, 0, 0, 0,
143, 538, 1, 0, 0, 0, 145, 542, 1, 0, 0, 0, 147, 555, 1, 0, 0, 0, 149, 561, 1, 0, 0, 0,
151, 566, 1, 0, 0, 0, 153, 571, 1, 0, 0, 0, 155, 582, 1, 0, 0, 0, 157, 585, 1, 0, 0, 0,
159, 589, 1, 0, 0, 0, 161, 597, 1, 0, 0, 0, 163, 604, 1, 0, 0, 0, 165, 609, 1, 0, 0, 0,
167, 614, 1, 0, 0, 0, 169, 619, 1, 0, 0, 0, 171, 624, 1, 0, 0, 0, 173, 628, 1, 0, 0, 0,
175, 638, 1, 0, 0, 0, 177, 645, 1, 0, 0, 0, 179, 648, 1, 0, 0, 0, 181, 652, 1, 0, 0, 0,
183, 657, 1, 0, 0, 0, 185, 664, 1, 0, 0, 0, 187, 673, 1, 0, 0, 0, 189, 683, 1, 0, 0, 0,
191, 697, 1, 0, 0, 0, 193, 721, 1, 0, 0, 0, 195, 724, 1, 0, 0, 0, 197, 730, 1, 0, 0, 0,
199, 744, 1, 0, 0, 0, 201, 776, 1, 0, 0, 0, 203, 778, 1, 0, 0, 0, 205, 784, 1, 0, 0, 0,
207, 798, 1, 0, 0, 0, 209, 800, 1, 0, 0, 0, 211, 814, 1, 0, 0, 0, 213, 816, 1, 0, 0, 0,
215, 828, 1, 0, 0, 0, 217, 834, 1, 0, 0, 0, 219, 220, 5, 61, 0, 0, 220, 2, 1, 0, 0, 0, 221,
222, 5, 43, 0, 0, 222, 223, 5, 61, 0, 0, 223, 4, 1, 0, 0, 0, 224, 225, 5, 60, 0, 0, 225,
226, 5, 61, 0, 0, 226, 6, 1, 0, 0, 0, 227, 228, 5, 62, 0, 0, 228, 229, 5, 61, 0, 0, 229, 8,
1, 0, 0, 0, 230, 231, 5, 62, 0, 0, 231, 10, 1, 0, 0, 0, 232, 233, 5, 60, 0, 0, 233, 12, 1,
0, 0, 0, 234, 235, 5, 60, 0, 0, 235, 236, 5, 62, 0, 0, 236, 14, 1, 0, 0, 0, 237, 238, 5,
46, 0, 0, 238, 239, 5, 46, 0, 0, 239, 16, 1, 0, 0, 0, 240, 241, 5, 59, 0, 0, 241, 18, 1, 0,
0, 0, 242, 243, 5, 46, 0, 0, 243, 20, 1, 0, 0, 0, 244, 245, 5, 44, 0, 0, 245, 22, 1, 0, 0,
0, 246, 247, 5, 40, 0, 0, 247, 24, 1, 0, 0, 0, 248, 249, 5, 41, 0, 0, 249, 26, 1, 0, 0, 0,
250, 251, 5, 123, 0, 0, 251, 28, 1, 0, 0, 0, 252, 253, 5, 125, 0, 0, 253, 30, 1, 0, 0, 0,
254, 255, 5, 91, 0, 0, 255, 32, 1, 0, 0, 0, 256, 257, 5, 93, 0, 0, 257, 34, 1, 0, 0, 0,
258, 259, 5, 45, 0, 0, 259, 36, 1, 0, 0, 0, 260, 261, 5, 43, 0, 0, 261, 38, 1, 0, 0, 0,
262, 263, 5, 47, 0, 0, 263, 40, 1, 0, 0, 0, 264, 265, 5, 37, 0, 0, 265, 42, 1, 0, 0, 0,
266, 267, 5, 94, 0, 0, 267, 44, 1, 0, 0, 0, 268, 269, 5, 42, 0, 0, 269, 46, 1, 0, 0, 0,
270, 271, 5, 96, 0, 0, 271, 48, 1, 0, 0, 0, 272, 273, 5, 58, 0, 0, 273, 50, 1, 0, 0, 0,
274, 275, 5, 124, 0, 0, 275, 52, 1, 0, 0, 0, 276, 277, 5, 36, 0, 0, 277, 54, 1, 0, 0, 0,
278, 279, 7, 0, 0, 0, 279, 280, 7, 1, 0, 0, 280, 281, 7, 2, 0, 0, 281, 282, 7, 2, 0, 0,
282, 56, 1, 0, 0, 0, 283, 284, 7, 3, 0, 0, 284, 285, 7, 4, 0, 0, 285, 286, 7, 5, 0, 0, 286,
287, 7, 2, 0, 0, 287, 288, 7, 6, 0, 0, 288, 58, 1, 0, 0, 0, 289, 290, 7, 7, 0, 0, 290, 291,
7, 4, 0, 0, 291, 292, 7, 2, 0, 0, 292, 293, 7, 8, 0, 0, 293, 294, 7, 5, 0, 0, 294, 295, 7,
9, 0, 0, 295, 60, 1, 0, 0, 0, 296, 297, 7, 5, 0, 0, 297, 298, 7, 10, 0, 0, 298, 299, 7, 8,
0, 0, 299, 300, 7, 9, 0, 0, 300, 301, 7, 1, 0, 0, 301, 302, 7, 0, 0, 0, 302, 303, 7, 8, 0,
0, 303, 62, 1, 0, 0, 0, 304, 305, 7, 0, 0, 0, 305, 306, 7, 11, 0, 0, 306, 307, 7, 12, 0, 0,
307, 308, 7, 13, 0, 0, 308, 309, 7, 8, 0, 0, 309, 64, 1, 0, 0, 0, 310, 311, 7, 1, 0, 0,
311, 312, 7, 13, 0, 0, 312, 313, 7, 3, 0, 0, 313, 66, 1, 0, 0, 0, 314, 315, 7, 13, 0, 0,
315, 316, 7, 11, 0, 0, 316, 317, 7, 13, 0, 0, 317, 318, 7, 5, 0, 0, 318, 68, 1, 0, 0, 0,
319, 320, 7, 14, 0, 0, 320, 321, 7, 4, 0, 0, 321, 322, 7, 13, 0, 0, 322, 323, 7, 15, 0, 0,
323, 324, 7, 2, 0, 0, 324, 325, 7, 5, 0, 0, 325, 70, 1, 0, 0, 0, 326, 327, 7, 1, 0, 0, 327,
328, 7, 2, 0, 0, 328, 329, 7, 2, 0, 0, 329, 72, 1, 0, 0, 0, 330, 331, 7, 1, 0, 0, 331, 332,
7, 14, 0, 0, 332, 333, 7, 0, 0, 0, 333, 74, 1, 0, 0, 0, 334, 335, 7, 1, 0, 0, 335, 336, 7,
14, 0, 0, 336, 337, 7, 0, 0, 0, 337, 338, 7, 5, 0, 0, 338, 339, 7, 13, 0, 0, 339, 340, 7,
6, 0, 0, 340, 341, 7, 4, 0, 0, 341, 342, 7, 13, 0, 0, 342, 343, 7, 15, 0, 0, 343, 76, 1, 0,
0, 0, 344, 345, 7, 16, 0, 0, 345, 346, 7, 3, 0, 0, 346, 78, 1, 0, 0, 0, 347, 348, 7, 0, 0,
0, 348, 349, 7, 9, 0, 0, 349, 350, 7, 5, 0, 0, 350, 351, 7, 1, 0, 0, 351, 352, 7, 8, 0, 0,
352, 353, 7, 5, 0, 0, 353, 80, 1, 0, 0, 0, 354, 355, 7, 6, 0, 0, 355, 356, 7, 5, 0, 0, 356,
357, 7, 2, 0, 0, 357, 358, 7, 5, 0, 0, 358, 359, 7, 8, 0, 0, 359, 360, 7, 5, 0, 0, 360, 82,
1, 0, 0, 0, 361, 362, 7, 6, 0, 0, 362, 363, 7, 5, 0, 0, 363, 364, 7, 14, 0, 0, 364, 365, 7,
0, 0, 0, 365, 84, 1, 0, 0, 0, 366, 367, 7, 6, 0, 0, 367, 368, 7, 5, 0, 0, 368, 369, 7, 14,
0, 0, 369, 370, 7, 0, 0, 0, 370, 371, 7, 5, 0, 0, 371, 372, 7, 13, 0, 0, 372, 373, 7, 6, 0,
0, 373, 374, 7, 4, 0, 0, 374, 375, 7, 13, 0, 0, 375, 376, 7, 15, 0, 0, 376, 86, 1, 0, 0, 0,
377, 378, 7, 6, 0, 0, 378, 379, 7, 5, 0, 0, 379, 380, 7, 8, 0, 0, 380, 381, 7, 1, 0, 0,
381, 382, 7, 0, 0, 0, 382, 383, 7, 17, 0, 0, 383, 88, 1, 0, 0, 0, 384, 385, 7, 5, 0, 0,
385, 386, 7, 10, 0, 0, 386, 387, 7, 4, 0, 0, 387, 388, 7, 14, 0, 0, 388, 389, 7, 8, 0, 0,
389, 390, 7, 14, 0, 0, 390, 90, 1, 0, 0, 0, 391, 392, 7, 5, 0, 0, 392, 393, 7, 10, 0, 0,
393, 394, 7, 18, 0, 0, 394, 395, 7, 2, 0, 0, 395, 396, 7, 1, 0, 0, 396, 397, 7, 4, 0, 0,
397, 398, 7, 13, 0, 0, 398, 92, 1, 0, 0, 0, 399, 400, 7, 2, 0, 0, 400, 401, 7, 4, 0, 0,
401, 402, 7, 19, 0, 0, 402, 403, 7, 4, 0, 0, 403, 404, 7, 8, 0, 0, 404, 94, 1, 0, 0, 0,
405, 406, 7, 19, 0, 0, 406, 407, 7, 1, 0, 0, 407, 408, 7, 8, 0, 0, 408, 409, 7, 0, 0, 0,
409, 410, 7, 17, 0, 0, 410, 96, 1, 0, 0, 0, 411, 412, 7, 19, 0, 0, 412, 413, 7, 5, 0, 0,
413, 414, 7, 9, 0, 0, 414, 415, 7, 15, 0, 0, 415, 416, 7, 5, 0, 0, 416, 98, 1, 0, 0, 0,
417, 418, 7, 11, 0, 0, 418, 419, 7, 13, 0, 0, 419, 100, 1, 0, 0, 0, 420, 421, 7, 11, 0, 0,
421, 422, 7, 18, 0, 0, 422, 423, 7, 8, 0, 0, 423, 424, 7, 4, 0, 0, 424, 425, 7, 11, 0, 0,
425, 426, 7, 13, 0, 0, 426, 427, 7, 1, 0, 0, 427, 428, 7, 2, 0, 0, 428, 102, 1, 0, 0, 0,
429, 430, 7, 11, 0, 0, 430, 431, 7, 9, 0, 0, 431, 432, 7, 6, 0, 0, 432, 433, 7, 5, 0, 0,
433, 434, 7, 9, 0, 0, 434, 104, 1, 0, 0, 0, 435, 436, 7, 9, 0, 0, 436, 437, 7, 5, 0, 0,
437, 438, 7, 19, 0, 0, 438, 439, 7, 11, 0, 0, 439, 440, 7, 20, 0, 0, 440, 441, 7, 5, 0, 0,
441, 106, 1, 0, 0, 0, 442, 443, 7, 9, 0, 0, 443, 444, 7, 5, 0, 0, 444, 445, 7, 8, 0, 0,
445, 446, 7, 12, 0, 0, 446, 447, 7, 9, 0, 0, 447, 448, 7, 13, 0, 0, 448, 108, 1, 0, 0, 0,
449, 450, 7, 14, 0, 0, 450, 451, 7, 5, 0, 0, 451, 452, 7, 8, 0, 0, 452, 110, 1, 0, 0, 0,
453, 454, 7, 14, 0, 0, 454, 455, 7, 21, 0, 0, 455, 456, 7, 4, 0, 0, 456, 457, 7, 18, 0, 0,
457, 112, 1, 0, 0, 0, 458, 459, 7, 22, 0, 0, 459, 460, 7, 17, 0, 0, 460, 461, 7, 5, 0, 0,
461, 462, 7, 9, 0, 0, 462, 463, 7, 5, 0, 0, 463, 114, 1, 0, 0, 0, 464, 465, 7, 22, 0, 0,
465, 466, 7, 4, 0, 0, 466, 467, 7, 8, 0, 0, 467, 468, 7, 17, 0, 0, 468, 116, 1, 0, 0, 0,
469, 470, 7, 12, 0, 0, 470, 471, 7, 13, 0, 0, 471, 472, 7, 4, 0, 0, 472, 473, 7, 11, 0, 0,
473, 474, 7, 13, 0, 0, 474, 118, 1, 0, 0, 0, 475, 476, 7, 12, 0, 0, 476, 477, 7, 13, 0, 0,
477, 478, 7, 22, 0, 0, 478, 479, 7, 4, 0, 0, 479, 480, 7, 13, 0, 0, 480, 481, 7, 6, 0, 0,
481, 120, 1, 0, 0, 0, 482, 483, 7, 1, 0, 0, 483, 484, 7, 13, 0, 0, 484, 485, 7, 6, 0, 0,
485, 122, 1, 0, 0, 0, 486, 487, 7, 1, 0, 0, 487, 488, 7, 14, 0, 0, 488, 124, 1, 0, 0, 0,
489, 490, 7, 0, 0, 0, 490, 491, 7, 11, 0, 0, 491, 492, 7, 13, 0, 0, 492, 493, 7, 8, 0, 0,
493, 494, 7, 1, 0, 0, 494, 495, 7, 4, 0, 0, 495, 496, 7, 13, 0, 0, 496, 497, 7, 14, 0, 0,
497, 126, 1, 0, 0, 0, 498, 499, 7, 6, 0, 0, 499, 500, 7, 4, 0, 0, 500, 501, 7, 14, 0, 0,
501, 502, 7, 8, 0, 0, 502, 503, 7, 4, 0, 0, 503, 504, 7, 13, 0, 0, 504, 505, 7, 0, 0, 0,
505, 506, 7, 8, 0, 0, 506, 128, 1, 0, 0, 0, 507, 508, 7, 5, 0, 0, 508, 509, 7, 13, 0, 0,
509, 510, 7, 6, 0, 0, 510, 511, 7, 14, 0, 0, 511, 130, 1, 0, 0, 0, 512, 513, 7, 4, 0, 0,
513, 514, 7, 13, 0, 0, 514, 132, 1, 0, 0, 0, 515, 516, 7, 4, 0, 0, 516, 517, 7, 13, 0, 0,
517, 518, 7, 6, 0, 0, 518, 519, 7, 5, 0, 0, 519, 520, 7, 10, 0, 0, 520, 134, 1, 0, 0, 0,
521, 522, 7, 4, 0, 0, 522, 523, 7, 14, 0, 0, 523, 136, 1, 0, 0, 0, 524, 525, 7, 13, 0, 0,
525, 526, 7, 11, 0, 0, 526, 527, 7, 8, 0, 0, 527, 138, 1, 0, 0, 0, 528, 529, 7, 11, 0, 0,
529, 530, 7, 9, 0, 0, 530, 140, 1, 0, 0, 0, 531, 532, 7, 14, 0, 0, 532, 533, 7, 8, 0, 0,
533, 534, 7, 1, 0, 0, 534, 535, 7, 9, 0, 0, 535, 536, 7, 8, 0, 0, 536, 537, 7, 14, 0, 0,
537, 142, 1, 0, 0, 0, 538, 539, 7, 10, 0, 0, 539, 540, 7, 11, 0, 0, 540, 541, 7, 9, 0, 0,
541, 144, 1, 0, 0, 0, 542, 543, 7, 14, 0, 0, 543, 544, 7, 17, 0, 0, 544, 545, 7, 11, 0, 0,
545, 546, 7, 9, 0, 0, 546, 547, 7, 8, 0, 0, 547, 548, 7, 5, 0, 0, 548, 549, 7, 14, 0, 0,
549, 550, 7, 8, 0, 0, 550, 551, 7, 18, 0, 0, 551, 552, 7, 1, 0, 0, 552, 553, 7, 8, 0, 0,
553, 554, 7, 17, 0, 0, 554, 146, 1, 0, 0, 0, 555, 556, 7, 7, 0, 0, 556, 557, 7, 1, 0, 0,
557, 558, 7, 2, 0, 0, 558, 559, 7, 14, 0, 0, 559, 560, 7, 5, 0, 0, 560, 148, 1, 0, 0, 0,
561, 562, 7, 8, 0, 0, 562, 563, 7, 9, 0, 0, 563, 564, 7, 12, 0, 0, 564, 565, 7, 5, 0, 0,
565, 150, 1, 0, 0, 0, 566, 567, 7, 13, 0, 0, 567, 568, 7, 12, 0, 0, 568, 569, 7, 2, 0, 0,
569, 570, 7, 2, 0, 0, 570, 152, 1, 0, 0, 0, 571, 572, 7, 0, 0, 0, 572, 573, 7, 11, 0, 0,
573, 574, 7, 13, 0, 0, 574, 575, 7, 14, 0, 0, 575, 576, 7, 8, 0, 0, 576, 577, 7, 9, 0, 0,
577, 578, 7, 1, 0, 0, 578, 579, 7, 4, 0, 0, 579, 580, 7, 13, 0, 0, 580, 581, 7, 8, 0, 0,
581, 154, 1, 0, 0, 0, 582, 583, 7, 6, 0, 0, 583, 584, 7, 11, 0, 0, 584, 156, 1, 0, 0, 0,
585, 586, 7, 7, 0, 0, 586, 587, 7, 11, 0, 0, 587, 588, 7, 9, 0, 0, 588, 158, 1, 0, 0, 0,
589, 590, 7, 9, 0, 0, 590, 591, 7, 5, 0, 0, 591, 592, 7, 23, 0, 0, 592, 593, 7, 12, 0, 0,
593, 594, 7, 4, 0, 0, 594, 595, 7, 9, 0, 0, 595, 596, 7, 5, 0, 0, 596, 160, 1, 0, 0, 0,
597, 598, 7, 12, 0, 0, 598, 599, 7, 13, 0, 0, 599, 600, 7, 4, 0, 0, 600, 601, 7, 23, 0, 0,
601, 602, 7, 12, 0, 0, 602, 603, 7, 5, 0, 0, 603, 162, 1, 0, 0, 0, 604, 605, 7, 0, 0, 0,
605, 606, 7, 1, 0, 0, 606, 607, 7, 14, 0, 0, 607, 608, 7, 5, 0, 0, 608, 164, 1, 0, 0, 0,
609, 610, 7, 22, 0, 0, 610, 611, 7, 17, 0, 0, 611, 612, 7, 5, 0, 0, 612, 613, 7, 13, 0, 0,
613, 166, 1, 0, 0, 0, 614, 615, 7, 8, 0, 0, 615, 616, 7, 17, 0, 0, 616, 617, 7, 5, 0, 0,
617, 618, 7, 13, 0, 0, 618, 168, 1, 0, 0, 0, 619, 620, 7, 5, 0, 0, 620, 621, 7, 2, 0, 0,
621, 622, 7, 14, 0, 0, 622, 623, 7, 5, 0, 0, 623, 170, 1, 0, 0, 0, 624, 625, 7, 5, 0, 0,
625, 626, 7, 13, 0, 0, 626, 627, 7, 6, 0, 0, 627, 172, 1, 0, 0, 0, 628, 629, 7, 19, 0, 0,
629, 630, 7, 1, 0, 0, 630, 631, 7, 13, 0, 0, 631, 632, 7, 6, 0, 0, 632, 633, 7, 1, 0, 0,
633, 634, 7, 8, 0, 0, 634, 635, 7, 11, 0, 0, 635, 636, 7, 9, 0, 0, 636, 637, 7, 3, 0, 0,
637, 174, 1, 0, 0, 0, 638, 639, 7, 14, 0, 0, 639, 640, 7, 0, 0, 0, 640, 641, 7, 1, 0, 0,
641, 642, 7, 2, 0, 0, 642, 643, 7, 1, 0, 0, 643, 644, 7, 9, 0, 0, 644, 176, 1, 0, 0, 0,
645, 646, 7, 11, 0, 0, 646, 647, 7, 7, 0, 0, 647, 178, 1, 0, 0, 0, 648, 649, 7, 1, 0, 0,
649, 650, 7, 6, 0, 0, 650, 651, 7, 6, 0, 0, 651, 180, 1, 0, 0, 0, 652, 653, 7, 6, 0, 0,
653, 654, 7, 9, 0, 0, 654, 655, 7, 11, 0, 0, 655, 656, 7, 18, 0, 0, 656, 182, 1, 0, 0, 0,
657, 661, 3, 217, 108, 0, 658, 660, 3, 215, 107, 0, 659, 658, 1, 0, 0, 0, 660, 663, 1, 0,
0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 184, 1, 0, 0, 0, 663, 661, 1, 0, 0,
0, 664, 668, 5, 96, 0, 0, 665, 667, 9, 0, 0, 0, 666, 665, 1, 0, 0, 0, 667, 670, 1, 0, 0, 0,
668, 669, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 669, 671, 1, 0, 0, 0, 670, 668, 1, 0, 0, 0,
671, 672, 5, 96, 0, 0, 672, 186, 1, 0, 0, 0, 673, 678, 5, 39, 0, 0, 674, 677, 8, 24, 0, 0,
675, 677, 3, 201, 100, 0, 676, 674, 1, 0, 0, 0, 676, 675, 1, 0, 0, 0, 677, 680, 1, 0, 0, 0,
678, 676, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 681, 1, 0, 0, 0, 680, 678, 1, 0, 0, 0,
681, 682, 5, 39, 0, 0, 682, 188, 1, 0, 0, 0, 683, 688, 5, 34, 0, 0, 684, 687, 8, 25, 0, 0,
685, 687, 3, 201, 100, 0, 686, 684, 1, 0, 0, 0, 686, 685, 1, 0, 0, 0, 687, 690, 1, 0, 0, 0,
688, 686, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 691, 1, 0, 0, 0, 690, 688, 1, 0, 0, 0,
691, 692, 5, 34, 0, 0, 692, 190, 1, 0, 0, 0, 693, 698, 3, 205, 102, 0, 694, 698, 3, 209,
104, 0, 695, 698, 3, 213, 106, 0, 696, 698, 3, 193, 96, 0, 697, 693, 1, 0, 0, 0, 697, 694,
1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 697, 696, 1, 0, 0, 0, 698, 192, 1, 0, 0, 0, 699, 700, 3,
213, 106, 0, 700, 701, 5, 46, 0, 0, 701, 702, 3, 213, 106, 0, 702, 706, 1, 0, 0, 0, 703,
704, 5, 46, 0, 0, 704, 706, 3, 213, 106, 0, 705, 699, 1, 0, 0, 0, 705, 703, 1, 0, 0, 0,
706, 708, 1, 0, 0, 0, 707, 709, 3, 203, 101, 0, 708, 707, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0,
709, 711, 1, 0, 0, 0, 710, 712, 7, 26, 0, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0,
712, 722, 1, 0, 0, 0, 713, 719, 3, 213, 106, 0, 714, 716, 3, 203, 101, 0, 715, 717, 7, 26,
0, 0, 716, 715, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 720, 1, 0, 0, 0, 718, 720, 7, 26, 0,
0, 719, 714, 1, 0, 0, 0, 719, 718, 1, 0, 0, 0, 720, 722, 1, 0, 0, 0, 721, 705, 1, 0, 0, 0,
721, 713, 1, 0, 0, 0, 722, 194, 1, 0, 0, 0, 723, 725, 7, 27, 0, 0, 724, 723, 1, 0, 0, 0,
725, 726, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0,
728, 729, 6, 97, 0, 0, 729, 196, 1, 0, 0, 0, 730, 731, 5, 47, 0, 0, 731, 732, 5, 42, 0, 0,
732, 736, 1, 0, 0, 0, 733, 735, 9, 0, 0, 0, 734, 733, 1, 0, 0, 0, 735, 738, 1, 0, 0, 0,
736, 737, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 737, 739, 1, 0, 0, 0, 738, 736, 1, 0, 0, 0,
739, 740, 5, 42, 0, 0, 740, 741, 5, 47, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 6, 98, 1, 0,
743, 198, 1, 0, 0, 0, 744, 745, 5, 47, 0, 0, 745, 746, 5, 47, 0, 0, 746, 750, 1, 0, 0, 0,
747, 749, 8, 28, 0, 0, 748, 747, 1, 0, 0, 0, 749, 752, 1, 0, 0, 0, 750, 748, 1, 0, 0, 0,
750, 751, 1, 0, 0, 0, 751, 753, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 753, 754, 6, 99, 1, 0,
754, 200, 1, 0, 0, 0, 755, 756, 5, 92, 0, 0, 756, 777, 7, 29, 0, 0, 757, 762, 5, 92, 0, 0,
758, 760, 7, 30, 0, 0, 759, 758, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0,
761, 763, 7, 31, 0, 0, 762, 759, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0,
764, 777, 7, 31, 0, 0, 765, 767, 5, 92, 0, 0, 766, 768, 7, 12, 0, 0, 767, 766, 1, 0, 0, 0,
768, 769, 1, 0, 0, 0, 769, 767, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0,
771, 772, 3, 207, 103, 0, 772, 773, 3, 207, 103, 0, 773, 774, 3, 207, 103, 0, 774, 775, 3,
207, 103, 0, 775, 777, 1, 0, 0, 0, 776, 755, 1, 0, 0, 0, 776, 757, 1, 0, 0, 0, 776, 765, 1,
0, 0, 0, 777, 202, 1, 0, 0, 0, 778, 780, 7, 5, 0, 0, 779, 781, 7, 32, 0, 0, 780, 779, 1, 0,
0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 3, 213, 106, 0, 783, 204, 1, 0,
0, 0, 784, 785, 5, 48, 0, 0, 785, 786, 7, 10, 0, 0, 786, 787, 1, 0, 0, 0, 787, 796, 3, 207,
103, 0, 788, 791, 3, 207, 103, 0, 789, 791, 5, 95, 0, 0, 790, 788, 1, 0, 0, 0, 790, 789, 1,
0, 0, 0, 791, 794, 1, 0, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 795, 1, 0,
0, 0, 794, 792, 1, 0, 0, 0, 795, 797, 3, 207, 103, 0, 796, 792, 1, 0, 0, 0, 796, 797, 1, 0,
0, 0, 797, 206, 1, 0, 0, 0, 798, 799, 7, 33, 0, 0, 799, 208, 1, 0, 0, 0, 800, 801, 5, 48,
0, 0, 801, 802, 7, 11, 0, 0, 802, 803, 1, 0, 0, 0, 803, 812, 3, 211, 105, 0, 804, 807, 3,
211, 105, 0, 805, 807, 5, 95, 0, 0, 806, 804, 1, 0, 0, 0, 806, 805, 1, 0, 0, 0, 807, 810,
1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 811, 1, 0, 0, 0, 810, 808, 1,
0, 0, 0, 811, 813, 3, 211, 105, 0, 812, 808, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 210, 1,
0, 0, 0, 814, 815, 7, 31, 0, 0, 815, 212, 1, 0, 0, 0, 816, 824, 7, 34, 0, 0, 817, 819, 7,
35, 0, 0, 818, 817, 1, 0, 0, 0, 819, 822, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0,
0, 0, 821, 823, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 823, 825, 7, 34, 0, 0, 824, 820, 1, 0, 0,
0, 824, 825, 1, 0, 0, 0, 825, 214, 1, 0, 0, 0, 826, 829, 3, 217, 108, 0, 827, 829, 7, 34,
0, 0, 828, 826, 1, 0, 0, 0, 828, 827, 1, 0, 0, 0, 829, 216, 1, 0, 0, 0, 830, 835, 7, 36, 0,
0, 831, 835, 8, 37, 0, 0, 832, 833, 7, 38, 0, 0, 833, 835, 7, 39, 0, 0, 834, 830, 1, 0, 0,
0, 834, 831, 1, 0, 0, 0, 834, 832, 1, 0, 0, 0, 835, 218, 1, 0, 0, 0, 32, 0, 661, 668, 676,
678, 686, 688, 697, 705, 708, 711, 716, 719, 721, 726, 736, 750, 759, 762, 769, 776, 780,
790, 792, 796, 806, 808, 812, 820, 824, 828, 834, 2, 0, 1, 0, 0, 2, 0
];
}