1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-08 17:54:40 +00:00

Implemented #pragma link() and -T for specifying custom linking script. #113

This commit is contained in:
Jesper Gravgaard 2019-08-09 17:07:11 +02:00
parent 313d45fd03
commit 558f166dd4
17 changed files with 1656 additions and 1436 deletions

View File

@ -14,6 +14,7 @@ import org.antlr.v4.runtime.*;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
@ -34,15 +35,22 @@ public class Compiler {
/** Disable loop head constant optimization. It identified whenever a while()/for() has a constant condition on the first iteration and rewrites it. */
private boolean disableLoopHeadConstant = false;
/** File name of link script to use (from command line parameter). */
private String linkScriptFileName;
public Compiler() {
this.program = new Program();
}
public void setLinkScriptFileName(String linkScript) {
linkScriptFileName = linkScript;
}
public void setUpliftCombinations(int upliftCombinations) {
this.upliftCombinations = upliftCombinations;
}
void enableZeroPageCoalasce() {
void enableZeroPageCoalesce() {
this.enableZeroPageCoalasce = true;
}
@ -58,6 +66,20 @@ public class Compiler {
program.setLog(compileLog);
}
public static void loadLinkScriptFile(String fileName, Program program, Path currentPath) {
try {
File file = loadFile(fileName, currentPath, program);
Path filePath = file.toPath();
String outputFileName = new File(program.getFileName()).getName();
String linkScript = new String(Files.readAllBytes(filePath));
linkScript = linkScript.replace("%O", outputFileName);
program.setLinkScript(filePath, linkScript);
program.setTargetPlatform(TargetPlatform.CUSTOM);
} catch(IOException e) {
throw new CompileError("Error loading link script file " + fileName, e);
}
}
public static void loadAndParseFile(String fileName, Program program, Path currentPath) {
try {
if(!fileName.endsWith(".kc")) {
@ -138,14 +160,16 @@ public class Compiler {
public Program compile(String fileName) {
if(fileName.endsWith(".kc")) {
fileName = fileName.substring(0, fileName.length()-3);
fileName = fileName.substring(0, fileName.length() - 3);
}
program.setFileName(fileName);
program.setStatementSequence(new StatementSequence());
try {
File currentPath = new File(".");
loadAndParseFile(fileName, program, currentPath.toPath());
Path currentPath = new File(".").toPath();
if(this.linkScriptFileName != null) {
loadLinkScriptFile(linkScriptFileName, program, currentPath);
}
program.setStatementSequence(new StatementSequence());
loadAndParseFile(fileName, program, currentPath);
StatementSequence sequence = program.getStatementSequence();
sequence.addStatement(new StatementCall(null, SymbolRef.MAIN_PROC_NAME, new ArrayList<>(), new StatementSource(RuleContext.EMPTY), Comment.NO_COMMENTS));
program.setStatementSequence(sequence);
@ -288,7 +312,10 @@ public class Compiler {
optimizations.add(new PassNTypeIdSimplification(program));
optimizations.add(new PassNSizeOfSimplification(program));
optimizations.add(new PassNStatementIndices(program));
optimizations.add(() -> { program.clearVariableReferenceInfos(); return false; });
optimizations.add(() -> {
program.clearVariableReferenceInfos();
return false;
});
optimizations.add(new Pass2UnaryNotSimplification(program));
optimizations.add(new Pass2AliasElimination(program));
optimizations.add(new Pass2IdenticalPhiElimination(program));
@ -317,10 +344,19 @@ public class Compiler {
optimizations.add(new Pass2EliminateUnusedBlocks(program));
if(!disableLoopHeadConstant) {
optimizations.add(new PassNStatementIndices(program));
optimizations.add(() -> { program.clearDominators(); return false; });
optimizations.add(() -> { program.clearLoopSet(); return false; });
optimizations.add(() -> {
program.clearDominators();
return false;
});
optimizations.add(() -> {
program.clearLoopSet();
return false;
});
optimizations.add(new Pass2LoopHeadConstantIdentification(program));
optimizations.add(() -> { program.clearStatementIndices(); return false; });
optimizations.add(() -> {
program.clearStatementIndices();
return false;
});
}
return optimizations;
}
@ -333,10 +369,22 @@ public class Compiler {
private void pass2UnrollLoops() {
List<PassStep> loopUnrolling = new ArrayList<>();
loopUnrolling.add(new PassNStatementIndices(program));
loopUnrolling.add(() -> { program.clearVariableReferenceInfos(); return false; });
loopUnrolling.add(() -> { program.clearStatementInfos(); return false; });
loopUnrolling.add(() -> { program.clearDominators(); return false; });
loopUnrolling.add(() -> { program.clearLoopSet(); return false; });
loopUnrolling.add(() -> {
program.clearVariableReferenceInfos();
return false;
});
loopUnrolling.add(() -> {
program.clearStatementInfos();
return false;
});
loopUnrolling.add(() -> {
program.clearDominators();
return false;
});
loopUnrolling.add(() -> {
program.clearLoopSet();
return false;
});
loopUnrolling.add(new Pass2LoopUnroll(program));
if(getLog().isVerboseLoopUnroll()) {
@ -364,7 +412,10 @@ public class Compiler {
// Constant inlining optimizations - as the last step to ensure that constant identification has been completed
List<PassStep> constantOptimizations = new ArrayList<>();
constantOptimizations.add(new PassNStatementIndices(program));
constantOptimizations.add(() -> { program.clearVariableReferenceInfos(); return false; });
constantOptimizations.add(() -> {
program.clearVariableReferenceInfos();
return false;
});
constantOptimizations.add(new Pass2NopCastInlining(program));
constantOptimizations.add(new Pass2MultiplyToShiftRewriting(program));
constantOptimizations.add(new Pass2ConstantInlining(program));
@ -509,7 +560,7 @@ public class Compiler {
new Pass4CodeGeneration(program, false).generate();
new Pass4AssertNoCpuClobber(program).check();
getLog().append("\nINITIAL ASM");
getLog().append("Target platform is "+program.getTargetPlatform().getName());
getLog().append("Target platform is " + program.getTargetPlatform().getName());
getLog().append(program.getAsm().toString(new AsmProgram.AsmPrintState(true), program));
// Find potential registers for each live range equivalence class - based on clobbering of fragments

View File

@ -123,6 +123,9 @@ public class KickC implements Callable<Void> {
@CommandLine.Option(names = {"-t", "-target"}, description = "The target system. Default is C64 with BASIC upstart. ")
private String target = TargetPlatform.C64BASIC.getName();
@CommandLine.Option(names = {"-T", "-link"}, description = "Link using a linker script in KickAss segment format.")
private String linkScript = null;
/** Program Exit Code signaling a compile error. */
public static final int COMPILE_ERROR = 1;
@ -212,13 +215,17 @@ public class KickC implements Callable<Void> {
}
if(optimizeZeroPageCoalesce) {
compiler.enableZeroPageCoalasce();
compiler.enableZeroPageCoalesce();
}
if(optimizeNoLoopHeadConstant) {
compiler.disableLoopHeadConstant();
}
if(linkScript!=null) {
compiler.setLinkScriptFileName(linkScript);
}
System.out.println("Compiling " + kcFile);
Program program = null;
try {

View File

@ -27,6 +27,10 @@ public class Program {
private List<String> importPaths;
/** Imported files. PASS 0 (STATIC) */
private List<String> imported;
/** Path to any custom link script file used for linking (STATIC) */
private Path linkScriptFilePath;
/** Body to any custom link script file used for linking (STATIC) */
private String linkScriptBody;
/** The target platform that the program is being build for. PASS 0-5 (STATIC) */
private TargetPlatform targetPlatform = TargetPlatform.DEFAULT;
@ -427,4 +431,16 @@ public class Program {
this.log = log;
}
public void setLinkScript(Path linkScriptFilePath, String linkScriptBody) {
this.linkScriptFilePath = linkScriptFilePath;
this.linkScriptBody = linkScriptBody;
}
public Path getLinkScriptFilePath() {
return linkScriptFilePath;
}
public String getLinkScriptBody() {
return linkScriptBody;
}
}

View File

@ -69,6 +69,7 @@ globalDirective
: ('#pragma' 'reserve'|'#reserve') '(' NUMBER ( ',' NUMBER )* ')' #globalDirectiveReserve
| ('#pragma' 'pc'|'#pc') '(' NUMBER ')' #globalDirectivePc
| ('#pragma' 'target'|'#target') '(' NAME ')' #globalDirectivePlatform
| ('#pragma' 'link'|'#link') '(' STRING ')' #globalDirectiveLinkScript
| ('#pragma' 'encoding'|'#encoding') '(' NAME')' #globalDirectiveEncoding
;

View File

@ -85,26 +85,28 @@ T__83=84
T__84=85
T__85=86
T__86=87
MNEMONIC=88
KICKASM=89
SIMPLETYPE=90
STRING=91
CHAR=92
BOOLEAN=93
NUMBER=94
NUMFLOAT=95
BINFLOAT=96
DECFLOAT=97
HEXFLOAT=98
NUMINT=99
BININTEGER=100
DECINTEGER=101
HEXINTEGER=102
NAME=103
ASMREL=104
WS=105
COMMENT_LINE=106
COMMENT_BLOCK=107
T__87=88
T__88=89
MNEMONIC=90
KICKASM=91
SIMPLETYPE=92
STRING=93
CHAR=94
BOOLEAN=95
NUMBER=96
NUMFLOAT=97
BINFLOAT=98
DECFLOAT=99
HEXFLOAT=100
NUMINT=101
BININTEGER=102
DECINTEGER=103
HEXINTEGER=104
NAME=105
ASMREL=106
WS=107
COMMENT_LINE=108
COMMENT_BLOCK=109
'import'=1
';'=2
'typedef'=3
@ -121,74 +123,76 @@ COMMENT_BLOCK=107
'#pc'=14
'target'=15
'#target'=16
'encoding'=17
'#encoding'=18
'const'=19
'extern'=20
'align'=21
'register'=22
'inline'=23
'volatile'=24
'interrupt'=25
'if'=26
'else'=27
'while'=28
'do'=29
'for'=30
'return'=31
'break'=32
'continue'=33
'asm'=34
':'=35
'..'=36
'signed'=37
'unsigned'=38
'*'=39
'['=40
']'=41
'struct'=42
'enum'=43
'.'=44
'->'=45
'sizeof'=46
'typeid'=47
'--'=48
'++'=49
'+'=50
'-'=51
'!'=52
'&'=53
'~'=54
'>>'=55
'<<'=56
'/'=57
'%'=58
'<'=59
'>'=60
'=='=61
'!='=62
'<='=63
'>='=64
'^'=65
'|'=66
'&&'=67
'||'=68
'?'=69
'+='=70
'-='=71
'*='=72
'/='=73
'%='=74
'<<='=75
'>>='=76
'&='=77
'|='=78
'^='=79
'kickasm'=80
'resource'=81
'uses'=82
'clobbers'=83
'bytes'=84
'cycles'=85
'.byte'=86
'#'=87
'link'=17
'#link'=18
'encoding'=19
'#encoding'=20
'const'=21
'extern'=22
'align'=23
'register'=24
'inline'=25
'volatile'=26
'interrupt'=27
'if'=28
'else'=29
'while'=30
'do'=31
'for'=32
'return'=33
'break'=34
'continue'=35
'asm'=36
':'=37
'..'=38
'signed'=39
'unsigned'=40
'*'=41
'['=42
']'=43
'struct'=44
'enum'=45
'.'=46
'->'=47
'sizeof'=48
'typeid'=49
'--'=50
'++'=51
'+'=52
'-'=53
'!'=54
'&'=55
'~'=56
'>>'=57
'<<'=58
'/'=59
'%'=60
'<'=61
'>'=62
'=='=63
'!='=64
'<='=65
'>='=66
'^'=67
'|'=68
'&&'=69
'||'=70
'?'=71
'+='=72
'-='=73
'*='=74
'/='=75
'%='=76
'<<='=77
'>>='=78
'&='=79
'|='=80
'^='=81
'kickasm'=82
'resource'=83
'uses'=84
'clobbers'=85
'bytes'=86
'cycles'=87
'.byte'=88
'#'=89

View File

@ -239,6 +239,18 @@ public class KickCBaseListener implements KickCListener {
* <p>The default implementation does nothing.</p>
*/
@Override public void exitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx) { }
/**
* {@inheritDoc}
*

View File

@ -144,6 +144,13 @@ public class KickCBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*

View File

@ -29,10 +29,10 @@ public class KickCLexer extends Lexer {
T__66=67, T__67=68, T__68=69, T__69=70, T__70=71, T__71=72, T__72=73,
T__73=74, T__74=75, T__75=76, T__76=77, T__77=78, T__78=79, T__79=80,
T__80=81, T__81=82, T__82=83, T__83=84, T__84=85, T__85=86, T__86=87,
MNEMONIC=88, KICKASM=89, SIMPLETYPE=90, STRING=91, CHAR=92, BOOLEAN=93,
NUMBER=94, NUMFLOAT=95, BINFLOAT=96, DECFLOAT=97, HEXFLOAT=98, NUMINT=99,
BININTEGER=100, DECINTEGER=101, HEXINTEGER=102, NAME=103, ASMREL=104,
WS=105, COMMENT_LINE=106, COMMENT_BLOCK=107;
T__87=88, T__88=89, MNEMONIC=90, KICKASM=91, SIMPLETYPE=92, STRING=93,
CHAR=94, BOOLEAN=95, NUMBER=96, NUMFLOAT=97, BINFLOAT=98, DECFLOAT=99,
HEXFLOAT=100, NUMINT=101, BININTEGER=102, DECINTEGER=103, HEXINTEGER=104,
NAME=105, ASMREL=106, WS=107, COMMENT_LINE=108, COMMENT_BLOCK=109;
public static String[] channelNames = {
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
};
@ -53,11 +53,11 @@ public class KickCLexer extends Lexer {
"T__57", "T__58", "T__59", "T__60", "T__61", "T__62", "T__63", "T__64",
"T__65", "T__66", "T__67", "T__68", "T__69", "T__70", "T__71", "T__72",
"T__73", "T__74", "T__75", "T__76", "T__77", "T__78", "T__79", "T__80",
"T__81", "T__82", "T__83", "T__84", "T__85", "T__86", "MNEMONIC", "KICKASM",
"SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT",
"DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER",
"BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME", "NAME_START", "NAME_CHAR",
"ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
"T__81", "T__82", "T__83", "T__84", "T__85", "T__86", "T__87", "T__88",
"MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER",
"NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER",
"DECINTEGER", "HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME",
"NAME_START", "NAME_CHAR", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
};
}
public static final String[] ruleNames = makeRuleNames();
@ -66,16 +66,16 @@ public class KickCLexer extends Lexer {
return new String[] {
null, "'import'", "';'", "'typedef'", "','", "'='", "'('", "')'", "'{'",
"'}'", "'#pragma'", "'reserve'", "'#reserve'", "'pc'", "'#pc'", "'target'",
"'#target'", "'encoding'", "'#encoding'", "'const'", "'extern'", "'align'",
"'register'", "'inline'", "'volatile'", "'interrupt'", "'if'", "'else'",
"'while'", "'do'", "'for'", "'return'", "'break'", "'continue'", "'asm'",
"':'", "'..'", "'signed'", "'unsigned'", "'*'", "'['", "']'", "'struct'",
"'enum'", "'.'", "'->'", "'sizeof'", "'typeid'", "'--'", "'++'", "'+'",
"'-'", "'!'", "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'", "'<'", "'>'",
"'=='", "'!='", "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'?'",
"'+='", "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='",
"'^='", "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'",
"'cycles'", "'.byte'", "'#'"
"'#target'", "'link'", "'#link'", "'encoding'", "'#encoding'", "'const'",
"'extern'", "'align'", "'register'", "'inline'", "'volatile'", "'interrupt'",
"'if'", "'else'", "'while'", "'do'", "'for'", "'return'", "'break'",
"'continue'", "'asm'", "':'", "'..'", "'signed'", "'unsigned'", "'*'",
"'['", "']'", "'struct'", "'enum'", "'.'", "'->'", "'sizeof'", "'typeid'",
"'--'", "'++'", "'+'", "'-'", "'!'", "'&'", "'~'", "'>>'", "'<<'", "'/'",
"'%'", "'<'", "'>'", "'=='", "'!='", "'<='", "'>='", "'^'", "'|'", "'&&'",
"'||'", "'?'", "'+='", "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='",
"'&='", "'|='", "'^='", "'kickasm'", "'resource'", "'uses'", "'clobbers'",
"'bytes'", "'cycles'", "'.byte'", "'#'"
};
}
private static final String[] _LITERAL_NAMES = makeLiteralNames();
@ -88,10 +88,10 @@ public class KickCLexer extends Lexer {
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING",
"CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT",
"NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME", "ASMREL",
"WS", "COMMENT_LINE", "COMMENT_BLOCK"
null, null, null, null, null, null, "MNEMONIC", "KICKASM", "SIMPLETYPE",
"STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT",
"HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME",
"ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
};
}
private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
@ -153,7 +153,7 @@ public class KickCLexer extends Lexer {
public ATN getATN() { return _ATN; }
public static final String _serializedATN =
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2m\u0449\b\1\4\2\t"+
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2o\u0458\b\1\4\2\t"+
"\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+
"\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+
"\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+
@ -165,387 +165,392 @@ public class KickCLexer extends Lexer {
"\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+
"\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_\4"+
"`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k\t"+
"k\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3"+
"\3\3\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3"+
"\t\3\t\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3\f"+
"\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3"+
"\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21\3"+
"\21\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3"+
"\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3"+
"\24\3\24\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3"+
"\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3"+
"\30\3\30\3\30\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\32\3\32\3"+
"\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34\3"+
"\34\3\34\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\37\3\37\3\37\3"+
"\37\3 \3 \3 \3 \3 \3 \3 \3!\3!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\3\""+
"\3\"\3\"\3#\3#\3#\3#\3$\3$\3%\3%\3%\3&\3&\3&\3&\3&\3&\3&\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3)\3)\3*\3*\3+\3+\3+\3+\3+\3+\3+\3,\3,\3"+
",\3,\3,\3-\3-\3.\3.\3.\3/\3/\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\60\3\60\3"+
"\60\3\60\3\61\3\61\3\61\3\62\3\62\3\62\3\63\3\63\3\64\3\64\3\65\3\65\3"+
"\66\3\66\3\67\3\67\38\38\38\39\39\39\3:\3:\3;\3;\3<\3<\3=\3=\3>\3>\3>"+
"\3?\3?\3?\3@\3@\3@\3A\3A\3A\3B\3B\3C\3C\3D\3D\3D\3E\3E\3E\3F\3F\3G\3G"+
"\3G\3H\3H\3H\3I\3I\3I\3J\3J\3J\3K\3K\3K\3L\3L\3L\3L\3M\3M\3M\3M\3N\3N"+
"\3N\3O\3O\3O\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R"+
"\3R\3S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3V\3V"+
"\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3W\3X\3X\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+
"\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+
"\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+
"\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+
"\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+
"\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+
"\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+
"\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+
"\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+
"\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+
"\3Y\3Y\3Y\3Y\3Y\5Y\u034a\nY\3Z\3Z\3Z\3Z\7Z\u0350\nZ\fZ\16Z\u0353\13Z\3"+
"Z\3Z\3Z\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3"+
"[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\5[\u037d\n[\3\\\3\\"+
"\3\\\3\\\7\\\u0383\n\\\f\\\16\\\u0386\13\\\3\\\3\\\5\\\u038a\n\\\3\\\3"+
"\\\5\\\u038e\n\\\5\\\u0390\n\\\3\\\5\\\u0393\n\\\3]\3]\3]\3]\5]\u0399"+
"\n]\3]\3]\3^\3^\3^\3^\3^\3^\3^\3^\3^\5^\u03a6\n^\3_\3_\5_\u03aa\n_\3`"+
"\3`\3`\5`\u03af\n`\3a\3a\3a\3a\3a\5a\u03b6\na\3a\7a\u03b9\na\fa\16a\u03bc"+
"\13a\3a\3a\6a\u03c0\na\ra\16a\u03c1\3b\7b\u03c5\nb\fb\16b\u03c8\13b\3"+
"b\3b\6b\u03cc\nb\rb\16b\u03cd\3c\3c\3c\3c\3c\5c\u03d5\nc\3c\7c\u03d8\n"+
"c\fc\16c\u03db\13c\3c\3c\6c\u03df\nc\rc\16c\u03e0\3d\3d\3d\5d\u03e6\n"+
"d\3d\3d\3d\5d\u03eb\nd\3e\3e\3e\6e\u03f0\ne\re\16e\u03f1\3e\3e\6e\u03f6"+
"\ne\re\16e\u03f7\5e\u03fa\ne\3f\6f\u03fd\nf\rf\16f\u03fe\3g\3g\3g\3g\3"+
"g\5g\u0406\ng\3g\6g\u0409\ng\rg\16g\u040a\3h\3h\3i\3i\3j\3j\3k\3k\7k\u0415"+
"\nk\fk\16k\u0418\13k\3l\3l\3m\3m\3n\3n\7n\u0420\nn\fn\16n\u0423\13n\3"+
"n\6n\u0426\nn\rn\16n\u0427\3o\6o\u042b\no\ro\16o\u042c\3o\3o\3p\3p\3p"+
"\3p\7p\u0435\np\fp\16p\u0438\13p\3p\3p\3q\3q\3q\3q\7q\u0440\nq\fq\16q"+
"\u0443\13q\3q\3q\3q\3q\3q\4\u0351\u0441\2r\3\3\5\4\7\5\t\6\13\7\r\b\17"+
"\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+"+
"\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+"+
"U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u<w=y>{?}@\177A\u0081"+
"B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095"+
"L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9"+
"V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd"+
"`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cf\2\u00d1"+
"\2\u00d3\2\u00d5i\u00d7\2\u00d9\2\u00dbj\u00ddk\u00dfl\u00e1m\3\2\22\3"+
"\2$$\3\2||\4\2rruu\4\2ooww\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62"+
"\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\6\2\13\f\17"+
"\17\"\"\u00a2\u00a2\4\2\f\f\17\17\2\u04bb\2\3\3\2\2\2\2\5\3\2\2\2\2\7"+
"\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2"+
"\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2"+
"\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2"+
"\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2"+
"\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2"+
"\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M"+
"\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2"+
"\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2"+
"\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s"+
"\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177"+
"\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2"+
"\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091"+
"\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2"+
"\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3"+
"\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2"+
"\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5"+
"\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2"+
"\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2\2\2\u00c7"+
"\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2\2\2\u00d5\3\2\2"+
"\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df\3\2\2\2\2\u00e1\3\2\2\2\3\u00e3"+
"\3\2\2\2\5\u00ea\3\2\2\2\7\u00ec\3\2\2\2\t\u00f4\3\2\2\2\13\u00f6\3\2"+
"\2\2\r\u00f8\3\2\2\2\17\u00fa\3\2\2\2\21\u00fc\3\2\2\2\23\u00fe\3\2\2"+
"\2\25\u0100\3\2\2\2\27\u0108\3\2\2\2\31\u0110\3\2\2\2\33\u0119\3\2\2\2"+
"\35\u011c\3\2\2\2\37\u0120\3\2\2\2!\u0127\3\2\2\2#\u012f\3\2\2\2%\u0138"+
"\3\2\2\2\'\u0142\3\2\2\2)\u0148\3\2\2\2+\u014f\3\2\2\2-\u0155\3\2\2\2"+
"/\u015e\3\2\2\2\61\u0165\3\2\2\2\63\u016e\3\2\2\2\65\u0178\3\2\2\2\67"+
"\u017b\3\2\2\29\u0180\3\2\2\2;\u0186\3\2\2\2=\u0189\3\2\2\2?\u018d\3\2"+
"\2\2A\u0194\3\2\2\2C\u019a\3\2\2\2E\u01a3\3\2\2\2G\u01a7\3\2\2\2I\u01a9"+
"\3\2\2\2K\u01ac\3\2\2\2M\u01b3\3\2\2\2O\u01bc\3\2\2\2Q\u01be\3\2\2\2S"+
"\u01c0\3\2\2\2U\u01c2\3\2\2\2W\u01c9\3\2\2\2Y\u01ce\3\2\2\2[\u01d0\3\2"+
"\2\2]\u01d3\3\2\2\2_\u01da\3\2\2\2a\u01e1\3\2\2\2c\u01e4\3\2\2\2e\u01e7"+
"\3\2\2\2g\u01e9\3\2\2\2i\u01eb\3\2\2\2k\u01ed\3\2\2\2m\u01ef\3\2\2\2o"+
"\u01f1\3\2\2\2q\u01f4\3\2\2\2s\u01f7\3\2\2\2u\u01f9\3\2\2\2w\u01fb\3\2"+
"\2\2y\u01fd\3\2\2\2{\u01ff\3\2\2\2}\u0202\3\2\2\2\177\u0205\3\2\2\2\u0081"+
"\u0208\3\2\2\2\u0083\u020b\3\2\2\2\u0085\u020d\3\2\2\2\u0087\u020f\3\2"+
"\2\2\u0089\u0212\3\2\2\2\u008b\u0215\3\2\2\2\u008d\u0217\3\2\2\2\u008f"+
"\u021a\3\2\2\2\u0091\u021d\3\2\2\2\u0093\u0220\3\2\2\2\u0095\u0223\3\2"+
"\2\2\u0097\u0226\3\2\2\2\u0099\u022a\3\2\2\2\u009b\u022e\3\2\2\2\u009d"+
"\u0231\3\2\2\2\u009f\u0234\3\2\2\2\u00a1\u0237\3\2\2\2\u00a3\u023f\3\2"+
"\2\2\u00a5\u0248\3\2\2\2\u00a7\u024d\3\2\2\2\u00a9\u0256\3\2\2\2\u00ab"+
"\u025c\3\2\2\2\u00ad\u0263\3\2\2\2\u00af\u0269\3\2\2\2\u00b1\u0349\3\2"+
"\2\2\u00b3\u034b\3\2\2\2\u00b5\u037c\3\2\2\2\u00b7\u037e\3\2\2\2\u00b9"+
"\u0394\3\2\2\2\u00bb\u03a5\3\2\2\2\u00bd\u03a9\3\2\2\2\u00bf\u03ae\3\2"+
"\2\2\u00c1\u03b5\3\2\2\2\u00c3\u03c6\3\2\2\2\u00c5\u03d4\3\2\2\2\u00c7"+
"\u03e5\3\2\2\2\u00c9\u03f9\3\2\2\2\u00cb\u03fc\3\2\2\2\u00cd\u0405\3\2"+
"\2\2\u00cf\u040c\3\2\2\2\u00d1\u040e\3\2\2\2\u00d3\u0410\3\2\2\2\u00d5"+
"\u0412\3\2\2\2\u00d7\u0419\3\2\2\2\u00d9\u041b\3\2\2\2\u00db\u041d\3\2"+
"\2\2\u00dd\u042a\3\2\2\2\u00df\u0430\3\2\2\2\u00e1\u043b\3\2\2\2\u00e3"+
"\u00e4\7k\2\2\u00e4\u00e5\7o\2\2\u00e5\u00e6\7r\2\2\u00e6\u00e7\7q\2\2"+
"\u00e7\u00e8\7t\2\2\u00e8\u00e9\7v\2\2\u00e9\4\3\2\2\2\u00ea\u00eb\7="+
"\2\2\u00eb\6\3\2\2\2\u00ec\u00ed\7v\2\2\u00ed\u00ee\7{\2\2\u00ee\u00ef"+
"\7r\2\2\u00ef\u00f0\7g\2\2\u00f0\u00f1\7f\2\2\u00f1\u00f2\7g\2\2\u00f2"+
"\u00f3\7h\2\2\u00f3\b\3\2\2\2\u00f4\u00f5\7.\2\2\u00f5\n\3\2\2\2\u00f6"+
"\u00f7\7?\2\2\u00f7\f\3\2\2\2\u00f8\u00f9\7*\2\2\u00f9\16\3\2\2\2\u00fa"+
"\u00fb\7+\2\2\u00fb\20\3\2\2\2\u00fc\u00fd\7}\2\2\u00fd\22\3\2\2\2\u00fe"+
"\u00ff\7\177\2\2\u00ff\24\3\2\2\2\u0100\u0101\7%\2\2\u0101\u0102\7r\2"+
"\2\u0102\u0103\7t\2\2\u0103\u0104\7c\2\2\u0104\u0105\7i\2\2\u0105\u0106"+
"\7o\2\2\u0106\u0107\7c\2\2\u0107\26\3\2\2\2\u0108\u0109\7t\2\2\u0109\u010a"+
"\7g\2\2\u010a\u010b\7u\2\2\u010b\u010c\7g\2\2\u010c\u010d\7t\2\2\u010d"+
"\u010e\7x\2\2\u010e\u010f\7g\2\2\u010f\30\3\2\2\2\u0110\u0111\7%\2\2\u0111"+
"\u0112\7t\2\2\u0112\u0113\7g\2\2\u0113\u0114\7u\2\2\u0114\u0115\7g\2\2"+
"\u0115\u0116\7t\2\2\u0116\u0117\7x\2\2\u0117\u0118\7g\2\2\u0118\32\3\2"+
"\2\2\u0119\u011a\7r\2\2\u011a\u011b\7e\2\2\u011b\34\3\2\2\2\u011c\u011d"+
"\7%\2\2\u011d\u011e\7r\2\2\u011e\u011f\7e\2\2\u011f\36\3\2\2\2\u0120\u0121"+
"\7v\2\2\u0121\u0122\7c\2\2\u0122\u0123\7t\2\2\u0123\u0124\7i\2\2\u0124"+
"\u0125\7g\2\2\u0125\u0126\7v\2\2\u0126 \3\2\2\2\u0127\u0128\7%\2\2\u0128"+
"\u0129\7v\2\2\u0129\u012a\7c\2\2\u012a\u012b\7t\2\2\u012b\u012c\7i\2\2"+
"\u012c\u012d\7g\2\2\u012d\u012e\7v\2\2\u012e\"\3\2\2\2\u012f\u0130\7g"+
"\2\2\u0130\u0131\7p\2\2\u0131\u0132\7e\2\2\u0132\u0133\7q\2\2\u0133\u0134"+
"\7f\2\2\u0134\u0135\7k\2\2\u0135\u0136\7p\2\2\u0136\u0137\7i\2\2\u0137"+
"$\3\2\2\2\u0138\u0139\7%\2\2\u0139\u013a\7g\2\2\u013a\u013b\7p\2\2\u013b"+
"\u013c\7e\2\2\u013c\u013d\7q\2\2\u013d\u013e\7f\2\2\u013e\u013f\7k\2\2"+
"\u013f\u0140\7p\2\2\u0140\u0141\7i\2\2\u0141&\3\2\2\2\u0142\u0143\7e\2"+
"\2\u0143\u0144\7q\2\2\u0144\u0145\7p\2\2\u0145\u0146\7u\2\2\u0146\u0147"+
"\7v\2\2\u0147(\3\2\2\2\u0148\u0149\7g\2\2\u0149\u014a\7z\2\2\u014a\u014b"+
"\7v\2\2\u014b\u014c\7g\2\2\u014c\u014d\7t\2\2\u014d\u014e\7p\2\2\u014e"+
"*\3\2\2\2\u014f\u0150\7c\2\2\u0150\u0151\7n\2\2\u0151\u0152\7k\2\2\u0152"+
"\u0153\7i\2\2\u0153\u0154\7p\2\2\u0154,\3\2\2\2\u0155\u0156\7t\2\2\u0156"+
"\u0157\7g\2\2\u0157\u0158\7i\2\2\u0158\u0159\7k\2\2\u0159\u015a\7u\2\2"+
"\u015a\u015b\7v\2\2\u015b\u015c\7g\2\2\u015c\u015d\7t\2\2\u015d.\3\2\2"+
"\2\u015e\u015f\7k\2\2\u015f\u0160\7p\2\2\u0160\u0161\7n\2\2\u0161\u0162"+
"\7k\2\2\u0162\u0163\7p\2\2\u0163\u0164\7g\2\2\u0164\60\3\2\2\2\u0165\u0166"+
"\7x\2\2\u0166\u0167\7q\2\2\u0167\u0168\7n\2\2\u0168\u0169\7c\2\2\u0169"+
"\u016a\7v\2\2\u016a\u016b\7k\2\2\u016b\u016c\7n\2\2\u016c\u016d\7g\2\2"+
"\u016d\62\3\2\2\2\u016e\u016f\7k\2\2\u016f\u0170\7p\2\2\u0170\u0171\7"+
"v\2\2\u0171\u0172\7g\2\2\u0172\u0173\7t\2\2\u0173\u0174\7t\2\2\u0174\u0175"+
"\7w\2\2\u0175\u0176\7r\2\2\u0176\u0177\7v\2\2\u0177\64\3\2\2\2\u0178\u0179"+
"\7k\2\2\u0179\u017a\7h\2\2\u017a\66\3\2\2\2\u017b\u017c\7g\2\2\u017c\u017d"+
"\7n\2\2\u017d\u017e\7u\2\2\u017e\u017f\7g\2\2\u017f8\3\2\2\2\u0180\u0181"+
"\7y\2\2\u0181\u0182\7j\2\2\u0182\u0183\7k\2\2\u0183\u0184\7n\2\2\u0184"+
"\u0185\7g\2\2\u0185:\3\2\2\2\u0186\u0187\7f\2\2\u0187\u0188\7q\2\2\u0188"+
"<\3\2\2\2\u0189\u018a\7h\2\2\u018a\u018b\7q\2\2\u018b\u018c\7t\2\2\u018c"+
">\3\2\2\2\u018d\u018e\7t\2\2\u018e\u018f\7g\2\2\u018f\u0190\7v\2\2\u0190"+
"\u0191\7w\2\2\u0191\u0192\7t\2\2\u0192\u0193\7p\2\2\u0193@\3\2\2\2\u0194"+
"\u0195\7d\2\2\u0195\u0196\7t\2\2\u0196\u0197\7g\2\2\u0197\u0198\7c\2\2"+
"\u0198\u0199\7m\2\2\u0199B\3\2\2\2\u019a\u019b\7e\2\2\u019b\u019c\7q\2"+
"\2\u019c\u019d\7p\2\2\u019d\u019e\7v\2\2\u019e\u019f\7k\2\2\u019f\u01a0"+
"\7p\2\2\u01a0\u01a1\7w\2\2\u01a1\u01a2\7g\2\2\u01a2D\3\2\2\2\u01a3\u01a4"+
"\7c\2\2\u01a4\u01a5\7u\2\2\u01a5\u01a6\7o\2\2\u01a6F\3\2\2\2\u01a7\u01a8"+
"\7<\2\2\u01a8H\3\2\2\2\u01a9\u01aa\7\60\2\2\u01aa\u01ab\7\60\2\2\u01ab"+
"J\3\2\2\2\u01ac\u01ad\7u\2\2\u01ad\u01ae\7k\2\2\u01ae\u01af\7i\2\2\u01af"+
"\u01b0\7p\2\2\u01b0\u01b1\7g\2\2\u01b1\u01b2\7f\2\2\u01b2L\3\2\2\2\u01b3"+
"\u01b4\7w\2\2\u01b4\u01b5\7p\2\2\u01b5\u01b6\7u\2\2\u01b6\u01b7\7k\2\2"+
"\u01b7\u01b8\7i\2\2\u01b8\u01b9\7p\2\2\u01b9\u01ba\7g\2\2\u01ba\u01bb"+
"\7f\2\2\u01bbN\3\2\2\2\u01bc\u01bd\7,\2\2\u01bdP\3\2\2\2\u01be\u01bf\7"+
"]\2\2\u01bfR\3\2\2\2\u01c0\u01c1\7_\2\2\u01c1T\3\2\2\2\u01c2\u01c3\7u"+
"\2\2\u01c3\u01c4\7v\2\2\u01c4\u01c5\7t\2\2\u01c5\u01c6\7w\2\2\u01c6\u01c7"+
"\7e\2\2\u01c7\u01c8\7v\2\2\u01c8V\3\2\2\2\u01c9\u01ca\7g\2\2\u01ca\u01cb"+
"\7p\2\2\u01cb\u01cc\7w\2\2\u01cc\u01cd\7o\2\2\u01cdX\3\2\2\2\u01ce\u01cf"+
"\7\60\2\2\u01cfZ\3\2\2\2\u01d0\u01d1\7/\2\2\u01d1\u01d2\7@\2\2\u01d2\\"+
"\3\2\2\2\u01d3\u01d4\7u\2\2\u01d4\u01d5\7k\2\2\u01d5\u01d6\7|\2\2\u01d6"+
"\u01d7\7g\2\2\u01d7\u01d8\7q\2\2\u01d8\u01d9\7h\2\2\u01d9^\3\2\2\2\u01da"+
"\u01db\7v\2\2\u01db\u01dc\7{\2\2\u01dc\u01dd\7r\2\2\u01dd\u01de\7g\2\2"+
"\u01de\u01df\7k\2\2\u01df\u01e0\7f\2\2\u01e0`\3\2\2\2\u01e1\u01e2\7/\2"+
"\2\u01e2\u01e3\7/\2\2\u01e3b\3\2\2\2\u01e4\u01e5\7-\2\2\u01e5\u01e6\7"+
"-\2\2\u01e6d\3\2\2\2\u01e7\u01e8\7-\2\2\u01e8f\3\2\2\2\u01e9\u01ea\7/"+
"\2\2\u01eah\3\2\2\2\u01eb\u01ec\7#\2\2\u01ecj\3\2\2\2\u01ed\u01ee\7(\2"+
"\2\u01eel\3\2\2\2\u01ef\u01f0\7\u0080\2\2\u01f0n\3\2\2\2\u01f1\u01f2\7"+
"@\2\2\u01f2\u01f3\7@\2\2\u01f3p\3\2\2\2\u01f4\u01f5\7>\2\2\u01f5\u01f6"+
"\7>\2\2\u01f6r\3\2\2\2\u01f7\u01f8\7\61\2\2\u01f8t\3\2\2\2\u01f9\u01fa"+
"\7\'\2\2\u01fav\3\2\2\2\u01fb\u01fc\7>\2\2\u01fcx\3\2\2\2\u01fd\u01fe"+
"\7@\2\2\u01fez\3\2\2\2\u01ff\u0200\7?\2\2\u0200\u0201\7?\2\2\u0201|\3"+
"\2\2\2\u0202\u0203\7#\2\2\u0203\u0204\7?\2\2\u0204~\3\2\2\2\u0205\u0206"+
"\7>\2\2\u0206\u0207\7?\2\2\u0207\u0080\3\2\2\2\u0208\u0209\7@\2\2\u0209"+
"\u020a\7?\2\2\u020a\u0082\3\2\2\2\u020b\u020c\7`\2\2\u020c\u0084\3\2\2"+
"\2\u020d\u020e\7~\2\2\u020e\u0086\3\2\2\2\u020f\u0210\7(\2\2\u0210\u0211"+
"\7(\2\2\u0211\u0088\3\2\2\2\u0212\u0213\7~\2\2\u0213\u0214\7~\2\2\u0214"+
"\u008a\3\2\2\2\u0215\u0216\7A\2\2\u0216\u008c\3\2\2\2\u0217\u0218\7-\2"+
"\2\u0218\u0219\7?\2\2\u0219\u008e\3\2\2\2\u021a\u021b\7/\2\2\u021b\u021c"+
"\7?\2\2\u021c\u0090\3\2\2\2\u021d\u021e\7,\2\2\u021e\u021f\7?\2\2\u021f"+
"\u0092\3\2\2\2\u0220\u0221\7\61\2\2\u0221\u0222\7?\2\2\u0222\u0094\3\2"+
"\2\2\u0223\u0224\7\'\2\2\u0224\u0225\7?\2\2\u0225\u0096\3\2\2\2\u0226"+
"\u0227\7>\2\2\u0227\u0228\7>\2\2\u0228\u0229\7?\2\2\u0229\u0098\3\2\2"+
"\2\u022a\u022b\7@\2\2\u022b\u022c\7@\2\2\u022c\u022d\7?\2\2\u022d\u009a"+
"\3\2\2\2\u022e\u022f\7(\2\2\u022f\u0230\7?\2\2\u0230\u009c\3\2\2\2\u0231"+
"\u0232\7~\2\2\u0232\u0233\7?\2\2\u0233\u009e\3\2\2\2\u0234\u0235\7`\2"+
"\2\u0235\u0236\7?\2\2\u0236\u00a0\3\2\2\2\u0237\u0238\7m\2\2\u0238\u0239"+
"\7k\2\2\u0239\u023a\7e\2\2\u023a\u023b\7m\2\2\u023b\u023c\7c\2\2\u023c"+
"\u023d\7u\2\2\u023d\u023e\7o\2\2\u023e\u00a2\3\2\2\2\u023f\u0240\7t\2"+
"\2\u0240\u0241\7g\2\2\u0241\u0242\7u\2\2\u0242\u0243\7q\2\2\u0243\u0244"+
"\7w\2\2\u0244\u0245\7t\2\2\u0245\u0246\7e\2\2\u0246\u0247\7g\2\2\u0247"+
"\u00a4\3\2\2\2\u0248\u0249\7w\2\2\u0249\u024a\7u\2\2\u024a\u024b\7g\2"+
"\2\u024b\u024c\7u\2\2\u024c\u00a6\3\2\2\2\u024d\u024e\7e\2\2\u024e\u024f"+
"\7n\2\2\u024f\u0250\7q\2\2\u0250\u0251\7d\2\2\u0251\u0252\7d\2\2\u0252"+
"\u0253\7g\2\2\u0253\u0254\7t\2\2\u0254\u0255\7u\2\2\u0255\u00a8\3\2\2"+
"\2\u0256\u0257\7d\2\2\u0257\u0258\7{\2\2\u0258\u0259\7v\2\2\u0259\u025a"+
"\7g\2\2\u025a\u025b\7u\2\2\u025b\u00aa\3\2\2\2\u025c\u025d\7e\2\2\u025d"+
"\u025e\7{\2\2\u025e\u025f\7e\2\2\u025f\u0260\7n\2\2\u0260\u0261\7g\2\2"+
"\u0261\u0262\7u\2\2\u0262\u00ac\3\2\2\2\u0263\u0264\7\60\2\2\u0264\u0265"+
"\7d\2\2\u0265\u0266\7{\2\2\u0266\u0267\7v\2\2\u0267\u0268\7g\2\2\u0268"+
"\u00ae\3\2\2\2\u0269\u026a\7%\2\2\u026a\u00b0\3\2\2\2\u026b\u026c\7d\2"+
"\2\u026c\u026d\7t\2\2\u026d\u034a\7m\2\2\u026e\u026f\7q\2\2\u026f\u0270"+
"\7t\2\2\u0270\u034a\7c\2\2\u0271\u0272\7m\2\2\u0272\u0273\7k\2\2\u0273"+
"\u034a\7n\2\2\u0274\u0275\7u\2\2\u0275\u0276\7n\2\2\u0276\u034a\7q\2\2"+
"\u0277\u0278\7p\2\2\u0278\u0279\7q\2\2\u0279\u034a\7r\2\2\u027a\u027b"+
"\7c\2\2\u027b\u027c\7u\2\2\u027c\u034a\7n\2\2\u027d\u027e\7r\2\2\u027e"+
"\u027f\7j\2\2\u027f\u034a\7r\2\2\u0280\u0281\7c\2\2\u0281\u0282\7p\2\2"+
"\u0282\u034a\7e\2\2\u0283\u0284\7d\2\2\u0284\u0285\7r\2\2\u0285\u034a"+
"\7n\2\2\u0286\u0287\7e\2\2\u0287\u0288\7n\2\2\u0288\u034a\7e\2\2\u0289"+
"\u028a\7l\2\2\u028a\u028b\7u\2\2\u028b\u034a\7t\2\2\u028c\u028d\7c\2\2"+
"\u028d\u028e\7p\2\2\u028e\u034a\7f\2\2\u028f\u0290\7t\2\2\u0290\u0291"+
"\7n\2\2\u0291\u034a\7c\2\2\u0292\u0293\7d\2\2\u0293\u0294\7k\2\2\u0294"+
"\u034a\7v\2\2\u0295\u0296\7t\2\2\u0296\u0297\7q\2\2\u0297\u034a\7n\2\2"+
"\u0298\u0299\7r\2\2\u0299\u029a\7n\2\2\u029a\u034a\7c\2\2\u029b\u029c"+
"\7r\2\2\u029c\u029d\7n\2\2\u029d\u034a\7r\2\2\u029e\u029f\7d\2\2\u029f"+
"\u02a0\7o\2\2\u02a0\u034a\7k\2\2\u02a1\u02a2\7u\2\2\u02a2\u02a3\7g\2\2"+
"\u02a3\u034a\7e\2\2\u02a4\u02a5\7t\2\2\u02a5\u02a6\7v\2\2\u02a6\u034a"+
"\7k\2\2\u02a7\u02a8\7g\2\2\u02a8\u02a9\7q\2\2\u02a9\u034a\7t\2\2\u02aa"+
"\u02ab\7u\2\2\u02ab\u02ac\7t\2\2\u02ac\u034a\7g\2\2\u02ad\u02ae\7n\2\2"+
"\u02ae\u02af\7u\2\2\u02af\u034a\7t\2\2\u02b0\u02b1\7r\2\2\u02b1\u02b2"+
"\7j\2\2\u02b2\u034a\7c\2\2\u02b3\u02b4\7c\2\2\u02b4\u02b5\7n\2\2\u02b5"+
"\u034a\7t\2\2\u02b6\u02b7\7l\2\2\u02b7\u02b8\7o\2\2\u02b8\u034a\7r\2\2"+
"\u02b9\u02ba\7d\2\2\u02ba\u02bb\7x\2\2\u02bb\u034a\7e\2\2\u02bc\u02bd"+
"\7e\2\2\u02bd\u02be\7n\2\2\u02be\u034a\7k\2\2\u02bf\u02c0\7t\2\2\u02c0"+
"\u02c1\7v\2\2\u02c1\u034a\7u\2\2\u02c2\u02c3\7c\2\2\u02c3\u02c4\7f\2\2"+
"\u02c4\u034a\7e\2\2\u02c5\u02c6\7t\2\2\u02c6\u02c7\7t\2\2\u02c7\u034a"+
"\7c\2\2\u02c8\u02c9\7d\2\2\u02c9\u02ca\7x\2\2\u02ca\u034a\7u\2\2\u02cb"+
"\u02cc\7u\2\2\u02cc\u02cd\7g\2\2\u02cd\u034a\7k\2\2\u02ce\u02cf\7u\2\2"+
"\u02cf\u02d0\7c\2\2\u02d0\u034a\7z\2\2\u02d1\u02d2\7u\2\2\u02d2\u02d3"+
"\7v\2\2\u02d3\u034a\7{\2\2\u02d4\u02d5\7u\2\2\u02d5\u02d6\7v\2\2\u02d6"+
"\u034a\7c\2\2\u02d7\u02d8\7u\2\2\u02d8\u02d9\7v\2\2\u02d9\u034a\7z\2\2"+
"\u02da\u02db\7f\2\2\u02db\u02dc\7g\2\2\u02dc\u034a\7{\2\2\u02dd\u02de"+
"\7v\2\2\u02de\u02df\7z\2\2\u02df\u034a\7c\2\2\u02e0\u02e1\7z\2\2\u02e1"+
"\u02e2\7c\2\2\u02e2\u034a\7c\2\2\u02e3\u02e4\7d\2\2\u02e4\u02e5\7e\2\2"+
"\u02e5\u034a\7e\2\2\u02e6\u02e7\7c\2\2\u02e7\u02e8\7j\2\2\u02e8\u034a"+
"\7z\2\2\u02e9\u02ea\7v\2\2\u02ea\u02eb\7{\2\2\u02eb\u034a\7c\2\2\u02ec"+
"\u02ed\7v\2\2\u02ed\u02ee\7z\2\2\u02ee\u034a\7u\2\2\u02ef\u02f0\7v\2\2"+
"\u02f0\u02f1\7c\2\2\u02f1\u034a\7u\2\2\u02f2\u02f3\7u\2\2\u02f3\u02f4"+
"\7j\2\2\u02f4\u034a\7{\2\2\u02f5\u02f6\7u\2\2\u02f6\u02f7\7j\2\2\u02f7"+
"\u034a\7z\2\2\u02f8\u02f9\7n\2\2\u02f9\u02fa\7f\2\2\u02fa\u034a\7{\2\2"+
"\u02fb\u02fc\7n\2\2\u02fc\u02fd\7f\2\2\u02fd\u034a\7c\2\2\u02fe\u02ff"+
"\7n\2\2\u02ff\u0300\7f\2\2\u0300\u034a\7z\2\2\u0301\u0302\7n\2\2\u0302"+
"\u0303\7c\2\2\u0303\u034a\7z\2\2\u0304\u0305\7v\2\2\u0305\u0306\7c\2\2"+
"\u0306\u034a\7{\2\2\u0307\u0308\7v\2\2\u0308\u0309\7c\2\2\u0309\u034a"+
"\7z\2\2\u030a\u030b\7d\2\2\u030b\u030c\7e\2\2\u030c\u034a\7u\2\2\u030d"+
"\u030e\7e\2\2\u030e\u030f\7n\2\2\u030f\u034a\7x\2\2\u0310\u0311\7v\2\2"+
"\u0311\u0312\7u\2\2\u0312\u034a\7z\2\2\u0313\u0314\7n\2\2\u0314\u0315"+
"\7c\2\2\u0315\u034a\7u\2\2\u0316\u0317\7e\2\2\u0317\u0318\7r\2\2\u0318"+
"\u034a\7{\2\2\u0319\u031a\7e\2\2\u031a\u031b\7o\2\2\u031b\u034a\7r\2\2"+
"\u031c\u031d\7e\2\2\u031d\u031e\7r\2\2\u031e\u034a\7z\2\2\u031f\u0320"+
"\7f\2\2\u0320\u0321\7e\2\2\u0321\u034a\7r\2\2\u0322\u0323\7f\2\2\u0323"+
"\u0324\7g\2\2\u0324\u034a\7e\2\2\u0325\u0326\7k\2\2\u0326\u0327\7p\2\2"+
"\u0327\u034a\7e\2\2\u0328\u0329\7c\2\2\u0329\u032a\7z\2\2\u032a\u034a"+
"\7u\2\2\u032b\u032c\7d\2\2\u032c\u032d\7p\2\2\u032d\u034a\7g\2\2\u032e"+
"\u032f\7e\2\2\u032f\u0330\7n\2\2\u0330\u034a\7f\2\2\u0331\u0332\7u\2\2"+
"\u0332\u0333\7d\2\2\u0333\u034a\7e\2\2\u0334\u0335\7k\2\2\u0335\u0336"+
"\7u\2\2\u0336\u034a\7e\2\2\u0337\u0338\7k\2\2\u0338\u0339\7p\2\2\u0339"+
"\u034a\7z\2\2\u033a\u033b\7d\2\2\u033b\u033c\7g\2\2\u033c\u034a\7s\2\2"+
"\u033d\u033e\7u\2\2\u033e\u033f\7g\2\2\u033f\u034a\7f\2\2\u0340\u0341"+
"\7f\2\2\u0341\u0342\7g\2\2\u0342\u034a\7z\2\2\u0343\u0344\7k\2\2\u0344"+
"\u0345\7p\2\2\u0345\u034a\7{\2\2\u0346\u0347\7t\2\2\u0347\u0348\7q\2\2"+
"\u0348\u034a\7t\2\2\u0349\u026b\3\2\2\2\u0349\u026e\3\2\2\2\u0349\u0271"+
"\3\2\2\2\u0349\u0274\3\2\2\2\u0349\u0277\3\2\2\2\u0349\u027a\3\2\2\2\u0349"+
"\u027d\3\2\2\2\u0349\u0280\3\2\2\2\u0349\u0283\3\2\2\2\u0349\u0286\3\2"+
"\2\2\u0349\u0289\3\2\2\2\u0349\u028c\3\2\2\2\u0349\u028f\3\2\2\2\u0349"+
"\u0292\3\2\2\2\u0349\u0295\3\2\2\2\u0349\u0298\3\2\2\2\u0349\u029b\3\2"+
"\2\2\u0349\u029e\3\2\2\2\u0349\u02a1\3\2\2\2\u0349\u02a4\3\2\2\2\u0349"+
"\u02a7\3\2\2\2\u0349\u02aa\3\2\2\2\u0349\u02ad\3\2\2\2\u0349\u02b0\3\2"+
"\2\2\u0349\u02b3\3\2\2\2\u0349\u02b6\3\2\2\2\u0349\u02b9\3\2\2\2\u0349"+
"\u02bc\3\2\2\2\u0349\u02bf\3\2\2\2\u0349\u02c2\3\2\2\2\u0349\u02c5\3\2"+
"\2\2\u0349\u02c8\3\2\2\2\u0349\u02cb\3\2\2\2\u0349\u02ce\3\2\2\2\u0349"+
"\u02d1\3\2\2\2\u0349\u02d4\3\2\2\2\u0349\u02d7\3\2\2\2\u0349\u02da\3\2"+
"\2\2\u0349\u02dd\3\2\2\2\u0349\u02e0\3\2\2\2\u0349\u02e3\3\2\2\2\u0349"+
"\u02e6\3\2\2\2\u0349\u02e9\3\2\2\2\u0349\u02ec\3\2\2\2\u0349\u02ef\3\2"+
"\2\2\u0349\u02f2\3\2\2\2\u0349\u02f5\3\2\2\2\u0349\u02f8\3\2\2\2\u0349"+
"\u02fb\3\2\2\2\u0349\u02fe\3\2\2\2\u0349\u0301\3\2\2\2\u0349\u0304\3\2"+
"\2\2\u0349\u0307\3\2\2\2\u0349\u030a\3\2\2\2\u0349\u030d\3\2\2\2\u0349"+
"\u0310\3\2\2\2\u0349\u0313\3\2\2\2\u0349\u0316\3\2\2\2\u0349\u0319\3\2"+
"\2\2\u0349\u031c\3\2\2\2\u0349\u031f\3\2\2\2\u0349\u0322\3\2\2\2\u0349"+
"\u0325\3\2\2\2\u0349\u0328\3\2\2\2\u0349\u032b\3\2\2\2\u0349\u032e\3\2"+
"\2\2\u0349\u0331\3\2\2\2\u0349\u0334\3\2\2\2\u0349\u0337\3\2\2\2\u0349"+
"\u033a\3\2\2\2\u0349\u033d\3\2\2\2\u0349\u0340\3\2\2\2\u0349\u0343\3\2"+
"\2\2\u0349\u0346\3\2\2\2\u034a\u00b2\3\2\2\2\u034b\u034c\7}\2\2\u034c"+
"\u034d\7}\2\2\u034d\u0351\3\2\2\2\u034e\u0350\13\2\2\2\u034f\u034e\3\2"+
"\2\2\u0350\u0353\3\2\2\2\u0351\u0352\3\2\2\2\u0351\u034f\3\2\2\2\u0352"+
"\u0354\3\2\2\2\u0353\u0351\3\2\2\2\u0354\u0355\7\177\2\2\u0355\u0356\7"+
"\177\2\2\u0356\u00b4\3\2\2\2\u0357\u0358\7d\2\2\u0358\u0359\7{\2\2\u0359"+
"\u035a\7v\2\2\u035a\u037d\7g\2\2\u035b\u035c\7y\2\2\u035c\u035d\7q\2\2"+
"\u035d\u035e\7t\2\2\u035e\u037d\7f\2\2\u035f\u0360\7f\2\2\u0360\u0361"+
"\7y\2\2\u0361\u0362\7q\2\2\u0362\u0363\7t\2\2\u0363\u037d\7f\2\2\u0364"+
"\u0365\7d\2\2\u0365\u0366\7q\2\2\u0366\u0367\7q\2\2\u0367\u037d\7n\2\2"+
"\u0368\u0369\7e\2\2\u0369\u036a\7j\2\2\u036a\u036b\7c\2\2\u036b\u037d"+
"\7t\2\2\u036c\u036d\7u\2\2\u036d\u036e\7j\2\2\u036e\u036f\7q\2\2\u036f"+
"\u0370\7t\2\2\u0370\u037d\7v\2\2\u0371\u0372\7k\2\2\u0372\u0373\7p\2\2"+
"\u0373\u037d\7v\2\2\u0374\u0375\7n\2\2\u0375\u0376\7q\2\2\u0376\u0377"+
"\7p\2\2\u0377\u037d\7i\2\2\u0378\u0379\7x\2\2\u0379\u037a\7q\2\2\u037a"+
"\u037b\7k\2\2\u037b\u037d\7f\2\2\u037c\u0357\3\2\2\2\u037c\u035b\3\2\2"+
"\2\u037c\u035f\3\2\2\2\u037c\u0364\3\2\2\2\u037c\u0368\3\2\2\2\u037c\u036c"+
"\3\2\2\2\u037c\u0371\3\2\2\2\u037c\u0374\3\2\2\2\u037c\u0378\3\2\2\2\u037d"+
"\u00b6\3\2\2\2\u037e\u0384\7$\2\2\u037f\u0380\7^\2\2\u0380\u0383\7$\2"+
"\2\u0381\u0383\n\2\2\2\u0382\u037f\3\2\2\2\u0382\u0381\3\2\2\2\u0383\u0386"+
"\3\2\2\2\u0384\u0382\3\2\2\2\u0384\u0385\3\2\2\2\u0385\u0387\3\2\2\2\u0386"+
"\u0384\3\2\2\2\u0387\u0389\7$\2\2\u0388\u038a\t\3\2\2\u0389\u0388\3\2"+
"\2\2\u0389\u038a\3\2\2\2\u038a\u038f\3\2\2\2\u038b\u038d\t\4\2\2\u038c"+
"\u038e\t\5\2\2\u038d\u038c\3\2\2\2\u038d\u038e\3\2\2\2\u038e\u0390\3\2"+
"\2\2\u038f\u038b\3\2\2\2\u038f\u0390\3\2\2\2\u0390\u0392\3\2\2\2\u0391"+
"\u0393\t\3\2\2\u0392\u0391\3\2\2\2\u0392\u0393\3\2\2\2\u0393\u00b8\3\2"+
"\2\2\u0394\u0398\7)\2\2\u0395\u0396\7^\2\2\u0396\u0399\7)\2\2\u0397\u0399"+
"\n\6\2\2\u0398\u0395\3\2\2\2\u0398\u0397\3\2\2\2\u0399\u039a\3\2\2\2\u039a"+
"\u039b\7)\2\2\u039b\u00ba\3\2\2\2\u039c\u039d\7v\2\2\u039d\u039e\7t\2"+
"\2\u039e\u039f\7w\2\2\u039f\u03a6\7g\2\2\u03a0\u03a1\7h\2\2\u03a1\u03a2"+
"\7c\2\2\u03a2\u03a3\7n\2\2\u03a3\u03a4\7u\2\2\u03a4\u03a6\7g\2\2\u03a5"+
"\u039c\3\2\2\2\u03a5\u03a0\3\2\2\2\u03a6\u00bc\3\2\2\2\u03a7\u03aa\5\u00bf"+
"`\2\u03a8\u03aa\5\u00c7d\2\u03a9\u03a7\3\2\2\2\u03a9\u03a8\3\2\2\2\u03aa"+
"\u00be\3\2\2\2\u03ab\u03af\5\u00c1a\2\u03ac\u03af\5\u00c3b\2\u03ad\u03af"+
"\5\u00c5c\2\u03ae\u03ab\3\2\2\2\u03ae\u03ac\3\2\2\2\u03ae\u03ad\3\2\2"+
"\2\u03af\u00c0\3\2\2\2\u03b0\u03b6\7\'\2\2\u03b1\u03b2\7\62\2\2\u03b2"+
"\u03b6\7d\2\2\u03b3\u03b4\7\62\2\2\u03b4\u03b6\7D\2\2\u03b5\u03b0\3\2"+
"\2\2\u03b5\u03b1\3\2\2\2\u03b5\u03b3\3\2\2\2\u03b6\u03ba\3\2\2\2\u03b7"+
"\u03b9\5\u00cfh\2\u03b8\u03b7\3\2\2\2\u03b9\u03bc\3\2\2\2\u03ba\u03b8"+
"\3\2\2\2\u03ba\u03bb\3\2\2\2\u03bb\u03bd\3\2\2\2\u03bc\u03ba\3\2\2\2\u03bd"+
"\u03bf\7\60\2\2\u03be\u03c0\5\u00cfh\2\u03bf\u03be\3\2\2\2\u03c0\u03c1"+
"\3\2\2\2\u03c1\u03bf\3\2\2\2\u03c1\u03c2\3\2\2\2\u03c2\u00c2\3\2\2\2\u03c3"+
"\u03c5\5\u00d1i\2\u03c4\u03c3\3\2\2\2\u03c5\u03c8\3\2\2\2\u03c6\u03c4"+
"\3\2\2\2\u03c6\u03c7\3\2\2\2\u03c7\u03c9\3\2\2\2\u03c8\u03c6\3\2\2\2\u03c9"+
"\u03cb\7\60\2\2\u03ca\u03cc\5\u00d1i\2\u03cb\u03ca\3\2\2\2\u03cc\u03cd"+
"\3\2\2\2\u03cd\u03cb\3\2\2\2\u03cd\u03ce\3\2\2\2\u03ce\u00c4\3\2\2\2\u03cf"+
"\u03d5\7&\2\2\u03d0\u03d1\7\62\2\2\u03d1\u03d5\7z\2\2\u03d2\u03d3\7\62"+
"\2\2\u03d3\u03d5\7Z\2\2\u03d4\u03cf\3\2\2\2\u03d4\u03d0\3\2\2\2\u03d4"+
"\u03d2\3\2\2\2\u03d5\u03d9\3\2\2\2\u03d6\u03d8\5\u00d3j\2\u03d7\u03d6"+
"\3\2\2\2\u03d8\u03db\3\2\2\2\u03d9\u03d7\3\2\2\2\u03d9\u03da\3\2\2\2\u03da"+
"\u03dc\3\2\2\2\u03db\u03d9\3\2\2\2\u03dc\u03de\7\60\2\2\u03dd\u03df\5"+
"\u00d3j\2\u03de\u03dd\3\2\2\2\u03df\u03e0\3\2\2\2\u03e0\u03de\3\2\2\2"+
"\u03e0\u03e1\3\2\2\2\u03e1\u00c6\3\2\2\2\u03e2\u03e6\5\u00cbf\2\u03e3"+
"\u03e6\5\u00cdg\2\u03e4\u03e6\5\u00c9e\2\u03e5\u03e2\3\2\2\2\u03e5\u03e3"+
"\3\2\2\2\u03e5\u03e4\3\2\2\2\u03e6\u03ea\3\2\2\2\u03e7\u03e8\t\7\2\2\u03e8"+
"\u03eb\t\b\2\2\u03e9\u03eb\7n\2\2\u03ea\u03e7\3\2\2\2\u03ea\u03e9\3\2"+
"\2\2\u03ea\u03eb\3\2\2\2\u03eb\u00c8\3\2\2\2\u03ec\u03ed\7\62\2\2\u03ed"+
"\u03ef\t\t\2\2\u03ee\u03f0\5\u00cfh\2\u03ef\u03ee\3\2\2\2\u03f0\u03f1"+
"\3\2\2\2\u03f1\u03ef\3\2\2\2\u03f1\u03f2\3\2\2\2\u03f2\u03fa\3\2\2\2\u03f3"+
"\u03f5\7\'\2\2\u03f4\u03f6\5\u00cfh\2\u03f5\u03f4\3\2\2\2\u03f6\u03f7"+
"\3\2\2\2\u03f7\u03f5\3\2\2\2\u03f7\u03f8\3\2\2\2\u03f8\u03fa\3\2\2\2\u03f9"+
"\u03ec\3\2\2\2\u03f9\u03f3\3\2\2\2\u03fa\u00ca\3\2\2\2\u03fb\u03fd\5\u00d1"+
"i\2\u03fc\u03fb\3\2\2\2\u03fd\u03fe\3\2\2\2\u03fe\u03fc\3\2\2\2\u03fe"+
"\u03ff\3\2\2\2\u03ff\u00cc\3\2\2\2\u0400\u0406\7&\2\2\u0401\u0402\7\62"+
"\2\2\u0402\u0406\7z\2\2\u0403\u0404\7\62\2\2\u0404\u0406\7Z\2\2\u0405"+
"\u0400\3\2\2\2\u0405\u0401\3\2\2\2\u0405\u0403\3\2\2\2\u0406\u0408\3\2"+
"\2\2\u0407\u0409\5\u00d3j\2\u0408\u0407\3\2\2\2\u0409\u040a\3\2\2\2\u040a"+
"\u0408\3\2\2\2\u040a\u040b\3\2\2\2\u040b\u00ce\3\2\2\2\u040c\u040d\t\n"+
"\2\2\u040d\u00d0\3\2\2\2\u040e\u040f\t\13\2\2\u040f\u00d2\3\2\2\2\u0410"+
"\u0411\t\f\2\2\u0411\u00d4\3\2\2\2\u0412\u0416\5\u00d7l\2\u0413\u0415"+
"\5\u00d9m\2\u0414\u0413\3\2\2\2\u0415\u0418\3\2\2\2\u0416\u0414\3\2\2"+
"\2\u0416\u0417\3\2\2\2\u0417\u00d6\3\2\2\2\u0418\u0416\3\2\2\2\u0419\u041a"+
"\t\r\2\2\u041a\u00d8\3\2\2\2\u041b\u041c\t\16\2\2\u041c\u00da\3\2\2\2"+
"\u041d\u0421\7#\2\2\u041e\u0420\5\u00d9m\2\u041f\u041e\3\2\2\2\u0420\u0423"+
"\3\2\2\2\u0421\u041f\3\2\2\2\u0421\u0422\3\2\2\2\u0422\u0425\3\2\2\2\u0423"+
"\u0421\3\2\2\2\u0424\u0426\t\17\2\2\u0425\u0424\3\2\2\2\u0426\u0427\3"+
"\2\2\2\u0427\u0425\3\2\2\2\u0427\u0428\3\2\2\2\u0428\u00dc\3\2\2\2\u0429"+
"\u042b\t\20\2\2\u042a\u0429\3\2\2\2\u042b\u042c\3\2\2\2\u042c\u042a\3"+
"\2\2\2\u042c\u042d\3\2\2\2\u042d\u042e\3\2\2\2\u042e\u042f\bo\2\2\u042f"+
"\u00de\3\2\2\2\u0430\u0431\7\61\2\2\u0431\u0432\7\61\2\2\u0432\u0436\3"+
"\2\2\2\u0433\u0435\n\21\2\2\u0434\u0433\3\2\2\2\u0435\u0438\3\2\2\2\u0436"+
"\u0434\3\2\2\2\u0436\u0437\3\2\2\2\u0437\u0439\3\2\2\2\u0438\u0436\3\2"+
"\2\2\u0439\u043a\bp\3\2\u043a\u00e0\3\2\2\2\u043b\u043c\7\61\2\2\u043c"+
"\u043d\7,\2\2\u043d\u0441\3\2\2\2\u043e\u0440\13\2\2\2\u043f\u043e\3\2"+
"\2\2\u0440\u0443\3\2\2\2\u0441\u0442\3\2\2\2\u0441\u043f\3\2\2\2\u0442"+
"\u0444\3\2\2\2\u0443\u0441\3\2\2\2\u0444\u0445\7,\2\2\u0445\u0446\7\61"+
"\2\2\u0446\u0447\3\2\2\2\u0447\u0448\bq\3\2\u0448\u00e2\3\2\2\2&\2\u0349"+
"\u0351\u037c\u0382\u0384\u0389\u038d\u038f\u0392\u0398\u03a5\u03a9\u03ae"+
"\u03b5\u03ba\u03c1\u03c6\u03cd\u03d4\u03d9\u03e0\u03e5\u03ea\u03f1\u03f7"+
"\u03f9\u03fe\u0405\u040a\u0416\u0421\u0427\u042c\u0436\u0441\4\2\3\2\2"+
"k\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\3\2\3\2\3\2\3\2\3\2"+
"\3\2\3\2\3\3\3\3\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3"+
"\7\3\b\3\b\3\t\3\t\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\f"+
"\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16"+
"\3\16\3\16\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\21"+
"\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\23\3\23"+
"\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\25"+
"\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26"+
"\3\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30"+
"\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\32\3\32"+
"\3\32\3\32\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\34\3\34\3\34"+
"\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\36\3\36\3\36\3\36"+
"\3\36\3\37\3\37\3\37\3\37\3\37\3\37\3 \3 \3 \3!\3!\3!\3!\3\"\3\"\3\"\3"+
"\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3$\3$\3%\3%\3%\3"+
"%\3&\3&\3\'\3\'\3\'\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3"+
"*\3*\3+\3+\3,\3,\3-\3-\3-\3-\3-\3-\3-\3.\3.\3.\3.\3.\3/\3/\3\60\3\60\3"+
"\60\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\62\3\62\3\62\3\62\3\62\3\62\3"+
"\62\3\63\3\63\3\63\3\64\3\64\3\64\3\65\3\65\3\66\3\66\3\67\3\67\38\38"+
"\39\39\3:\3:\3:\3;\3;\3;\3<\3<\3=\3=\3>\3>\3?\3?\3@\3@\3@\3A\3A\3A\3B"+
"\3B\3B\3C\3C\3C\3D\3D\3E\3E\3F\3F\3F\3G\3G\3G\3H\3H\3I\3I\3I\3J\3J\3J"+
"\3K\3K\3K\3L\3L\3L\3M\3M\3M\3N\3N\3N\3N\3O\3O\3O\3O\3P\3P\3P\3Q\3Q\3Q"+
"\3R\3R\3R\3S\3S\3S\3S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3T\3T\3U\3U\3U"+
"\3U\3U\3V\3V\3V\3V\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3X"+
"\3X\3Y\3Y\3Y\3Y\3Y\3Y\3Z\3Z\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3["+
"\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3["+
"\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3["+
"\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3["+
"\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3["+
"\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3["+
"\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3["+
"\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3["+
"\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3["+
"\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3["+
"\3[\5[\u0359\n[\3\\\3\\\3\\\3\\\7\\\u035f\n\\\f\\\16\\\u0362\13\\\3\\"+
"\3\\\3\\\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3"+
"]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\5]\u038c\n]\3^\3^\3"+
"^\3^\7^\u0392\n^\f^\16^\u0395\13^\3^\3^\5^\u0399\n^\3^\3^\5^\u039d\n^"+
"\5^\u039f\n^\3^\5^\u03a2\n^\3_\3_\3_\3_\5_\u03a8\n_\3_\3_\3`\3`\3`\3`"+
"\3`\3`\3`\3`\3`\5`\u03b5\n`\3a\3a\5a\u03b9\na\3b\3b\3b\5b\u03be\nb\3c"+
"\3c\3c\3c\3c\5c\u03c5\nc\3c\7c\u03c8\nc\fc\16c\u03cb\13c\3c\3c\6c\u03cf"+
"\nc\rc\16c\u03d0\3d\7d\u03d4\nd\fd\16d\u03d7\13d\3d\3d\6d\u03db\nd\rd"+
"\16d\u03dc\3e\3e\3e\3e\3e\5e\u03e4\ne\3e\7e\u03e7\ne\fe\16e\u03ea\13e"+
"\3e\3e\6e\u03ee\ne\re\16e\u03ef\3f\3f\3f\5f\u03f5\nf\3f\3f\3f\5f\u03fa"+
"\nf\3g\3g\3g\6g\u03ff\ng\rg\16g\u0400\3g\3g\6g\u0405\ng\rg\16g\u0406\5"+
"g\u0409\ng\3h\6h\u040c\nh\rh\16h\u040d\3i\3i\3i\3i\3i\5i\u0415\ni\3i\6"+
"i\u0418\ni\ri\16i\u0419\3j\3j\3k\3k\3l\3l\3m\3m\7m\u0424\nm\fm\16m\u0427"+
"\13m\3n\3n\3o\3o\3p\3p\7p\u042f\np\fp\16p\u0432\13p\3p\6p\u0435\np\rp"+
"\16p\u0436\3q\6q\u043a\nq\rq\16q\u043b\3q\3q\3r\3r\3r\3r\7r\u0444\nr\f"+
"r\16r\u0447\13r\3r\3r\3s\3s\3s\3s\7s\u044f\ns\fs\16s\u0452\13s\3s\3s\3"+
"s\3s\3s\4\u0360\u0450\2t\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f"+
"\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30/\31\61\32\63"+
"\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61a\62"+
"c\63e\64g\65i\66k\67m8o9q:s;u<w=y>{?}@\177A\u0081B\u0083C\u0085D\u0087"+
"E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009b"+
"O\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00af"+
"Y\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3"+
"c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3\2\u00d5\2\u00d7"+
"\2\u00d9k\u00db\2\u00dd\2\u00dfl\u00e1m\u00e3n\u00e5o\3\2\22\3\2$$\3\2"+
"||\4\2rruu\4\2ooww\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62\63\3\2\62"+
";\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\6\2\13\f\17\17\"\"\u00a2"+
"\u00a2\4\2\f\f\17\17\2\u04ca\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3"+
"\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2"+
"\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37"+
"\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3"+
"\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2"+
"\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C"+
"\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2"+
"\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2"+
"\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i"+
"\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2"+
"\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081"+
"\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2"+
"\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093"+
"\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2"+
"\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5"+
"\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2"+
"\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7"+
"\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2"+
"\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9"+
"\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2"+
"\2\2\u00d9\3\2\2\2\2\u00df\3\2\2\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5"+
"\3\2\2\2\3\u00e7\3\2\2\2\5\u00ee\3\2\2\2\7\u00f0\3\2\2\2\t\u00f8\3\2\2"+
"\2\13\u00fa\3\2\2\2\r\u00fc\3\2\2\2\17\u00fe\3\2\2\2\21\u0100\3\2\2\2"+
"\23\u0102\3\2\2\2\25\u0104\3\2\2\2\27\u010c\3\2\2\2\31\u0114\3\2\2\2\33"+
"\u011d\3\2\2\2\35\u0120\3\2\2\2\37\u0124\3\2\2\2!\u012b\3\2\2\2#\u0133"+
"\3\2\2\2%\u0138\3\2\2\2\'\u013e\3\2\2\2)\u0147\3\2\2\2+\u0151\3\2\2\2"+
"-\u0157\3\2\2\2/\u015e\3\2\2\2\61\u0164\3\2\2\2\63\u016d\3\2\2\2\65\u0174"+
"\3\2\2\2\67\u017d\3\2\2\29\u0187\3\2\2\2;\u018a\3\2\2\2=\u018f\3\2\2\2"+
"?\u0195\3\2\2\2A\u0198\3\2\2\2C\u019c\3\2\2\2E\u01a3\3\2\2\2G\u01a9\3"+
"\2\2\2I\u01b2\3\2\2\2K\u01b6\3\2\2\2M\u01b8\3\2\2\2O\u01bb\3\2\2\2Q\u01c2"+
"\3\2\2\2S\u01cb\3\2\2\2U\u01cd\3\2\2\2W\u01cf\3\2\2\2Y\u01d1\3\2\2\2["+
"\u01d8\3\2\2\2]\u01dd\3\2\2\2_\u01df\3\2\2\2a\u01e2\3\2\2\2c\u01e9\3\2"+
"\2\2e\u01f0\3\2\2\2g\u01f3\3\2\2\2i\u01f6\3\2\2\2k\u01f8\3\2\2\2m\u01fa"+
"\3\2\2\2o\u01fc\3\2\2\2q\u01fe\3\2\2\2s\u0200\3\2\2\2u\u0203\3\2\2\2w"+
"\u0206\3\2\2\2y\u0208\3\2\2\2{\u020a\3\2\2\2}\u020c\3\2\2\2\177\u020e"+
"\3\2\2\2\u0081\u0211\3\2\2\2\u0083\u0214\3\2\2\2\u0085\u0217\3\2\2\2\u0087"+
"\u021a\3\2\2\2\u0089\u021c\3\2\2\2\u008b\u021e\3\2\2\2\u008d\u0221\3\2"+
"\2\2\u008f\u0224\3\2\2\2\u0091\u0226\3\2\2\2\u0093\u0229\3\2\2\2\u0095"+
"\u022c\3\2\2\2\u0097\u022f\3\2\2\2\u0099\u0232\3\2\2\2\u009b\u0235\3\2"+
"\2\2\u009d\u0239\3\2\2\2\u009f\u023d\3\2\2\2\u00a1\u0240\3\2\2\2\u00a3"+
"\u0243\3\2\2\2\u00a5\u0246\3\2\2\2\u00a7\u024e\3\2\2\2\u00a9\u0257\3\2"+
"\2\2\u00ab\u025c\3\2\2\2\u00ad\u0265\3\2\2\2\u00af\u026b\3\2\2\2\u00b1"+
"\u0272\3\2\2\2\u00b3\u0278\3\2\2\2\u00b5\u0358\3\2\2\2\u00b7\u035a\3\2"+
"\2\2\u00b9\u038b\3\2\2\2\u00bb\u038d\3\2\2\2\u00bd\u03a3\3\2\2\2\u00bf"+
"\u03b4\3\2\2\2\u00c1\u03b8\3\2\2\2\u00c3\u03bd\3\2\2\2\u00c5\u03c4\3\2"+
"\2\2\u00c7\u03d5\3\2\2\2\u00c9\u03e3\3\2\2\2\u00cb\u03f4\3\2\2\2\u00cd"+
"\u0408\3\2\2\2\u00cf\u040b\3\2\2\2\u00d1\u0414\3\2\2\2\u00d3\u041b\3\2"+
"\2\2\u00d5\u041d\3\2\2\2\u00d7\u041f\3\2\2\2\u00d9\u0421\3\2\2\2\u00db"+
"\u0428\3\2\2\2\u00dd\u042a\3\2\2\2\u00df\u042c\3\2\2\2\u00e1\u0439\3\2"+
"\2\2\u00e3\u043f\3\2\2\2\u00e5\u044a\3\2\2\2\u00e7\u00e8\7k\2\2\u00e8"+
"\u00e9\7o\2\2\u00e9\u00ea\7r\2\2\u00ea\u00eb\7q\2\2\u00eb\u00ec\7t\2\2"+
"\u00ec\u00ed\7v\2\2\u00ed\4\3\2\2\2\u00ee\u00ef\7=\2\2\u00ef\6\3\2\2\2"+
"\u00f0\u00f1\7v\2\2\u00f1\u00f2\7{\2\2\u00f2\u00f3\7r\2\2\u00f3\u00f4"+
"\7g\2\2\u00f4\u00f5\7f\2\2\u00f5\u00f6\7g\2\2\u00f6\u00f7\7h\2\2\u00f7"+
"\b\3\2\2\2\u00f8\u00f9\7.\2\2\u00f9\n\3\2\2\2\u00fa\u00fb\7?\2\2\u00fb"+
"\f\3\2\2\2\u00fc\u00fd\7*\2\2\u00fd\16\3\2\2\2\u00fe\u00ff\7+\2\2\u00ff"+
"\20\3\2\2\2\u0100\u0101\7}\2\2\u0101\22\3\2\2\2\u0102\u0103\7\177\2\2"+
"\u0103\24\3\2\2\2\u0104\u0105\7%\2\2\u0105\u0106\7r\2\2\u0106\u0107\7"+
"t\2\2\u0107\u0108\7c\2\2\u0108\u0109\7i\2\2\u0109\u010a\7o\2\2\u010a\u010b"+
"\7c\2\2\u010b\26\3\2\2\2\u010c\u010d\7t\2\2\u010d\u010e\7g\2\2\u010e\u010f"+
"\7u\2\2\u010f\u0110\7g\2\2\u0110\u0111\7t\2\2\u0111\u0112\7x\2\2\u0112"+
"\u0113\7g\2\2\u0113\30\3\2\2\2\u0114\u0115\7%\2\2\u0115\u0116\7t\2\2\u0116"+
"\u0117\7g\2\2\u0117\u0118\7u\2\2\u0118\u0119\7g\2\2\u0119\u011a\7t\2\2"+
"\u011a\u011b\7x\2\2\u011b\u011c\7g\2\2\u011c\32\3\2\2\2\u011d\u011e\7"+
"r\2\2\u011e\u011f\7e\2\2\u011f\34\3\2\2\2\u0120\u0121\7%\2\2\u0121\u0122"+
"\7r\2\2\u0122\u0123\7e\2\2\u0123\36\3\2\2\2\u0124\u0125\7v\2\2\u0125\u0126"+
"\7c\2\2\u0126\u0127\7t\2\2\u0127\u0128\7i\2\2\u0128\u0129\7g\2\2\u0129"+
"\u012a\7v\2\2\u012a \3\2\2\2\u012b\u012c\7%\2\2\u012c\u012d\7v\2\2\u012d"+
"\u012e\7c\2\2\u012e\u012f\7t\2\2\u012f\u0130\7i\2\2\u0130\u0131\7g\2\2"+
"\u0131\u0132\7v\2\2\u0132\"\3\2\2\2\u0133\u0134\7n\2\2\u0134\u0135\7k"+
"\2\2\u0135\u0136\7p\2\2\u0136\u0137\7m\2\2\u0137$\3\2\2\2\u0138\u0139"+
"\7%\2\2\u0139\u013a\7n\2\2\u013a\u013b\7k\2\2\u013b\u013c\7p\2\2\u013c"+
"\u013d\7m\2\2\u013d&\3\2\2\2\u013e\u013f\7g\2\2\u013f\u0140\7p\2\2\u0140"+
"\u0141\7e\2\2\u0141\u0142\7q\2\2\u0142\u0143\7f\2\2\u0143\u0144\7k\2\2"+
"\u0144\u0145\7p\2\2\u0145\u0146\7i\2\2\u0146(\3\2\2\2\u0147\u0148\7%\2"+
"\2\u0148\u0149\7g\2\2\u0149\u014a\7p\2\2\u014a\u014b\7e\2\2\u014b\u014c"+
"\7q\2\2\u014c\u014d\7f\2\2\u014d\u014e\7k\2\2\u014e\u014f\7p\2\2\u014f"+
"\u0150\7i\2\2\u0150*\3\2\2\2\u0151\u0152\7e\2\2\u0152\u0153\7q\2\2\u0153"+
"\u0154\7p\2\2\u0154\u0155\7u\2\2\u0155\u0156\7v\2\2\u0156,\3\2\2\2\u0157"+
"\u0158\7g\2\2\u0158\u0159\7z\2\2\u0159\u015a\7v\2\2\u015a\u015b\7g\2\2"+
"\u015b\u015c\7t\2\2\u015c\u015d\7p\2\2\u015d.\3\2\2\2\u015e\u015f\7c\2"+
"\2\u015f\u0160\7n\2\2\u0160\u0161\7k\2\2\u0161\u0162\7i\2\2\u0162\u0163"+
"\7p\2\2\u0163\60\3\2\2\2\u0164\u0165\7t\2\2\u0165\u0166\7g\2\2\u0166\u0167"+
"\7i\2\2\u0167\u0168\7k\2\2\u0168\u0169\7u\2\2\u0169\u016a\7v\2\2\u016a"+
"\u016b\7g\2\2\u016b\u016c\7t\2\2\u016c\62\3\2\2\2\u016d\u016e\7k\2\2\u016e"+
"\u016f\7p\2\2\u016f\u0170\7n\2\2\u0170\u0171\7k\2\2\u0171\u0172\7p\2\2"+
"\u0172\u0173\7g\2\2\u0173\64\3\2\2\2\u0174\u0175\7x\2\2\u0175\u0176\7"+
"q\2\2\u0176\u0177\7n\2\2\u0177\u0178\7c\2\2\u0178\u0179\7v\2\2\u0179\u017a"+
"\7k\2\2\u017a\u017b\7n\2\2\u017b\u017c\7g\2\2\u017c\66\3\2\2\2\u017d\u017e"+
"\7k\2\2\u017e\u017f\7p\2\2\u017f\u0180\7v\2\2\u0180\u0181\7g\2\2\u0181"+
"\u0182\7t\2\2\u0182\u0183\7t\2\2\u0183\u0184\7w\2\2\u0184\u0185\7r\2\2"+
"\u0185\u0186\7v\2\2\u01868\3\2\2\2\u0187\u0188\7k\2\2\u0188\u0189\7h\2"+
"\2\u0189:\3\2\2\2\u018a\u018b\7g\2\2\u018b\u018c\7n\2\2\u018c\u018d\7"+
"u\2\2\u018d\u018e\7g\2\2\u018e<\3\2\2\2\u018f\u0190\7y\2\2\u0190\u0191"+
"\7j\2\2\u0191\u0192\7k\2\2\u0192\u0193\7n\2\2\u0193\u0194\7g\2\2\u0194"+
">\3\2\2\2\u0195\u0196\7f\2\2\u0196\u0197\7q\2\2\u0197@\3\2\2\2\u0198\u0199"+
"\7h\2\2\u0199\u019a\7q\2\2\u019a\u019b\7t\2\2\u019bB\3\2\2\2\u019c\u019d"+
"\7t\2\2\u019d\u019e\7g\2\2\u019e\u019f\7v\2\2\u019f\u01a0\7w\2\2\u01a0"+
"\u01a1\7t\2\2\u01a1\u01a2\7p\2\2\u01a2D\3\2\2\2\u01a3\u01a4\7d\2\2\u01a4"+
"\u01a5\7t\2\2\u01a5\u01a6\7g\2\2\u01a6\u01a7\7c\2\2\u01a7\u01a8\7m\2\2"+
"\u01a8F\3\2\2\2\u01a9\u01aa\7e\2\2\u01aa\u01ab\7q\2\2\u01ab\u01ac\7p\2"+
"\2\u01ac\u01ad\7v\2\2\u01ad\u01ae\7k\2\2\u01ae\u01af\7p\2\2\u01af\u01b0"+
"\7w\2\2\u01b0\u01b1\7g\2\2\u01b1H\3\2\2\2\u01b2\u01b3\7c\2\2\u01b3\u01b4"+
"\7u\2\2\u01b4\u01b5\7o\2\2\u01b5J\3\2\2\2\u01b6\u01b7\7<\2\2\u01b7L\3"+
"\2\2\2\u01b8\u01b9\7\60\2\2\u01b9\u01ba\7\60\2\2\u01baN\3\2\2\2\u01bb"+
"\u01bc\7u\2\2\u01bc\u01bd\7k\2\2\u01bd\u01be\7i\2\2\u01be\u01bf\7p\2\2"+
"\u01bf\u01c0\7g\2\2\u01c0\u01c1\7f\2\2\u01c1P\3\2\2\2\u01c2\u01c3\7w\2"+
"\2\u01c3\u01c4\7p\2\2\u01c4\u01c5\7u\2\2\u01c5\u01c6\7k\2\2\u01c6\u01c7"+
"\7i\2\2\u01c7\u01c8\7p\2\2\u01c8\u01c9\7g\2\2\u01c9\u01ca\7f\2\2\u01ca"+
"R\3\2\2\2\u01cb\u01cc\7,\2\2\u01ccT\3\2\2\2\u01cd\u01ce\7]\2\2\u01ceV"+
"\3\2\2\2\u01cf\u01d0\7_\2\2\u01d0X\3\2\2\2\u01d1\u01d2\7u\2\2\u01d2\u01d3"+
"\7v\2\2\u01d3\u01d4\7t\2\2\u01d4\u01d5\7w\2\2\u01d5\u01d6\7e\2\2\u01d6"+
"\u01d7\7v\2\2\u01d7Z\3\2\2\2\u01d8\u01d9\7g\2\2\u01d9\u01da\7p\2\2\u01da"+
"\u01db\7w\2\2\u01db\u01dc\7o\2\2\u01dc\\\3\2\2\2\u01dd\u01de\7\60\2\2"+
"\u01de^\3\2\2\2\u01df\u01e0\7/\2\2\u01e0\u01e1\7@\2\2\u01e1`\3\2\2\2\u01e2"+
"\u01e3\7u\2\2\u01e3\u01e4\7k\2\2\u01e4\u01e5\7|\2\2\u01e5\u01e6\7g\2\2"+
"\u01e6\u01e7\7q\2\2\u01e7\u01e8\7h\2\2\u01e8b\3\2\2\2\u01e9\u01ea\7v\2"+
"\2\u01ea\u01eb\7{\2\2\u01eb\u01ec\7r\2\2\u01ec\u01ed\7g\2\2\u01ed\u01ee"+
"\7k\2\2\u01ee\u01ef\7f\2\2\u01efd\3\2\2\2\u01f0\u01f1\7/\2\2\u01f1\u01f2"+
"\7/\2\2\u01f2f\3\2\2\2\u01f3\u01f4\7-\2\2\u01f4\u01f5\7-\2\2\u01f5h\3"+
"\2\2\2\u01f6\u01f7\7-\2\2\u01f7j\3\2\2\2\u01f8\u01f9\7/\2\2\u01f9l\3\2"+
"\2\2\u01fa\u01fb\7#\2\2\u01fbn\3\2\2\2\u01fc\u01fd\7(\2\2\u01fdp\3\2\2"+
"\2\u01fe\u01ff\7\u0080\2\2\u01ffr\3\2\2\2\u0200\u0201\7@\2\2\u0201\u0202"+
"\7@\2\2\u0202t\3\2\2\2\u0203\u0204\7>\2\2\u0204\u0205\7>\2\2\u0205v\3"+
"\2\2\2\u0206\u0207\7\61\2\2\u0207x\3\2\2\2\u0208\u0209\7\'\2\2\u0209z"+
"\3\2\2\2\u020a\u020b\7>\2\2\u020b|\3\2\2\2\u020c\u020d\7@\2\2\u020d~\3"+
"\2\2\2\u020e\u020f\7?\2\2\u020f\u0210\7?\2\2\u0210\u0080\3\2\2\2\u0211"+
"\u0212\7#\2\2\u0212\u0213\7?\2\2\u0213\u0082\3\2\2\2\u0214\u0215\7>\2"+
"\2\u0215\u0216\7?\2\2\u0216\u0084\3\2\2\2\u0217\u0218\7@\2\2\u0218\u0219"+
"\7?\2\2\u0219\u0086\3\2\2\2\u021a\u021b\7`\2\2\u021b\u0088\3\2\2\2\u021c"+
"\u021d\7~\2\2\u021d\u008a\3\2\2\2\u021e\u021f\7(\2\2\u021f\u0220\7(\2"+
"\2\u0220\u008c\3\2\2\2\u0221\u0222\7~\2\2\u0222\u0223\7~\2\2\u0223\u008e"+
"\3\2\2\2\u0224\u0225\7A\2\2\u0225\u0090\3\2\2\2\u0226\u0227\7-\2\2\u0227"+
"\u0228\7?\2\2\u0228\u0092\3\2\2\2\u0229\u022a\7/\2\2\u022a\u022b\7?\2"+
"\2\u022b\u0094\3\2\2\2\u022c\u022d\7,\2\2\u022d\u022e\7?\2\2\u022e\u0096"+
"\3\2\2\2\u022f\u0230\7\61\2\2\u0230\u0231\7?\2\2\u0231\u0098\3\2\2\2\u0232"+
"\u0233\7\'\2\2\u0233\u0234\7?\2\2\u0234\u009a\3\2\2\2\u0235\u0236\7>\2"+
"\2\u0236\u0237\7>\2\2\u0237\u0238\7?\2\2\u0238\u009c\3\2\2\2\u0239\u023a"+
"\7@\2\2\u023a\u023b\7@\2\2\u023b\u023c\7?\2\2\u023c\u009e\3\2\2\2\u023d"+
"\u023e\7(\2\2\u023e\u023f\7?\2\2\u023f\u00a0\3\2\2\2\u0240\u0241\7~\2"+
"\2\u0241\u0242\7?\2\2\u0242\u00a2\3\2\2\2\u0243\u0244\7`\2\2\u0244\u0245"+
"\7?\2\2\u0245\u00a4\3\2\2\2\u0246\u0247\7m\2\2\u0247\u0248\7k\2\2\u0248"+
"\u0249\7e\2\2\u0249\u024a\7m\2\2\u024a\u024b\7c\2\2\u024b\u024c\7u\2\2"+
"\u024c\u024d\7o\2\2\u024d\u00a6\3\2\2\2\u024e\u024f\7t\2\2\u024f\u0250"+
"\7g\2\2\u0250\u0251\7u\2\2\u0251\u0252\7q\2\2\u0252\u0253\7w\2\2\u0253"+
"\u0254\7t\2\2\u0254\u0255\7e\2\2\u0255\u0256\7g\2\2\u0256\u00a8\3\2\2"+
"\2\u0257\u0258\7w\2\2\u0258\u0259\7u\2\2\u0259\u025a\7g\2\2\u025a\u025b"+
"\7u\2\2\u025b\u00aa\3\2\2\2\u025c\u025d\7e\2\2\u025d\u025e\7n\2\2\u025e"+
"\u025f\7q\2\2\u025f\u0260\7d\2\2\u0260\u0261\7d\2\2\u0261\u0262\7g\2\2"+
"\u0262\u0263\7t\2\2\u0263\u0264\7u\2\2\u0264\u00ac\3\2\2\2\u0265\u0266"+
"\7d\2\2\u0266\u0267\7{\2\2\u0267\u0268\7v\2\2\u0268\u0269\7g\2\2\u0269"+
"\u026a\7u\2\2\u026a\u00ae\3\2\2\2\u026b\u026c\7e\2\2\u026c\u026d\7{\2"+
"\2\u026d\u026e\7e\2\2\u026e\u026f\7n\2\2\u026f\u0270\7g\2\2\u0270\u0271"+
"\7u\2\2\u0271\u00b0\3\2\2\2\u0272\u0273\7\60\2\2\u0273\u0274\7d\2\2\u0274"+
"\u0275\7{\2\2\u0275\u0276\7v\2\2\u0276\u0277\7g\2\2\u0277\u00b2\3\2\2"+
"\2\u0278\u0279\7%\2\2\u0279\u00b4\3\2\2\2\u027a\u027b\7d\2\2\u027b\u027c"+
"\7t\2\2\u027c\u0359\7m\2\2\u027d\u027e\7q\2\2\u027e\u027f\7t\2\2\u027f"+
"\u0359\7c\2\2\u0280\u0281\7m\2\2\u0281\u0282\7k\2\2\u0282\u0359\7n\2\2"+
"\u0283\u0284\7u\2\2\u0284\u0285\7n\2\2\u0285\u0359\7q\2\2\u0286\u0287"+
"\7p\2\2\u0287\u0288\7q\2\2\u0288\u0359\7r\2\2\u0289\u028a\7c\2\2\u028a"+
"\u028b\7u\2\2\u028b\u0359\7n\2\2\u028c\u028d\7r\2\2\u028d\u028e\7j\2\2"+
"\u028e\u0359\7r\2\2\u028f\u0290\7c\2\2\u0290\u0291\7p\2\2\u0291\u0359"+
"\7e\2\2\u0292\u0293\7d\2\2\u0293\u0294\7r\2\2\u0294\u0359\7n\2\2\u0295"+
"\u0296\7e\2\2\u0296\u0297\7n\2\2\u0297\u0359\7e\2\2\u0298\u0299\7l\2\2"+
"\u0299\u029a\7u\2\2\u029a\u0359\7t\2\2\u029b\u029c\7c\2\2\u029c\u029d"+
"\7p\2\2\u029d\u0359\7f\2\2\u029e\u029f\7t\2\2\u029f\u02a0\7n\2\2\u02a0"+
"\u0359\7c\2\2\u02a1\u02a2\7d\2\2\u02a2\u02a3\7k\2\2\u02a3\u0359\7v\2\2"+
"\u02a4\u02a5\7t\2\2\u02a5\u02a6\7q\2\2\u02a6\u0359\7n\2\2\u02a7\u02a8"+
"\7r\2\2\u02a8\u02a9\7n\2\2\u02a9\u0359\7c\2\2\u02aa\u02ab\7r\2\2\u02ab"+
"\u02ac\7n\2\2\u02ac\u0359\7r\2\2\u02ad\u02ae\7d\2\2\u02ae\u02af\7o\2\2"+
"\u02af\u0359\7k\2\2\u02b0\u02b1\7u\2\2\u02b1\u02b2\7g\2\2\u02b2\u0359"+
"\7e\2\2\u02b3\u02b4\7t\2\2\u02b4\u02b5\7v\2\2\u02b5\u0359\7k\2\2\u02b6"+
"\u02b7\7g\2\2\u02b7\u02b8\7q\2\2\u02b8\u0359\7t\2\2\u02b9\u02ba\7u\2\2"+
"\u02ba\u02bb\7t\2\2\u02bb\u0359\7g\2\2\u02bc\u02bd\7n\2\2\u02bd\u02be"+
"\7u\2\2\u02be\u0359\7t\2\2\u02bf\u02c0\7r\2\2\u02c0\u02c1\7j\2\2\u02c1"+
"\u0359\7c\2\2\u02c2\u02c3\7c\2\2\u02c3\u02c4\7n\2\2\u02c4\u0359\7t\2\2"+
"\u02c5\u02c6\7l\2\2\u02c6\u02c7\7o\2\2\u02c7\u0359\7r\2\2\u02c8\u02c9"+
"\7d\2\2\u02c9\u02ca\7x\2\2\u02ca\u0359\7e\2\2\u02cb\u02cc\7e\2\2\u02cc"+
"\u02cd\7n\2\2\u02cd\u0359\7k\2\2\u02ce\u02cf\7t\2\2\u02cf\u02d0\7v\2\2"+
"\u02d0\u0359\7u\2\2\u02d1\u02d2\7c\2\2\u02d2\u02d3\7f\2\2\u02d3\u0359"+
"\7e\2\2\u02d4\u02d5\7t\2\2\u02d5\u02d6\7t\2\2\u02d6\u0359\7c\2\2\u02d7"+
"\u02d8\7d\2\2\u02d8\u02d9\7x\2\2\u02d9\u0359\7u\2\2\u02da\u02db\7u\2\2"+
"\u02db\u02dc\7g\2\2\u02dc\u0359\7k\2\2\u02dd\u02de\7u\2\2\u02de\u02df"+
"\7c\2\2\u02df\u0359\7z\2\2\u02e0\u02e1\7u\2\2\u02e1\u02e2\7v\2\2\u02e2"+
"\u0359\7{\2\2\u02e3\u02e4\7u\2\2\u02e4\u02e5\7v\2\2\u02e5\u0359\7c\2\2"+
"\u02e6\u02e7\7u\2\2\u02e7\u02e8\7v\2\2\u02e8\u0359\7z\2\2\u02e9\u02ea"+
"\7f\2\2\u02ea\u02eb\7g\2\2\u02eb\u0359\7{\2\2\u02ec\u02ed\7v\2\2\u02ed"+
"\u02ee\7z\2\2\u02ee\u0359\7c\2\2\u02ef\u02f0\7z\2\2\u02f0\u02f1\7c\2\2"+
"\u02f1\u0359\7c\2\2\u02f2\u02f3\7d\2\2\u02f3\u02f4\7e\2\2\u02f4\u0359"+
"\7e\2\2\u02f5\u02f6\7c\2\2\u02f6\u02f7\7j\2\2\u02f7\u0359\7z\2\2\u02f8"+
"\u02f9\7v\2\2\u02f9\u02fa\7{\2\2\u02fa\u0359\7c\2\2\u02fb\u02fc\7v\2\2"+
"\u02fc\u02fd\7z\2\2\u02fd\u0359\7u\2\2\u02fe\u02ff\7v\2\2\u02ff\u0300"+
"\7c\2\2\u0300\u0359\7u\2\2\u0301\u0302\7u\2\2\u0302\u0303\7j\2\2\u0303"+
"\u0359\7{\2\2\u0304\u0305\7u\2\2\u0305\u0306\7j\2\2\u0306\u0359\7z\2\2"+
"\u0307\u0308\7n\2\2\u0308\u0309\7f\2\2\u0309\u0359\7{\2\2\u030a\u030b"+
"\7n\2\2\u030b\u030c\7f\2\2\u030c\u0359\7c\2\2\u030d\u030e\7n\2\2\u030e"+
"\u030f\7f\2\2\u030f\u0359\7z\2\2\u0310\u0311\7n\2\2\u0311\u0312\7c\2\2"+
"\u0312\u0359\7z\2\2\u0313\u0314\7v\2\2\u0314\u0315\7c\2\2\u0315\u0359"+
"\7{\2\2\u0316\u0317\7v\2\2\u0317\u0318\7c\2\2\u0318\u0359\7z\2\2\u0319"+
"\u031a\7d\2\2\u031a\u031b\7e\2\2\u031b\u0359\7u\2\2\u031c\u031d\7e\2\2"+
"\u031d\u031e\7n\2\2\u031e\u0359\7x\2\2\u031f\u0320\7v\2\2\u0320\u0321"+
"\7u\2\2\u0321\u0359\7z\2\2\u0322\u0323\7n\2\2\u0323\u0324\7c\2\2\u0324"+
"\u0359\7u\2\2\u0325\u0326\7e\2\2\u0326\u0327\7r\2\2\u0327\u0359\7{\2\2"+
"\u0328\u0329\7e\2\2\u0329\u032a\7o\2\2\u032a\u0359\7r\2\2\u032b\u032c"+
"\7e\2\2\u032c\u032d\7r\2\2\u032d\u0359\7z\2\2\u032e\u032f\7f\2\2\u032f"+
"\u0330\7e\2\2\u0330\u0359\7r\2\2\u0331\u0332\7f\2\2\u0332\u0333\7g\2\2"+
"\u0333\u0359\7e\2\2\u0334\u0335\7k\2\2\u0335\u0336\7p\2\2\u0336\u0359"+
"\7e\2\2\u0337\u0338\7c\2\2\u0338\u0339\7z\2\2\u0339\u0359\7u\2\2\u033a"+
"\u033b\7d\2\2\u033b\u033c\7p\2\2\u033c\u0359\7g\2\2\u033d\u033e\7e\2\2"+
"\u033e\u033f\7n\2\2\u033f\u0359\7f\2\2\u0340\u0341\7u\2\2\u0341\u0342"+
"\7d\2\2\u0342\u0359\7e\2\2\u0343\u0344\7k\2\2\u0344\u0345\7u\2\2\u0345"+
"\u0359\7e\2\2\u0346\u0347\7k\2\2\u0347\u0348\7p\2\2\u0348\u0359\7z\2\2"+
"\u0349\u034a\7d\2\2\u034a\u034b\7g\2\2\u034b\u0359\7s\2\2\u034c\u034d"+
"\7u\2\2\u034d\u034e\7g\2\2\u034e\u0359\7f\2\2\u034f\u0350\7f\2\2\u0350"+
"\u0351\7g\2\2\u0351\u0359\7z\2\2\u0352\u0353\7k\2\2\u0353\u0354\7p\2\2"+
"\u0354\u0359\7{\2\2\u0355\u0356\7t\2\2\u0356\u0357\7q\2\2\u0357\u0359"+
"\7t\2\2\u0358\u027a\3\2\2\2\u0358\u027d\3\2\2\2\u0358\u0280\3\2\2\2\u0358"+
"\u0283\3\2\2\2\u0358\u0286\3\2\2\2\u0358\u0289\3\2\2\2\u0358\u028c\3\2"+
"\2\2\u0358\u028f\3\2\2\2\u0358\u0292\3\2\2\2\u0358\u0295\3\2\2\2\u0358"+
"\u0298\3\2\2\2\u0358\u029b\3\2\2\2\u0358\u029e\3\2\2\2\u0358\u02a1\3\2"+
"\2\2\u0358\u02a4\3\2\2\2\u0358\u02a7\3\2\2\2\u0358\u02aa\3\2\2\2\u0358"+
"\u02ad\3\2\2\2\u0358\u02b0\3\2\2\2\u0358\u02b3\3\2\2\2\u0358\u02b6\3\2"+
"\2\2\u0358\u02b9\3\2\2\2\u0358\u02bc\3\2\2\2\u0358\u02bf\3\2\2\2\u0358"+
"\u02c2\3\2\2\2\u0358\u02c5\3\2\2\2\u0358\u02c8\3\2\2\2\u0358\u02cb\3\2"+
"\2\2\u0358\u02ce\3\2\2\2\u0358\u02d1\3\2\2\2\u0358\u02d4\3\2\2\2\u0358"+
"\u02d7\3\2\2\2\u0358\u02da\3\2\2\2\u0358\u02dd\3\2\2\2\u0358\u02e0\3\2"+
"\2\2\u0358\u02e3\3\2\2\2\u0358\u02e6\3\2\2\2\u0358\u02e9\3\2\2\2\u0358"+
"\u02ec\3\2\2\2\u0358\u02ef\3\2\2\2\u0358\u02f2\3\2\2\2\u0358\u02f5\3\2"+
"\2\2\u0358\u02f8\3\2\2\2\u0358\u02fb\3\2\2\2\u0358\u02fe\3\2\2\2\u0358"+
"\u0301\3\2\2\2\u0358\u0304\3\2\2\2\u0358\u0307\3\2\2\2\u0358\u030a\3\2"+
"\2\2\u0358\u030d\3\2\2\2\u0358\u0310\3\2\2\2\u0358\u0313\3\2\2\2\u0358"+
"\u0316\3\2\2\2\u0358\u0319\3\2\2\2\u0358\u031c\3\2\2\2\u0358\u031f\3\2"+
"\2\2\u0358\u0322\3\2\2\2\u0358\u0325\3\2\2\2\u0358\u0328\3\2\2\2\u0358"+
"\u032b\3\2\2\2\u0358\u032e\3\2\2\2\u0358\u0331\3\2\2\2\u0358\u0334\3\2"+
"\2\2\u0358\u0337\3\2\2\2\u0358\u033a\3\2\2\2\u0358\u033d\3\2\2\2\u0358"+
"\u0340\3\2\2\2\u0358\u0343\3\2\2\2\u0358\u0346\3\2\2\2\u0358\u0349\3\2"+
"\2\2\u0358\u034c\3\2\2\2\u0358\u034f\3\2\2\2\u0358\u0352\3\2\2\2\u0358"+
"\u0355\3\2\2\2\u0359\u00b6\3\2\2\2\u035a\u035b\7}\2\2\u035b\u035c\7}\2"+
"\2\u035c\u0360\3\2\2\2\u035d\u035f\13\2\2\2\u035e\u035d\3\2\2\2\u035f"+
"\u0362\3\2\2\2\u0360\u0361\3\2\2\2\u0360\u035e\3\2\2\2\u0361\u0363\3\2"+
"\2\2\u0362\u0360\3\2\2\2\u0363\u0364\7\177\2\2\u0364\u0365\7\177\2\2\u0365"+
"\u00b8\3\2\2\2\u0366\u0367\7d\2\2\u0367\u0368\7{\2\2\u0368\u0369\7v\2"+
"\2\u0369\u038c\7g\2\2\u036a\u036b\7y\2\2\u036b\u036c\7q\2\2\u036c\u036d"+
"\7t\2\2\u036d\u038c\7f\2\2\u036e\u036f\7f\2\2\u036f\u0370\7y\2\2\u0370"+
"\u0371\7q\2\2\u0371\u0372\7t\2\2\u0372\u038c\7f\2\2\u0373\u0374\7d\2\2"+
"\u0374\u0375\7q\2\2\u0375\u0376\7q\2\2\u0376\u038c\7n\2\2\u0377\u0378"+
"\7e\2\2\u0378\u0379\7j\2\2\u0379\u037a\7c\2\2\u037a\u038c\7t\2\2\u037b"+
"\u037c\7u\2\2\u037c\u037d\7j\2\2\u037d\u037e\7q\2\2\u037e\u037f\7t\2\2"+
"\u037f\u038c\7v\2\2\u0380\u0381\7k\2\2\u0381\u0382\7p\2\2\u0382\u038c"+
"\7v\2\2\u0383\u0384\7n\2\2\u0384\u0385\7q\2\2\u0385\u0386\7p\2\2\u0386"+
"\u038c\7i\2\2\u0387\u0388\7x\2\2\u0388\u0389\7q\2\2\u0389\u038a\7k\2\2"+
"\u038a\u038c\7f\2\2\u038b\u0366\3\2\2\2\u038b\u036a\3\2\2\2\u038b\u036e"+
"\3\2\2\2\u038b\u0373\3\2\2\2\u038b\u0377\3\2\2\2\u038b\u037b\3\2\2\2\u038b"+
"\u0380\3\2\2\2\u038b\u0383\3\2\2\2\u038b\u0387\3\2\2\2\u038c\u00ba\3\2"+
"\2\2\u038d\u0393\7$\2\2\u038e\u038f\7^\2\2\u038f\u0392\7$\2\2\u0390\u0392"+
"\n\2\2\2\u0391\u038e\3\2\2\2\u0391\u0390\3\2\2\2\u0392\u0395\3\2\2\2\u0393"+
"\u0391\3\2\2\2\u0393\u0394\3\2\2\2\u0394\u0396\3\2\2\2\u0395\u0393\3\2"+
"\2\2\u0396\u0398\7$\2\2\u0397\u0399\t\3\2\2\u0398\u0397\3\2\2\2\u0398"+
"\u0399\3\2\2\2\u0399\u039e\3\2\2\2\u039a\u039c\t\4\2\2\u039b\u039d\t\5"+
"\2\2\u039c\u039b\3\2\2\2\u039c\u039d\3\2\2\2\u039d\u039f\3\2\2\2\u039e"+
"\u039a\3\2\2\2\u039e\u039f\3\2\2\2\u039f\u03a1\3\2\2\2\u03a0\u03a2\t\3"+
"\2\2\u03a1\u03a0\3\2\2\2\u03a1\u03a2\3\2\2\2\u03a2\u00bc\3\2\2\2\u03a3"+
"\u03a7\7)\2\2\u03a4\u03a5\7^\2\2\u03a5\u03a8\7)\2\2\u03a6\u03a8\n\6\2"+
"\2\u03a7\u03a4\3\2\2\2\u03a7\u03a6\3\2\2\2\u03a8\u03a9\3\2\2\2\u03a9\u03aa"+
"\7)\2\2\u03aa\u00be\3\2\2\2\u03ab\u03ac\7v\2\2\u03ac\u03ad\7t\2\2\u03ad"+
"\u03ae\7w\2\2\u03ae\u03b5\7g\2\2\u03af\u03b0\7h\2\2\u03b0\u03b1\7c\2\2"+
"\u03b1\u03b2\7n\2\2\u03b2\u03b3\7u\2\2\u03b3\u03b5\7g\2\2\u03b4\u03ab"+
"\3\2\2\2\u03b4\u03af\3\2\2\2\u03b5\u00c0\3\2\2\2\u03b6\u03b9\5\u00c3b"+
"\2\u03b7\u03b9\5\u00cbf\2\u03b8\u03b6\3\2\2\2\u03b8\u03b7\3\2\2\2\u03b9"+
"\u00c2\3\2\2\2\u03ba\u03be\5\u00c5c\2\u03bb\u03be\5\u00c7d\2\u03bc\u03be"+
"\5\u00c9e\2\u03bd\u03ba\3\2\2\2\u03bd\u03bb\3\2\2\2\u03bd\u03bc\3\2\2"+
"\2\u03be\u00c4\3\2\2\2\u03bf\u03c5\7\'\2\2\u03c0\u03c1\7\62\2\2\u03c1"+
"\u03c5\7d\2\2\u03c2\u03c3\7\62\2\2\u03c3\u03c5\7D\2\2\u03c4\u03bf\3\2"+
"\2\2\u03c4\u03c0\3\2\2\2\u03c4\u03c2\3\2\2\2\u03c5\u03c9\3\2\2\2\u03c6"+
"\u03c8\5\u00d3j\2\u03c7\u03c6\3\2\2\2\u03c8\u03cb\3\2\2\2\u03c9\u03c7"+
"\3\2\2\2\u03c9\u03ca\3\2\2\2\u03ca\u03cc\3\2\2\2\u03cb\u03c9\3\2\2\2\u03cc"+
"\u03ce\7\60\2\2\u03cd\u03cf\5\u00d3j\2\u03ce\u03cd\3\2\2\2\u03cf\u03d0"+
"\3\2\2\2\u03d0\u03ce\3\2\2\2\u03d0\u03d1\3\2\2\2\u03d1\u00c6\3\2\2\2\u03d2"+
"\u03d4\5\u00d5k\2\u03d3\u03d2\3\2\2\2\u03d4\u03d7\3\2\2\2\u03d5\u03d3"+
"\3\2\2\2\u03d5\u03d6\3\2\2\2\u03d6\u03d8\3\2\2\2\u03d7\u03d5\3\2\2\2\u03d8"+
"\u03da\7\60\2\2\u03d9\u03db\5\u00d5k\2\u03da\u03d9\3\2\2\2\u03db\u03dc"+
"\3\2\2\2\u03dc\u03da\3\2\2\2\u03dc\u03dd\3\2\2\2\u03dd\u00c8\3\2\2\2\u03de"+
"\u03e4\7&\2\2\u03df\u03e0\7\62\2\2\u03e0\u03e4\7z\2\2\u03e1\u03e2\7\62"+
"\2\2\u03e2\u03e4\7Z\2\2\u03e3\u03de\3\2\2\2\u03e3\u03df\3\2\2\2\u03e3"+
"\u03e1\3\2\2\2\u03e4\u03e8\3\2\2\2\u03e5\u03e7\5\u00d7l\2\u03e6\u03e5"+
"\3\2\2\2\u03e7\u03ea\3\2\2\2\u03e8\u03e6\3\2\2\2\u03e8\u03e9\3\2\2\2\u03e9"+
"\u03eb\3\2\2\2\u03ea\u03e8\3\2\2\2\u03eb\u03ed\7\60\2\2\u03ec\u03ee\5"+
"\u00d7l\2\u03ed\u03ec\3\2\2\2\u03ee\u03ef\3\2\2\2\u03ef\u03ed\3\2\2\2"+
"\u03ef\u03f0\3\2\2\2\u03f0\u00ca\3\2\2\2\u03f1\u03f5\5\u00cfh\2\u03f2"+
"\u03f5\5\u00d1i\2\u03f3\u03f5\5\u00cdg\2\u03f4\u03f1\3\2\2\2\u03f4\u03f2"+
"\3\2\2\2\u03f4\u03f3\3\2\2\2\u03f5\u03f9\3\2\2\2\u03f6\u03f7\t\7\2\2\u03f7"+
"\u03fa\t\b\2\2\u03f8\u03fa\7n\2\2\u03f9\u03f6\3\2\2\2\u03f9\u03f8\3\2"+
"\2\2\u03f9\u03fa\3\2\2\2\u03fa\u00cc\3\2\2\2\u03fb\u03fc\7\62\2\2\u03fc"+
"\u03fe\t\t\2\2\u03fd\u03ff\5\u00d3j\2\u03fe\u03fd\3\2\2\2\u03ff\u0400"+
"\3\2\2\2\u0400\u03fe\3\2\2\2\u0400\u0401\3\2\2\2\u0401\u0409\3\2\2\2\u0402"+
"\u0404\7\'\2\2\u0403\u0405\5\u00d3j\2\u0404\u0403\3\2\2\2\u0405\u0406"+
"\3\2\2\2\u0406\u0404\3\2\2\2\u0406\u0407\3\2\2\2\u0407\u0409\3\2\2\2\u0408"+
"\u03fb\3\2\2\2\u0408\u0402\3\2\2\2\u0409\u00ce\3\2\2\2\u040a\u040c\5\u00d5"+
"k\2\u040b\u040a\3\2\2\2\u040c\u040d\3\2\2\2\u040d\u040b\3\2\2\2\u040d"+
"\u040e\3\2\2\2\u040e\u00d0\3\2\2\2\u040f\u0415\7&\2\2\u0410\u0411\7\62"+
"\2\2\u0411\u0415\7z\2\2\u0412\u0413\7\62\2\2\u0413\u0415\7Z\2\2\u0414"+
"\u040f\3\2\2\2\u0414\u0410\3\2\2\2\u0414\u0412\3\2\2\2\u0415\u0417\3\2"+
"\2\2\u0416\u0418\5\u00d7l\2\u0417\u0416\3\2\2\2\u0418\u0419\3\2\2\2\u0419"+
"\u0417\3\2\2\2\u0419\u041a\3\2\2\2\u041a\u00d2\3\2\2\2\u041b\u041c\t\n"+
"\2\2\u041c\u00d4\3\2\2\2\u041d\u041e\t\13\2\2\u041e\u00d6\3\2\2\2\u041f"+
"\u0420\t\f\2\2\u0420\u00d8\3\2\2\2\u0421\u0425\5\u00dbn\2\u0422\u0424"+
"\5\u00ddo\2\u0423\u0422\3\2\2\2\u0424\u0427\3\2\2\2\u0425\u0423\3\2\2"+
"\2\u0425\u0426\3\2\2\2\u0426\u00da\3\2\2\2\u0427\u0425\3\2\2\2\u0428\u0429"+
"\t\r\2\2\u0429\u00dc\3\2\2\2\u042a\u042b\t\16\2\2\u042b\u00de\3\2\2\2"+
"\u042c\u0430\7#\2\2\u042d\u042f\5\u00ddo\2\u042e\u042d\3\2\2\2\u042f\u0432"+
"\3\2\2\2\u0430\u042e\3\2\2\2\u0430\u0431\3\2\2\2\u0431\u0434\3\2\2\2\u0432"+
"\u0430\3\2\2\2\u0433\u0435\t\17\2\2\u0434\u0433\3\2\2\2\u0435\u0436\3"+
"\2\2\2\u0436\u0434\3\2\2\2\u0436\u0437\3\2\2\2\u0437\u00e0\3\2\2\2\u0438"+
"\u043a\t\20\2\2\u0439\u0438\3\2\2\2\u043a\u043b\3\2\2\2\u043b\u0439\3"+
"\2\2\2\u043b\u043c\3\2\2\2\u043c\u043d\3\2\2\2\u043d\u043e\bq\2\2\u043e"+
"\u00e2\3\2\2\2\u043f\u0440\7\61\2\2\u0440\u0441\7\61\2\2\u0441\u0445\3"+
"\2\2\2\u0442\u0444\n\21\2\2\u0443\u0442\3\2\2\2\u0444\u0447\3\2\2\2\u0445"+
"\u0443\3\2\2\2\u0445\u0446\3\2\2\2\u0446\u0448\3\2\2\2\u0447\u0445\3\2"+
"\2\2\u0448\u0449\br\3\2\u0449\u00e4\3\2\2\2\u044a\u044b\7\61\2\2\u044b"+
"\u044c\7,\2\2\u044c\u0450\3\2\2\2\u044d\u044f\13\2\2\2\u044e\u044d\3\2"+
"\2\2\u044f\u0452\3\2\2\2\u0450\u0451\3\2\2\2\u0450\u044e\3\2\2\2\u0451"+
"\u0453\3\2\2\2\u0452\u0450\3\2\2\2\u0453\u0454\7,\2\2\u0454\u0455\7\61"+
"\2\2\u0455\u0456\3\2\2\2\u0456\u0457\bs\3\2\u0457\u00e6\3\2\2\2&\2\u0358"+
"\u0360\u038b\u0391\u0393\u0398\u039c\u039e\u03a1\u03a7\u03b4\u03b8\u03bd"+
"\u03c4\u03c9\u03d0\u03d5\u03dc\u03e3\u03e8\u03ef\u03f4\u03f9\u0400\u0406"+
"\u0408\u040d\u0414\u0419\u0425\u0430\u0436\u043b\u0445\u0450\4\2\3\2\2"+
"\4\2";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());

View File

@ -85,26 +85,28 @@ T__83=84
T__84=85
T__85=86
T__86=87
MNEMONIC=88
KICKASM=89
SIMPLETYPE=90
STRING=91
CHAR=92
BOOLEAN=93
NUMBER=94
NUMFLOAT=95
BINFLOAT=96
DECFLOAT=97
HEXFLOAT=98
NUMINT=99
BININTEGER=100
DECINTEGER=101
HEXINTEGER=102
NAME=103
ASMREL=104
WS=105
COMMENT_LINE=106
COMMENT_BLOCK=107
T__87=88
T__88=89
MNEMONIC=90
KICKASM=91
SIMPLETYPE=92
STRING=93
CHAR=94
BOOLEAN=95
NUMBER=96
NUMFLOAT=97
BINFLOAT=98
DECFLOAT=99
HEXFLOAT=100
NUMINT=101
BININTEGER=102
DECINTEGER=103
HEXINTEGER=104
NAME=105
ASMREL=106
WS=107
COMMENT_LINE=108
COMMENT_BLOCK=109
'import'=1
';'=2
'typedef'=3
@ -121,74 +123,76 @@ COMMENT_BLOCK=107
'#pc'=14
'target'=15
'#target'=16
'encoding'=17
'#encoding'=18
'const'=19
'extern'=20
'align'=21
'register'=22
'inline'=23
'volatile'=24
'interrupt'=25
'if'=26
'else'=27
'while'=28
'do'=29
'for'=30
'return'=31
'break'=32
'continue'=33
'asm'=34
':'=35
'..'=36
'signed'=37
'unsigned'=38
'*'=39
'['=40
']'=41
'struct'=42
'enum'=43
'.'=44
'->'=45
'sizeof'=46
'typeid'=47
'--'=48
'++'=49
'+'=50
'-'=51
'!'=52
'&'=53
'~'=54
'>>'=55
'<<'=56
'/'=57
'%'=58
'<'=59
'>'=60
'=='=61
'!='=62
'<='=63
'>='=64
'^'=65
'|'=66
'&&'=67
'||'=68
'?'=69
'+='=70
'-='=71
'*='=72
'/='=73
'%='=74
'<<='=75
'>>='=76
'&='=77
'|='=78
'^='=79
'kickasm'=80
'resource'=81
'uses'=82
'clobbers'=83
'bytes'=84
'cycles'=85
'.byte'=86
'#'=87
'link'=17
'#link'=18
'encoding'=19
'#encoding'=20
'const'=21
'extern'=22
'align'=23
'register'=24
'inline'=25
'volatile'=26
'interrupt'=27
'if'=28
'else'=29
'while'=30
'do'=31
'for'=32
'return'=33
'break'=34
'continue'=35
'asm'=36
':'=37
'..'=38
'signed'=39
'unsigned'=40
'*'=41
'['=42
']'=43
'struct'=44
'enum'=45
'.'=46
'->'=47
'sizeof'=48
'typeid'=49
'--'=50
'++'=51
'+'=52
'-'=53
'!'=54
'&'=55
'~'=56
'>>'=57
'<<'=58
'/'=59
'%'=60
'<'=61
'>'=62
'=='=63
'!='=64
'<='=65
'>='=66
'^'=67
'|'=68
'&&'=69
'||'=70
'?'=71
'+='=72
'-='=73
'*='=74
'/='=75
'%='=76
'<<='=77
'>>='=78
'&='=79
'|='=80
'^='=81
'kickasm'=82
'resource'=83
'uses'=84
'clobbers'=85
'bytes'=86
'cycles'=87
'.byte'=88
'#'=89

View File

@ -211,6 +211,18 @@ public interface KickCListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx);
/**
* Enter a parse tree produced by the {@code globalDirectiveLinkScript}
* labeled alternative in {@link KickCParser#globalDirective}.
* @param ctx the parse tree
*/
void enterGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx);
/**
* Exit a parse tree produced by the {@code globalDirectiveLinkScript}
* labeled alternative in {@link KickCParser#globalDirective}.
* @param ctx the parse tree
*/
void exitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx);
/**
* Enter a parse tree produced by the {@code globalDirectiveEncoding}
* labeled alternative in {@link KickCParser#globalDirective}.

File diff suppressed because it is too large Load Diff

View File

@ -131,6 +131,13 @@ public interface KickCVisitor<T> extends ParseTreeVisitor<T> {
* @return the visitor result
*/
T visitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx);
/**
* Visit a parse tree produced by the {@code globalDirectiveLinkScript}
* labeled alternative in {@link KickCParser#globalDirective}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx);
/**
* Visit a parse tree produced by the {@code globalDirectiveEncoding}
* labeled alternative in {@link KickCParser#globalDirective}.

View File

@ -110,6 +110,16 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor<Object> {
return null;
}
@Override
public Object visitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx) {
String linkName = ctx.STRING().getText();
String linkFileName = linkName.substring(1, linkName.length() - 1);
program.getLog().append("Loading link script " + linkName);
Path currentPath = file.toPath().getParent();
Compiler.loadLinkScriptFile(linkFileName, program, currentPath);
return null;
}
@Override
public Object visitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx) {
List<Number> reservedZps = new ArrayList<>();

View File

@ -116,8 +116,12 @@ public class Pass4CodeGeneration {
asm.addLine(new AsmSetPc("Program", AsmFormat.getAsmNumber(programPc)));
} else if(TargetPlatform.CUSTOM.equals(program.getTargetPlatform())) {
useSegments = true;
if(programPc==null) programPc = 0x2000;
asm.addLine(new AsmSetPc("Program", AsmFormat.getAsmNumber(programPc)));
if(program.getLinkScriptBody()!=null) {
asm.addLine(new AsmInlineKickAsm(program.getLinkScriptBody(), 0L, 0L));
}
if(programPc!=null) {
asm.addLine(new AsmSetPc("Program", AsmFormat.getAsmNumber(programPc)));
}
}
// Generate global ZP labels

View File

@ -36,6 +36,11 @@ public class TestPrograms {
public TestPrograms() {
}
@Test
public void testLinking() throws IOException, URISyntaxException {
compileAndCompare("examples/linking/linking");
}
@Test
public void testNmiSamples() throws IOException, URISyntaxException {
compileAndCompare("examples/nmisamples/nmisamples");

View File

@ -0,0 +1,15 @@
// Example showing how to perform linking using a linker-file
// The linker file is created using KickAssembler segments.
// See the KickAssembler manual for description of the format http://theweb.dk/KickAssembler/
// Specifying the linker script file is done using the #pragma link(<file>)
// It can also be specified using kickc command line option -T <file>
#pragma link("xmega65.ld")
char* BGCOL = 0xd021;
void main() {
while(true) {
(*BGCOL)++;
}
}

View File

@ -0,0 +1,7 @@
.file [name="%O.bin", type="bin", segments="XMega65Bin"]
.segmentdef XMega65Bin [segments="Syscall, Code, Data, Stack, Zeropage"]
.segmentdef Syscall [start=$8000, max=$81ff]
.segmentdef Code [start=$8200, min=$8200, max=$bdff]
.segmentdef Data [startAfter="Code", min=$8200, max=$bdff]
.segmentdef Stack [min=$be00, max=$beff, fill]
.segmentdef Zeropage [min=$bf00, max=$bfff, fill]