diff --git a/.idea/misc.xml b/.idea/misc.xml
index 5b2bcaf25..c13e9bb26 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,5 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/main/java/dk/camelot64/kickc/model/iterator/ProgramValue.java b/src/main/java/dk/camelot64/kickc/model/iterator/ProgramValue.java
index a2db6fed6..45180edd1 100644
--- a/src/main/java/dk/camelot64/kickc/model/iterator/ProgramValue.java
+++ b/src/main/java/dk/camelot64/kickc/model/iterator/ProgramValue.java
@@ -692,28 +692,6 @@ public interface ProgramValue {
}
- /** Location inside inline kickasm code. */
- class ProgramValueKickAsmLocation implements ProgramValue {
-
- private StatementKickAsm statementKickAsm;
-
- ProgramValueKickAsmLocation(StatementKickAsm statementKickAsm) {
- super();
- this.statementKickAsm = statementKickAsm;
- }
-
- @Override
- public Value get() {
- return statementKickAsm.getLocation();
- }
-
- @Override
- public void set(Value value) {
- statementKickAsm.setLocation((RValue) value);
- }
-
- }
-
class ProgramValueListElement implements ProgramValue {
private ValueList list;
private int idx;
diff --git a/src/main/java/dk/camelot64/kickc/model/iterator/ProgramValueIterator.java b/src/main/java/dk/camelot64/kickc/model/iterator/ProgramValueIterator.java
index 4ebde251e..f9675f802 100644
--- a/src/main/java/dk/camelot64/kickc/model/iterator/ProgramValueIterator.java
+++ b/src/main/java/dk/camelot64/kickc/model/iterator/ProgramValueIterator.java
@@ -144,10 +144,6 @@ public class ProgramValueIterator {
}
} else if(statement instanceof StatementKickAsm) {
StatementKickAsm statementKickAsm = (StatementKickAsm) statement;
- RValue location = statementKickAsm.getLocation();
- if(location != null) {
- execute(new ProgramValue.ProgramValueKickAsmLocation(statementKickAsm), handler, statement, statementsIt, block);
- }
RValue bytes = statementKickAsm.getBytes();
if(bytes != null) {
execute(new ProgramValue.ProgramValueKickAsmBytes(statementKickAsm), handler, statement, statementsIt, block);
diff --git a/src/main/java/dk/camelot64/kickc/model/statements/StatementKickAsm.java b/src/main/java/dk/camelot64/kickc/model/statements/StatementKickAsm.java
index 15d7df0b0..c96a7615e 100644
--- a/src/main/java/dk/camelot64/kickc/model/statements/StatementKickAsm.java
+++ b/src/main/java/dk/camelot64/kickc/model/statements/StatementKickAsm.java
@@ -15,9 +15,6 @@ public class StatementKickAsm extends StatementBase {
/** KickAssembler code. */
private String kickAsmCode;
- /** The absolute address to generate the kick-assembler code at. If null it is generated inline. */
- private RValue location;
-
/** The number of bytes generated by the kick-assembler code. */
private RValue bytes;
@@ -36,10 +33,9 @@ public class StatementKickAsm extends StatementBase {
this.uses = new ArrayList<>();
}
- public StatementKickAsm(String kickAsmCode, RValue location, RValue bytes, RValue cycles, List uses, AsmClobber declaredClobber, StatementSource source, List comments) {
+ public StatementKickAsm(String kickAsmCode, RValue bytes, RValue cycles, List uses, AsmClobber declaredClobber, StatementSource source, List comments) {
super(source, comments);
this.kickAsmCode = kickAsmCode;
- this.location = location;
this.bytes = bytes;
this.cycles = cycles;
this.uses = uses;
@@ -54,14 +50,6 @@ public class StatementKickAsm extends StatementBase {
this.declaredClobber = declaredClobber;
}
- public RValue getLocation() {
- return location;
- }
-
- public void setLocation(RValue location) {
- this.location = location;
- }
-
public List getUses() {
return uses;
}
@@ -74,10 +62,6 @@ public class StatementKickAsm extends StatementBase {
public String toString(Program program, boolean aliveInfo) {
StringBuilder txt = new StringBuilder();
txt.append("kickasm(");
- if(location!=null) {
- txt.append("location ");
- txt.append(location.toString(program));
- }
for(SymbolRef use : uses) {
txt.append(" uses ");
txt.append(use.getFullName());
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java
index d2d00f65c..8e2f49230 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java
@@ -1,4 +1,4 @@
-// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 by ANTLR 4.7.2
+// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 by ANTLR 4.8
package dk.camelot64.kickc.parser;
@@ -13,7 +13,7 @@ import org.antlr.v4.runtime.misc.*;
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"})
public class KickCLexer extends Lexer {
- static { RuntimeMetaData.checkVersion("4.7.2", RuntimeMetaData.VERSION); }
+ static { RuntimeMetaData.checkVersion("4.8", RuntimeMetaData.VERSION); }
protected static final DFA[] _decisionToDFA;
protected static final PredictionContextCache _sharedContextCache =
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4
index 672ce2a23..322e11d80 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4
@@ -269,7 +269,6 @@ asmDirective
| CLOBBERS STRING #asmDirectiveClobber
| BYTES expr #asmDirectiveBytes
| CYCLES expr #asmDirectiveCycles
- | PC ( INLINE | expr ) #asmDirectiveAddress
;
asmLines
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp
index e8a1d0b8e..0e9eb7ea8 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp
@@ -384,4 +384,4 @@ asmExpr
atn:
-[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 167, 898, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 7, 4, 102, 10, 4, 12, 4, 14, 4, 105, 11, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 122, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 7, 7, 129, 10, 7, 12, 7, 14, 7, 132, 11, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 7, 7, 139, 10, 7, 12, 7, 14, 7, 142, 11, 7, 3, 7, 7, 7, 145, 10, 7, 12, 7, 14, 7, 148, 11, 7, 3, 8, 3, 8, 3, 8, 7, 8, 153, 10, 8, 12, 8, 14, 8, 156, 11, 8, 3, 8, 3, 8, 7, 8, 160, 10, 8, 12, 8, 14, 8, 163, 11, 8, 3, 8, 3, 8, 3, 9, 3, 9, 7, 9, 169, 10, 9, 12, 9, 14, 9, 172, 11, 9, 3, 9, 3, 9, 5, 9, 176, 10, 9, 3, 9, 3, 9, 7, 9, 180, 10, 9, 12, 9, 14, 9, 183, 11, 9, 3, 9, 3, 9, 5, 9, 187, 10, 9, 3, 10, 7, 10, 190, 10, 10, 12, 10, 14, 10, 193, 11, 10, 3, 10, 3, 10, 7, 10, 197, 10, 10, 12, 10, 14, 10, 200, 11, 10, 3, 11, 3, 11, 7, 11, 204, 10, 11, 12, 11, 14, 11, 207, 11, 11, 3, 12, 3, 12, 5, 12, 211, 10, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 223, 10, 13, 3, 13, 7, 13, 226, 10, 13, 12, 13, 14, 13, 229, 11, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 239, 10, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 246, 10, 14, 3, 14, 3, 14, 3, 14, 5, 14, 251, 10, 14, 3, 14, 3, 14, 3, 14, 3, 14, 7, 14, 257, 10, 14, 12, 14, 14, 14, 260, 11, 14, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 5, 16, 267, 10, 16, 3, 16, 3, 16, 6, 16, 271, 10, 16, 13, 16, 14, 16, 272, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 5, 19, 285, 10, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 7, 20, 297, 10, 20, 12, 20, 14, 20, 300, 11, 20, 3, 21, 3, 21, 3, 21, 5, 21, 305, 10, 21, 3, 22, 3, 22, 7, 22, 309, 10, 22, 12, 22, 14, 22, 312, 11, 22, 3, 22, 3, 22, 3, 22, 5, 22, 317, 10, 22, 3, 22, 3, 22, 3, 22, 5, 22, 322, 10, 22, 3, 23, 3, 23, 5, 23, 326, 10, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 7, 24, 333, 10, 24, 12, 24, 14, 24, 336, 11, 24, 3, 25, 3, 25, 7, 25, 340, 10, 25, 12, 25, 14, 25, 343, 11, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 349, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 7, 26, 388, 10, 26, 12, 26, 14, 26, 391, 11, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 7, 26, 432, 10, 26, 12, 26, 14, 26, 435, 11, 26, 3, 26, 5, 26, 438, 10, 26, 3, 27, 3, 27, 3, 27, 5, 27, 443, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 454, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 474, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 481, 10, 28, 12, 28, 14, 28, 484, 11, 28, 3, 28, 3, 28, 3, 28, 5, 28, 489, 10, 28, 3, 29, 6, 29, 492, 10, 29, 13, 29, 14, 29, 493, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 501, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 514, 10, 30, 3, 30, 7, 30, 517, 10, 30, 12, 30, 14, 30, 520, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 529, 10, 30, 12, 30, 14, 30, 532, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 543, 10, 30, 12, 30, 14, 30, 546, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 564, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 573, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 580, 10, 30, 3, 31, 6, 31, 583, 10, 31, 13, 31, 14, 31, 584, 3, 31, 3, 31, 3, 31, 5, 31, 590, 10, 31, 5, 31, 592, 10, 31, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 598, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 605, 10, 33, 3, 33, 3, 33, 7, 33, 609, 10, 33, 12, 33, 14, 33, 612, 11, 33, 5, 33, 614, 10, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 622, 10, 33, 3, 34, 5, 34, 625, 10, 34, 3, 34, 5, 34, 628, 10, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 7, 35, 636, 10, 35, 12, 35, 14, 35, 639, 11, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 650, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 658, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 664, 10, 36, 3, 36, 3, 36, 5, 36, 668, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 687, 10, 36, 12, 36, 14, 36, 690, 11, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 6, 36, 697, 10, 36, 13, 36, 14, 36, 698, 3, 36, 3, 36, 5, 36, 703, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 753, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 763, 10, 36, 12, 36, 14, 36, 766, 11, 36, 3, 37, 3, 37, 3, 37, 7, 37, 771, 10, 37, 12, 37, 14, 37, 774, 11, 37, 3, 38, 3, 38, 5, 38, 778, 10, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 7, 39, 786, 10, 39, 12, 39, 14, 39, 789, 11, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 806, 10, 40, 5, 40, 808, 10, 40, 3, 41, 7, 41, 811, 10, 41, 12, 41, 14, 41, 814, 11, 41, 3, 42, 3, 42, 3, 42, 5, 42, 819, 10, 42, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 825, 10, 43, 3, 44, 3, 44, 5, 44, 829, 10, 44, 3, 45, 3, 45, 3, 45, 3, 45, 7, 45, 835, 10, 45, 12, 45, 14, 45, 838, 11, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 863, 10, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 5, 47, 879, 10, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 7, 47, 893, 10, 47, 12, 47, 14, 47, 896, 11, 47, 3, 47, 2, 9, 12, 24, 26, 38, 68, 70, 92, 48, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 2, 13, 3, 2, 23, 24, 5, 2, 18, 19, 25, 26, 94, 94, 4, 2, 33, 33, 36, 36, 3, 2, 29, 30, 3, 2, 20, 22, 3, 2, 18, 19, 3, 2, 31, 36, 3, 2, 139, 142, 3, 2, 137, 138, 3, 2, 143, 144, 3, 2, 139, 140, 2, 1030, 2, 94, 3, 2, 2, 2, 4, 97, 3, 2, 2, 2, 6, 103, 3, 2, 2, 2, 8, 121, 3, 2, 2, 2, 10, 123, 3, 2, 2, 2, 12, 126, 3, 2, 2, 2, 14, 149, 3, 2, 2, 2, 16, 186, 3, 2, 2, 2, 18, 191, 3, 2, 2, 2, 20, 201, 3, 2, 2, 2, 22, 208, 3, 2, 2, 2, 24, 214, 3, 2, 2, 2, 26, 245, 3, 2, 2, 2, 28, 261, 3, 2, 2, 2, 30, 264, 3, 2, 2, 2, 32, 276, 3, 2, 2, 2, 34, 279, 3, 2, 2, 2, 36, 282, 3, 2, 2, 2, 38, 290, 3, 2, 2, 2, 40, 301, 3, 2, 2, 2, 42, 306, 3, 2, 2, 2, 44, 323, 3, 2, 2, 2, 46, 329, 3, 2, 2, 2, 48, 348, 3, 2, 2, 2, 50, 437, 3, 2, 2, 2, 52, 439, 3, 2, 2, 2, 54, 488, 3, 2, 2, 2, 56, 491, 3, 2, 2, 2, 58, 579, 3, 2, 2, 2, 60, 582, 3, 2, 2, 2, 62, 593, 3, 2, 2, 2, 64, 621, 3, 2, 2, 2, 66, 627, 3, 2, 2, 2, 68, 629, 3, 2, 2, 2, 70, 702, 3, 2, 2, 2, 72, 767, 3, 2, 2, 2, 74, 775, 3, 2, 2, 2, 76, 781, 3, 2, 2, 2, 78, 807, 3, 2, 2, 2, 80, 812, 3, 2, 2, 2, 82, 818, 3, 2, 2, 2, 84, 824, 3, 2, 2, 2, 86, 826, 3, 2, 2, 2, 88, 830, 3, 2, 2, 2, 90, 862, 3, 2, 2, 2, 92, 878, 3, 2, 2, 2, 94, 95, 5, 6, 4, 2, 95, 96, 7, 2, 2, 3, 96, 3, 3, 2, 2, 2, 97, 98, 5, 80, 41, 2, 98, 99, 7, 2, 2, 3, 99, 5, 3, 2, 2, 2, 100, 102, 5, 8, 5, 2, 101, 100, 3, 2, 2, 2, 102, 105, 3, 2, 2, 2, 103, 101, 3, 2, 2, 2, 103, 104, 3, 2, 2, 2, 104, 7, 3, 2, 2, 2, 105, 103, 3, 2, 2, 2, 106, 107, 5, 10, 6, 2, 107, 108, 7, 10, 2, 2, 108, 122, 3, 2, 2, 2, 109, 110, 5, 30, 16, 2, 110, 111, 7, 10, 2, 2, 111, 122, 3, 2, 2, 2, 112, 113, 5, 36, 19, 2, 113, 114, 7, 10, 2, 2, 114, 122, 3, 2, 2, 2, 115, 122, 5, 42, 22, 2, 116, 122, 5, 74, 38, 2, 117, 122, 5, 50, 26, 2, 118, 119, 5, 14, 8, 2, 119, 120, 7, 10, 2, 2, 120, 122, 3, 2, 2, 2, 121, 106, 3, 2, 2, 2, 121, 109, 3, 2, 2, 2, 121, 112, 3, 2, 2, 2, 121, 115, 3, 2, 2, 2, 121, 116, 3, 2, 2, 2, 121, 117, 3, 2, 2, 2, 121, 118, 3, 2, 2, 2, 122, 9, 3, 2, 2, 2, 123, 124, 5, 18, 10, 2, 124, 125, 5, 12, 7, 2, 125, 11, 3, 2, 2, 2, 126, 130, 8, 7, 1, 2, 127, 129, 5, 20, 11, 2, 128, 127, 3, 2, 2, 2, 129, 132, 3, 2, 2, 2, 130, 128, 3, 2, 2, 2, 130, 131, 3, 2, 2, 2, 131, 133, 3, 2, 2, 2, 132, 130, 3, 2, 2, 2, 133, 134, 5, 16, 9, 2, 134, 146, 3, 2, 2, 2, 135, 136, 12, 3, 2, 2, 136, 140, 7, 12, 2, 2, 137, 139, 5, 20, 11, 2, 138, 137, 3, 2, 2, 2, 139, 142, 3, 2, 2, 2, 140, 138, 3, 2, 2, 2, 140, 141, 3, 2, 2, 2, 141, 143, 3, 2, 2, 2, 142, 140, 3, 2, 2, 2, 143, 145, 5, 16, 9, 2, 144, 135, 3, 2, 2, 2, 145, 148, 3, 2, 2, 2, 146, 144, 3, 2, 2, 2, 146, 147, 3, 2, 2, 2, 147, 13, 3, 2, 2, 2, 148, 146, 3, 2, 2, 2, 149, 150, 7, 41, 2, 2, 150, 154, 5, 18, 10, 2, 151, 153, 5, 20, 11, 2, 152, 151, 3, 2, 2, 2, 153, 156, 3, 2, 2, 2, 154, 152, 3, 2, 2, 2, 154, 155, 3, 2, 2, 2, 155, 157, 3, 2, 2, 2, 156, 154, 3, 2, 2, 2, 157, 161, 7, 121, 2, 2, 158, 160, 5, 22, 12, 2, 159, 158, 3, 2, 2, 2, 160, 163, 3, 2, 2, 2, 161, 159, 3, 2, 2, 2, 161, 162, 3, 2, 2, 2, 162, 164, 3, 2, 2, 2, 163, 161, 3, 2, 2, 2, 164, 165, 8, 8, 1, 2, 165, 15, 3, 2, 2, 2, 166, 170, 7, 121, 2, 2, 167, 169, 5, 22, 12, 2, 168, 167, 3, 2, 2, 2, 169, 172, 3, 2, 2, 2, 170, 168, 3, 2, 2, 2, 170, 171, 3, 2, 2, 2, 171, 175, 3, 2, 2, 2, 172, 170, 3, 2, 2, 2, 173, 174, 7, 39, 2, 2, 174, 176, 5, 70, 36, 2, 175, 173, 3, 2, 2, 2, 175, 176, 3, 2, 2, 2, 176, 187, 3, 2, 2, 2, 177, 181, 7, 121, 2, 2, 178, 180, 5, 22, 12, 2, 179, 178, 3, 2, 2, 2, 180, 183, 3, 2, 2, 2, 181, 179, 3, 2, 2, 2, 181, 182, 3, 2, 2, 2, 182, 184, 3, 2, 2, 2, 183, 181, 3, 2, 2, 2, 184, 185, 7, 39, 2, 2, 185, 187, 5, 74, 38, 2, 186, 166, 3, 2, 2, 2, 186, 177, 3, 2, 2, 2, 187, 17, 3, 2, 2, 2, 188, 190, 5, 54, 28, 2, 189, 188, 3, 2, 2, 2, 190, 193, 3, 2, 2, 2, 191, 189, 3, 2, 2, 2, 191, 192, 3, 2, 2, 2, 192, 194, 3, 2, 2, 2, 193, 191, 3, 2, 2, 2, 194, 198, 5, 26, 14, 2, 195, 197, 5, 54, 28, 2, 196, 195, 3, 2, 2, 2, 197, 200, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 199, 3, 2, 2, 2, 199, 19, 3, 2, 2, 2, 200, 198, 3, 2, 2, 2, 201, 205, 7, 20, 2, 2, 202, 204, 5, 54, 28, 2, 203, 202, 3, 2, 2, 2, 204, 207, 3, 2, 2, 2, 205, 203, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 21, 3, 2, 2, 2, 207, 205, 3, 2, 2, 2, 208, 210, 7, 6, 2, 2, 209, 211, 5, 70, 36, 2, 210, 209, 3, 2, 2, 2, 210, 211, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 7, 7, 2, 2, 213, 23, 3, 2, 2, 2, 214, 215, 8, 13, 1, 2, 215, 216, 5, 26, 14, 2, 216, 227, 3, 2, 2, 2, 217, 218, 12, 4, 2, 2, 218, 226, 7, 20, 2, 2, 219, 220, 12, 3, 2, 2, 220, 222, 7, 6, 2, 2, 221, 223, 5, 70, 36, 2, 222, 221, 3, 2, 2, 2, 222, 223, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 226, 7, 7, 2, 2, 225, 217, 3, 2, 2, 2, 225, 219, 3, 2, 2, 2, 226, 229, 3, 2, 2, 2, 227, 225, 3, 2, 2, 2, 227, 228, 3, 2, 2, 2, 228, 25, 3, 2, 2, 2, 229, 227, 3, 2, 2, 2, 230, 231, 8, 14, 1, 2, 231, 232, 7, 8, 2, 2, 232, 233, 5, 26, 14, 2, 233, 234, 7, 9, 2, 2, 234, 246, 3, 2, 2, 2, 235, 246, 7, 96, 2, 2, 236, 238, 7, 95, 2, 2, 237, 239, 7, 96, 2, 2, 238, 237, 3, 2, 2, 2, 238, 239, 3, 2, 2, 2, 239, 246, 3, 2, 2, 2, 240, 246, 5, 30, 16, 2, 241, 246, 5, 28, 15, 2, 242, 246, 5, 36, 19, 2, 243, 246, 5, 34, 18, 2, 244, 246, 7, 3, 2, 2, 245, 230, 3, 2, 2, 2, 245, 235, 3, 2, 2, 2, 245, 236, 3, 2, 2, 2, 245, 240, 3, 2, 2, 2, 245, 241, 3, 2, 2, 2, 245, 242, 3, 2, 2, 2, 245, 243, 3, 2, 2, 2, 245, 244, 3, 2, 2, 2, 246, 258, 3, 2, 2, 2, 247, 248, 12, 9, 2, 2, 248, 250, 7, 6, 2, 2, 249, 251, 5, 70, 36, 2, 250, 249, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 257, 7, 7, 2, 2, 253, 254, 12, 8, 2, 2, 254, 255, 7, 8, 2, 2, 255, 257, 7, 9, 2, 2, 256, 247, 3, 2, 2, 2, 256, 253, 3, 2, 2, 2, 257, 260, 3, 2, 2, 2, 258, 256, 3, 2, 2, 2, 258, 259, 3, 2, 2, 2, 259, 27, 3, 2, 2, 2, 260, 258, 3, 2, 2, 2, 261, 262, 7, 83, 2, 2, 262, 263, 7, 121, 2, 2, 263, 29, 3, 2, 2, 2, 264, 266, 7, 83, 2, 2, 265, 267, 7, 121, 2, 2, 266, 265, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 268, 3, 2, 2, 2, 268, 270, 7, 4, 2, 2, 269, 271, 5, 32, 17, 2, 270, 269, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 270, 3, 2, 2, 2, 272, 273, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 275, 7, 5, 2, 2, 275, 31, 3, 2, 2, 2, 276, 277, 5, 10, 6, 2, 277, 278, 7, 10, 2, 2, 278, 33, 3, 2, 2, 2, 279, 280, 7, 84, 2, 2, 280, 281, 7, 121, 2, 2, 281, 35, 3, 2, 2, 2, 282, 284, 7, 84, 2, 2, 283, 285, 7, 121, 2, 2, 284, 283, 3, 2, 2, 2, 284, 285, 3, 2, 2, 2, 285, 286, 3, 2, 2, 2, 286, 287, 7, 4, 2, 2, 287, 288, 5, 38, 20, 2, 288, 289, 7, 5, 2, 2, 289, 37, 3, 2, 2, 2, 290, 291, 8, 20, 1, 2, 291, 292, 5, 40, 21, 2, 292, 298, 3, 2, 2, 2, 293, 294, 12, 3, 2, 2, 294, 295, 7, 12, 2, 2, 295, 297, 5, 40, 21, 2, 296, 293, 3, 2, 2, 2, 297, 300, 3, 2, 2, 2, 298, 296, 3, 2, 2, 2, 298, 299, 3, 2, 2, 2, 299, 39, 3, 2, 2, 2, 300, 298, 3, 2, 2, 2, 301, 304, 7, 121, 2, 2, 302, 303, 7, 39, 2, 2, 303, 305, 5, 70, 36, 2, 304, 302, 3, 2, 2, 2, 304, 305, 3, 2, 2, 2, 305, 41, 3, 2, 2, 2, 306, 310, 5, 18, 10, 2, 307, 309, 5, 20, 11, 2, 308, 307, 3, 2, 2, 2, 309, 312, 3, 2, 2, 2, 310, 308, 3, 2, 2, 2, 310, 311, 3, 2, 2, 2, 311, 313, 3, 2, 2, 2, 312, 310, 3, 2, 2, 2, 313, 314, 7, 121, 2, 2, 314, 316, 7, 8, 2, 2, 315, 317, 5, 46, 24, 2, 316, 315, 3, 2, 2, 2, 316, 317, 3, 2, 2, 2, 317, 318, 3, 2, 2, 2, 318, 321, 7, 9, 2, 2, 319, 322, 5, 44, 23, 2, 320, 322, 7, 10, 2, 2, 321, 319, 3, 2, 2, 2, 321, 320, 3, 2, 2, 2, 322, 43, 3, 2, 2, 2, 323, 325, 7, 4, 2, 2, 324, 326, 5, 56, 29, 2, 325, 324, 3, 2, 2, 2, 325, 326, 3, 2, 2, 2, 326, 327, 3, 2, 2, 2, 327, 328, 7, 5, 2, 2, 328, 45, 3, 2, 2, 2, 329, 334, 5, 48, 25, 2, 330, 331, 7, 12, 2, 2, 331, 333, 5, 48, 25, 2, 332, 330, 3, 2, 2, 2, 333, 336, 3, 2, 2, 2, 334, 332, 3, 2, 2, 2, 334, 335, 3, 2, 2, 2, 335, 47, 3, 2, 2, 2, 336, 334, 3, 2, 2, 2, 337, 341, 5, 18, 10, 2, 338, 340, 5, 20, 11, 2, 339, 338, 3, 2, 2, 2, 340, 343, 3, 2, 2, 2, 341, 339, 3, 2, 2, 2, 341, 342, 3, 2, 2, 2, 342, 344, 3, 2, 2, 2, 343, 341, 3, 2, 2, 2, 344, 345, 7, 121, 2, 2, 345, 349, 3, 2, 2, 2, 346, 349, 7, 96, 2, 2, 347, 349, 7, 14, 2, 2, 348, 337, 3, 2, 2, 2, 348, 346, 3, 2, 2, 2, 348, 347, 3, 2, 2, 2, 349, 49, 3, 2, 2, 2, 350, 351, 7, 101, 2, 2, 351, 352, 7, 44, 2, 2, 352, 353, 3, 2, 2, 2, 353, 354, 7, 8, 2, 2, 354, 355, 7, 121, 2, 2, 355, 438, 7, 9, 2, 2, 356, 357, 7, 101, 2, 2, 357, 358, 7, 48, 2, 2, 358, 359, 3, 2, 2, 2, 359, 360, 7, 8, 2, 2, 360, 361, 7, 121, 2, 2, 361, 438, 7, 9, 2, 2, 362, 363, 7, 101, 2, 2, 363, 364, 7, 45, 2, 2, 364, 365, 3, 2, 2, 2, 365, 366, 7, 8, 2, 2, 366, 367, 7, 122, 2, 2, 367, 438, 7, 9, 2, 2, 368, 369, 7, 101, 2, 2, 369, 370, 7, 46, 2, 2, 370, 371, 3, 2, 2, 2, 371, 372, 7, 8, 2, 2, 372, 373, 7, 122, 2, 2, 373, 438, 7, 9, 2, 2, 374, 375, 7, 101, 2, 2, 375, 376, 7, 47, 2, 2, 376, 377, 3, 2, 2, 2, 377, 378, 7, 8, 2, 2, 378, 379, 7, 122, 2, 2, 379, 438, 7, 9, 2, 2, 380, 381, 7, 101, 2, 2, 381, 382, 7, 42, 2, 2, 382, 383, 3, 2, 2, 2, 383, 384, 7, 8, 2, 2, 384, 389, 5, 52, 27, 2, 385, 386, 7, 12, 2, 2, 386, 388, 5, 52, 27, 2, 387, 385, 3, 2, 2, 2, 388, 391, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 389, 390, 3, 2, 2, 2, 390, 392, 3, 2, 2, 2, 391, 389, 3, 2, 2, 2, 392, 393, 7, 9, 2, 2, 393, 438, 3, 2, 2, 2, 394, 395, 7, 101, 2, 2, 395, 396, 7, 43, 2, 2, 396, 397, 3, 2, 2, 2, 397, 398, 7, 8, 2, 2, 398, 399, 7, 112, 2, 2, 399, 438, 7, 9, 2, 2, 400, 401, 7, 101, 2, 2, 401, 402, 7, 49, 2, 2, 402, 403, 3, 2, 2, 2, 403, 404, 7, 8, 2, 2, 404, 405, 7, 121, 2, 2, 405, 438, 7, 9, 2, 2, 406, 407, 7, 101, 2, 2, 407, 408, 7, 50, 2, 2, 408, 409, 3, 2, 2, 2, 409, 410, 7, 8, 2, 2, 410, 411, 7, 121, 2, 2, 411, 438, 7, 9, 2, 2, 412, 413, 7, 101, 2, 2, 413, 414, 7, 51, 2, 2, 414, 415, 3, 2, 2, 2, 415, 416, 7, 8, 2, 2, 416, 417, 7, 121, 2, 2, 417, 438, 7, 9, 2, 2, 418, 419, 7, 101, 2, 2, 419, 420, 7, 68, 2, 2, 420, 421, 3, 2, 2, 2, 421, 422, 7, 8, 2, 2, 422, 423, 7, 69, 2, 2, 423, 438, 7, 9, 2, 2, 424, 425, 7, 101, 2, 2, 425, 426, 7, 70, 2, 2, 426, 427, 3, 2, 2, 2, 427, 428, 7, 8, 2, 2, 428, 433, 7, 121, 2, 2, 429, 430, 7, 12, 2, 2, 430, 432, 7, 121, 2, 2, 431, 429, 3, 2, 2, 2, 432, 435, 3, 2, 2, 2, 433, 431, 3, 2, 2, 2, 433, 434, 3, 2, 2, 2, 434, 436, 3, 2, 2, 2, 435, 433, 3, 2, 2, 2, 436, 438, 7, 9, 2, 2, 437, 350, 3, 2, 2, 2, 437, 356, 3, 2, 2, 2, 437, 362, 3, 2, 2, 2, 437, 368, 3, 2, 2, 2, 437, 374, 3, 2, 2, 2, 437, 380, 3, 2, 2, 2, 437, 394, 3, 2, 2, 2, 437, 400, 3, 2, 2, 2, 437, 406, 3, 2, 2, 2, 437, 412, 3, 2, 2, 2, 437, 418, 3, 2, 2, 2, 437, 424, 3, 2, 2, 2, 438, 51, 3, 2, 2, 2, 439, 442, 7, 112, 2, 2, 440, 441, 7, 13, 2, 2, 441, 443, 7, 112, 2, 2, 442, 440, 3, 2, 2, 2, 442, 443, 3, 2, 2, 2, 443, 53, 3, 2, 2, 2, 444, 489, 7, 52, 2, 2, 445, 446, 7, 55, 2, 2, 446, 447, 7, 8, 2, 2, 447, 448, 7, 112, 2, 2, 448, 489, 7, 9, 2, 2, 449, 453, 7, 60, 2, 2, 450, 451, 7, 8, 2, 2, 451, 452, 7, 121, 2, 2, 452, 454, 7, 9, 2, 2, 453, 450, 3, 2, 2, 2, 453, 454, 3, 2, 2, 2, 454, 489, 3, 2, 2, 2, 455, 489, 7, 63, 2, 2, 456, 489, 7, 64, 2, 2, 457, 458, 7, 62, 2, 2, 458, 459, 7, 8, 2, 2, 459, 460, 7, 112, 2, 2, 460, 489, 7, 9, 2, 2, 461, 489, 7, 57, 2, 2, 462, 489, 7, 58, 2, 2, 463, 489, 7, 65, 2, 2, 464, 489, 7, 66, 2, 2, 465, 489, 7, 53, 2, 2, 466, 489, 7, 54, 2, 2, 467, 489, 7, 56, 2, 2, 468, 489, 7, 67, 2, 2, 469, 473, 7, 59, 2, 2, 470, 471, 7, 8, 2, 2, 471, 472, 7, 121, 2, 2, 472, 474, 7, 9, 2, 2, 473, 470, 3, 2, 2, 2, 473, 474, 3, 2, 2, 2, 474, 489, 3, 2, 2, 2, 475, 476, 7, 61, 2, 2, 476, 477, 7, 8, 2, 2, 477, 482, 5, 52, 27, 2, 478, 479, 7, 12, 2, 2, 479, 481, 5, 52, 27, 2, 480, 478, 3, 2, 2, 2, 481, 484, 3, 2, 2, 2, 482, 480, 3, 2, 2, 2, 482, 483, 3, 2, 2, 2, 483, 485, 3, 2, 2, 2, 484, 482, 3, 2, 2, 2, 485, 486, 7, 9, 2, 2, 486, 489, 3, 2, 2, 2, 487, 489, 7, 69, 2, 2, 488, 444, 3, 2, 2, 2, 488, 445, 3, 2, 2, 2, 488, 449, 3, 2, 2, 2, 488, 455, 3, 2, 2, 2, 488, 456, 3, 2, 2, 2, 488, 457, 3, 2, 2, 2, 488, 461, 3, 2, 2, 2, 488, 462, 3, 2, 2, 2, 488, 463, 3, 2, 2, 2, 488, 464, 3, 2, 2, 2, 488, 465, 3, 2, 2, 2, 488, 466, 3, 2, 2, 2, 488, 467, 3, 2, 2, 2, 488, 468, 3, 2, 2, 2, 488, 469, 3, 2, 2, 2, 488, 475, 3, 2, 2, 2, 488, 487, 3, 2, 2, 2, 489, 55, 3, 2, 2, 2, 490, 492, 5, 58, 30, 2, 491, 490, 3, 2, 2, 2, 492, 493, 3, 2, 2, 2, 493, 491, 3, 2, 2, 2, 493, 494, 3, 2, 2, 2, 494, 57, 3, 2, 2, 2, 495, 496, 5, 10, 6, 2, 496, 497, 7, 10, 2, 2, 497, 580, 3, 2, 2, 2, 498, 500, 7, 4, 2, 2, 499, 501, 5, 56, 29, 2, 500, 499, 3, 2, 2, 2, 500, 501, 3, 2, 2, 2, 501, 502, 3, 2, 2, 2, 502, 580, 7, 5, 2, 2, 503, 504, 5, 68, 35, 2, 504, 505, 7, 10, 2, 2, 505, 580, 3, 2, 2, 2, 506, 507, 7, 71, 2, 2, 507, 508, 7, 8, 2, 2, 508, 509, 5, 68, 35, 2, 509, 510, 7, 9, 2, 2, 510, 513, 5, 58, 30, 2, 511, 512, 7, 72, 2, 2, 512, 514, 5, 58, 30, 2, 513, 511, 3, 2, 2, 2, 513, 514, 3, 2, 2, 2, 514, 580, 3, 2, 2, 2, 515, 517, 5, 54, 28, 2, 516, 515, 3, 2, 2, 2, 517, 520, 3, 2, 2, 2, 518, 516, 3, 2, 2, 2, 518, 519, 3, 2, 2, 2, 519, 521, 3, 2, 2, 2, 520, 518, 3, 2, 2, 2, 521, 522, 7, 73, 2, 2, 522, 523, 7, 8, 2, 2, 523, 524, 5, 68, 35, 2, 524, 525, 7, 9, 2, 2, 525, 526, 5, 58, 30, 2, 526, 580, 3, 2, 2, 2, 527, 529, 5, 54, 28, 2, 528, 527, 3, 2, 2, 2, 529, 532, 3, 2, 2, 2, 530, 528, 3, 2, 2, 2, 530, 531, 3, 2, 2, 2, 531, 533, 3, 2, 2, 2, 532, 530, 3, 2, 2, 2, 533, 534, 7, 74, 2, 2, 534, 535, 5, 58, 30, 2, 535, 536, 7, 73, 2, 2, 536, 537, 7, 8, 2, 2, 537, 538, 5, 68, 35, 2, 538, 539, 7, 9, 2, 2, 539, 540, 7, 10, 2, 2, 540, 580, 3, 2, 2, 2, 541, 543, 5, 54, 28, 2, 542, 541, 3, 2, 2, 2, 543, 546, 3, 2, 2, 2, 544, 542, 3, 2, 2, 2, 544, 545, 3, 2, 2, 2, 545, 547, 3, 2, 2, 2, 546, 544, 3, 2, 2, 2, 547, 548, 7, 75, 2, 2, 548, 549, 7, 8, 2, 2, 549, 550, 5, 64, 33, 2, 550, 551, 7, 9, 2, 2, 551, 552, 5, 58, 30, 2, 552, 580, 3, 2, 2, 2, 553, 554, 7, 76, 2, 2, 554, 555, 7, 8, 2, 2, 555, 556, 5, 68, 35, 2, 556, 557, 7, 9, 2, 2, 557, 558, 7, 4, 2, 2, 558, 559, 5, 60, 31, 2, 559, 560, 7, 5, 2, 2, 560, 580, 3, 2, 2, 2, 561, 563, 7, 77, 2, 2, 562, 564, 5, 68, 35, 2, 563, 562, 3, 2, 2, 2, 563, 564, 3, 2, 2, 2, 564, 565, 3, 2, 2, 2, 565, 580, 7, 10, 2, 2, 566, 567, 7, 78, 2, 2, 567, 580, 7, 10, 2, 2, 568, 569, 7, 79, 2, 2, 569, 580, 7, 10, 2, 2, 570, 572, 7, 80, 2, 2, 571, 573, 5, 76, 39, 2, 572, 571, 3, 2, 2, 2, 572, 573, 3, 2, 2, 2, 573, 574, 3, 2, 2, 2, 574, 575, 7, 4, 2, 2, 575, 576, 5, 80, 41, 2, 576, 577, 7, 146, 2, 2, 577, 580, 3, 2, 2, 2, 578, 580, 5, 74, 38, 2, 579, 495, 3, 2, 2, 2, 579, 498, 3, 2, 2, 2, 579, 503, 3, 2, 2, 2, 579, 506, 3, 2, 2, 2, 579, 518, 3, 2, 2, 2, 579, 530, 3, 2, 2, 2, 579, 544, 3, 2, 2, 2, 579, 553, 3, 2, 2, 2, 579, 561, 3, 2, 2, 2, 579, 566, 3, 2, 2, 2, 579, 568, 3, 2, 2, 2, 579, 570, 3, 2, 2, 2, 579, 578, 3, 2, 2, 2, 580, 59, 3, 2, 2, 2, 581, 583, 5, 62, 32, 2, 582, 581, 3, 2, 2, 2, 583, 584, 3, 2, 2, 2, 584, 582, 3, 2, 2, 2, 584, 585, 3, 2, 2, 2, 585, 591, 3, 2, 2, 2, 586, 587, 7, 81, 2, 2, 587, 589, 7, 11, 2, 2, 588, 590, 5, 56, 29, 2, 589, 588, 3, 2, 2, 2, 589, 590, 3, 2, 2, 2, 590, 592, 3, 2, 2, 2, 591, 586, 3, 2, 2, 2, 591, 592, 3, 2, 2, 2, 592, 61, 3, 2, 2, 2, 593, 594, 7, 82, 2, 2, 594, 595, 5, 70, 36, 2, 595, 597, 7, 11, 2, 2, 596, 598, 5, 56, 29, 2, 597, 596, 3, 2, 2, 2, 597, 598, 3, 2, 2, 2, 598, 63, 3, 2, 2, 2, 599, 600, 5, 66, 34, 2, 600, 601, 7, 10, 2, 2, 601, 602, 5, 68, 35, 2, 602, 604, 7, 10, 2, 2, 603, 605, 5, 68, 35, 2, 604, 603, 3, 2, 2, 2, 604, 605, 3, 2, 2, 2, 605, 622, 3, 2, 2, 2, 606, 610, 5, 18, 10, 2, 607, 609, 5, 20, 11, 2, 608, 607, 3, 2, 2, 2, 609, 612, 3, 2, 2, 2, 610, 608, 3, 2, 2, 2, 610, 611, 3, 2, 2, 2, 611, 614, 3, 2, 2, 2, 612, 610, 3, 2, 2, 2, 613, 606, 3, 2, 2, 2, 613, 614, 3, 2, 2, 2, 614, 615, 3, 2, 2, 2, 615, 616, 7, 121, 2, 2, 616, 617, 7, 11, 2, 2, 617, 618, 5, 70, 36, 2, 618, 619, 7, 13, 2, 2, 619, 620, 5, 70, 36, 2, 620, 622, 3, 2, 2, 2, 621, 599, 3, 2, 2, 2, 621, 613, 3, 2, 2, 2, 622, 65, 3, 2, 2, 2, 623, 625, 5, 10, 6, 2, 624, 623, 3, 2, 2, 2, 624, 625, 3, 2, 2, 2, 625, 628, 3, 2, 2, 2, 626, 628, 5, 68, 35, 2, 627, 624, 3, 2, 2, 2, 627, 626, 3, 2, 2, 2, 628, 67, 3, 2, 2, 2, 629, 630, 8, 35, 1, 2, 630, 631, 5, 70, 36, 2, 631, 637, 3, 2, 2, 2, 632, 633, 12, 3, 2, 2, 633, 634, 7, 12, 2, 2, 634, 636, 5, 70, 36, 2, 635, 632, 3, 2, 2, 2, 636, 639, 3, 2, 2, 2, 637, 635, 3, 2, 2, 2, 637, 638, 3, 2, 2, 2, 638, 69, 3, 2, 2, 2, 639, 637, 3, 2, 2, 2, 640, 641, 8, 36, 1, 2, 641, 642, 7, 8, 2, 2, 642, 643, 5, 68, 35, 2, 643, 644, 7, 9, 2, 2, 644, 703, 3, 2, 2, 2, 645, 646, 7, 85, 2, 2, 646, 649, 7, 8, 2, 2, 647, 650, 5, 70, 36, 2, 648, 650, 5, 24, 13, 2, 649, 647, 3, 2, 2, 2, 649, 648, 3, 2, 2, 2, 650, 651, 3, 2, 2, 2, 651, 652, 7, 9, 2, 2, 652, 703, 3, 2, 2, 2, 653, 654, 7, 86, 2, 2, 654, 657, 7, 8, 2, 2, 655, 658, 5, 70, 36, 2, 656, 658, 5, 24, 13, 2, 657, 655, 3, 2, 2, 2, 657, 656, 3, 2, 2, 2, 658, 659, 3, 2, 2, 2, 659, 660, 7, 9, 2, 2, 660, 703, 3, 2, 2, 2, 661, 663, 7, 87, 2, 2, 662, 664, 7, 8, 2, 2, 663, 662, 3, 2, 2, 2, 663, 664, 3, 2, 2, 2, 664, 665, 3, 2, 2, 2, 665, 667, 7, 121, 2, 2, 666, 668, 7, 9, 2, 2, 667, 666, 3, 2, 2, 2, 667, 668, 3, 2, 2, 2, 668, 703, 3, 2, 2, 2, 669, 670, 7, 8, 2, 2, 670, 671, 5, 24, 13, 2, 671, 672, 7, 9, 2, 2, 672, 673, 5, 70, 36, 26, 673, 703, 3, 2, 2, 2, 674, 675, 9, 2, 2, 2, 675, 703, 5, 70, 36, 25, 676, 677, 7, 20, 2, 2, 677, 703, 5, 70, 36, 23, 678, 679, 9, 3, 2, 2, 679, 703, 5, 70, 36, 22, 680, 681, 9, 4, 2, 2, 681, 703, 5, 70, 36, 18, 682, 683, 7, 4, 2, 2, 683, 688, 5, 70, 36, 2, 684, 685, 7, 12, 2, 2, 685, 687, 5, 70, 36, 2, 686, 684, 3, 2, 2, 2, 687, 690, 3, 2, 2, 2, 688, 686, 3, 2, 2, 2, 688, 689, 3, 2, 2, 2, 689, 691, 3, 2, 2, 2, 690, 688, 3, 2, 2, 2, 691, 692, 7, 5, 2, 2, 692, 703, 3, 2, 2, 2, 693, 703, 7, 121, 2, 2, 694, 703, 7, 112, 2, 2, 695, 697, 7, 122, 2, 2, 696, 695, 3, 2, 2, 2, 697, 698, 3, 2, 2, 2, 698, 696, 3, 2, 2, 2, 698, 699, 3, 2, 2, 2, 699, 703, 3, 2, 2, 2, 700, 703, 7, 123, 2, 2, 701, 703, 7, 97, 2, 2, 702, 640, 3, 2, 2, 2, 702, 645, 3, 2, 2, 2, 702, 653, 3, 2, 2, 2, 702, 661, 3, 2, 2, 2, 702, 669, 3, 2, 2, 2, 702, 674, 3, 2, 2, 2, 702, 676, 3, 2, 2, 2, 702, 678, 3, 2, 2, 2, 702, 680, 3, 2, 2, 2, 702, 682, 3, 2, 2, 2, 702, 693, 3, 2, 2, 2, 702, 694, 3, 2, 2, 2, 702, 696, 3, 2, 2, 2, 702, 700, 3, 2, 2, 2, 702, 701, 3, 2, 2, 2, 703, 764, 3, 2, 2, 2, 704, 705, 12, 21, 2, 2, 705, 706, 9, 5, 2, 2, 706, 763, 5, 70, 36, 22, 707, 708, 12, 20, 2, 2, 708, 709, 9, 6, 2, 2, 709, 763, 5, 70, 36, 21, 710, 711, 12, 19, 2, 2, 711, 712, 9, 7, 2, 2, 712, 763, 5, 70, 36, 20, 713, 714, 12, 17, 2, 2, 714, 715, 9, 8, 2, 2, 715, 763, 5, 70, 36, 18, 716, 717, 12, 16, 2, 2, 717, 718, 7, 25, 2, 2, 718, 763, 5, 70, 36, 17, 719, 720, 12, 15, 2, 2, 720, 721, 7, 27, 2, 2, 721, 763, 5, 70, 36, 16, 722, 723, 12, 14, 2, 2, 723, 724, 7, 28, 2, 2, 724, 763, 5, 70, 36, 15, 725, 726, 12, 13, 2, 2, 726, 727, 7, 37, 2, 2, 727, 763, 5, 70, 36, 14, 728, 729, 12, 12, 2, 2, 729, 730, 7, 38, 2, 2, 730, 763, 5, 70, 36, 13, 731, 732, 12, 11, 2, 2, 732, 733, 7, 15, 2, 2, 733, 734, 5, 70, 36, 2, 734, 735, 7, 11, 2, 2, 735, 736, 5, 70, 36, 12, 736, 763, 3, 2, 2, 2, 737, 738, 12, 10, 2, 2, 738, 739, 7, 39, 2, 2, 739, 763, 5, 70, 36, 10, 740, 741, 12, 9, 2, 2, 741, 742, 7, 40, 2, 2, 742, 763, 5, 70, 36, 9, 743, 744, 12, 33, 2, 2, 744, 745, 7, 16, 2, 2, 745, 763, 7, 121, 2, 2, 746, 747, 12, 32, 2, 2, 747, 748, 7, 17, 2, 2, 748, 763, 7, 121, 2, 2, 749, 750, 12, 31, 2, 2, 750, 752, 7, 8, 2, 2, 751, 753, 5, 72, 37, 2, 752, 751, 3, 2, 2, 2, 752, 753, 3, 2, 2, 2, 753, 754, 3, 2, 2, 2, 754, 763, 7, 9, 2, 2, 755, 756, 12, 27, 2, 2, 756, 757, 7, 6, 2, 2, 757, 758, 5, 68, 35, 2, 758, 759, 7, 7, 2, 2, 759, 763, 3, 2, 2, 2, 760, 761, 12, 24, 2, 2, 761, 763, 9, 2, 2, 2, 762, 704, 3, 2, 2, 2, 762, 707, 3, 2, 2, 2, 762, 710, 3, 2, 2, 2, 762, 713, 3, 2, 2, 2, 762, 716, 3, 2, 2, 2, 762, 719, 3, 2, 2, 2, 762, 722, 3, 2, 2, 2, 762, 725, 3, 2, 2, 2, 762, 728, 3, 2, 2, 2, 762, 731, 3, 2, 2, 2, 762, 737, 3, 2, 2, 2, 762, 740, 3, 2, 2, 2, 762, 743, 3, 2, 2, 2, 762, 746, 3, 2, 2, 2, 762, 749, 3, 2, 2, 2, 762, 755, 3, 2, 2, 2, 762, 760, 3, 2, 2, 2, 763, 766, 3, 2, 2, 2, 764, 762, 3, 2, 2, 2, 764, 765, 3, 2, 2, 2, 765, 71, 3, 2, 2, 2, 766, 764, 3, 2, 2, 2, 767, 772, 5, 70, 36, 2, 768, 769, 7, 12, 2, 2, 769, 771, 5, 70, 36, 2, 770, 768, 3, 2, 2, 2, 771, 774, 3, 2, 2, 2, 772, 770, 3, 2, 2, 2, 772, 773, 3, 2, 2, 2, 773, 73, 3, 2, 2, 2, 774, 772, 3, 2, 2, 2, 775, 777, 7, 88, 2, 2, 776, 778, 5, 76, 39, 2, 777, 776, 3, 2, 2, 2, 777, 778, 3, 2, 2, 2, 778, 779, 3, 2, 2, 2, 779, 780, 7, 98, 2, 2, 780, 75, 3, 2, 2, 2, 781, 782, 7, 8, 2, 2, 782, 787, 5, 78, 40, 2, 783, 784, 7, 12, 2, 2, 784, 786, 5, 78, 40, 2, 785, 783, 3, 2, 2, 2, 786, 789, 3, 2, 2, 2, 787, 785, 3, 2, 2, 2, 787, 788, 3, 2, 2, 2, 788, 790, 3, 2, 2, 2, 789, 787, 3, 2, 2, 2, 790, 791, 7, 9, 2, 2, 791, 77, 3, 2, 2, 2, 792, 793, 7, 89, 2, 2, 793, 808, 7, 122, 2, 2, 794, 795, 7, 90, 2, 2, 795, 808, 7, 121, 2, 2, 796, 797, 7, 91, 2, 2, 797, 808, 7, 122, 2, 2, 798, 799, 7, 92, 2, 2, 799, 808, 5, 70, 36, 2, 800, 801, 7, 93, 2, 2, 801, 808, 5, 70, 36, 2, 802, 805, 7, 43, 2, 2, 803, 806, 7, 56, 2, 2, 804, 806, 5, 70, 36, 2, 805, 803, 3, 2, 2, 2, 805, 804, 3, 2, 2, 2, 806, 808, 3, 2, 2, 2, 807, 792, 3, 2, 2, 2, 807, 794, 3, 2, 2, 2, 807, 796, 3, 2, 2, 2, 807, 798, 3, 2, 2, 2, 807, 800, 3, 2, 2, 2, 807, 802, 3, 2, 2, 2, 808, 79, 3, 2, 2, 2, 809, 811, 5, 82, 42, 2, 810, 809, 3, 2, 2, 2, 811, 814, 3, 2, 2, 2, 812, 810, 3, 2, 2, 2, 812, 813, 3, 2, 2, 2, 813, 81, 3, 2, 2, 2, 814, 812, 3, 2, 2, 2, 815, 819, 5, 84, 43, 2, 816, 819, 5, 86, 44, 2, 817, 819, 5, 88, 45, 2, 818, 815, 3, 2, 2, 2, 818, 816, 3, 2, 2, 2, 818, 817, 3, 2, 2, 2, 819, 83, 3, 2, 2, 2, 820, 821, 7, 159, 2, 2, 821, 825, 7, 130, 2, 2, 822, 823, 7, 158, 2, 2, 823, 825, 7, 130, 2, 2, 824, 820, 3, 2, 2, 2, 824, 822, 3, 2, 2, 2, 825, 85, 3, 2, 2, 2, 826, 828, 7, 128, 2, 2, 827, 829, 5, 90, 46, 2, 828, 827, 3, 2, 2, 2, 828, 829, 3, 2, 2, 2, 829, 87, 3, 2, 2, 2, 830, 831, 7, 127, 2, 2, 831, 836, 5, 92, 47, 2, 832, 833, 7, 131, 2, 2, 833, 835, 5, 92, 47, 2, 834, 832, 3, 2, 2, 2, 835, 838, 3, 2, 2, 2, 836, 834, 3, 2, 2, 2, 836, 837, 3, 2, 2, 2, 837, 89, 3, 2, 2, 2, 838, 836, 3, 2, 2, 2, 839, 863, 5, 92, 47, 2, 840, 841, 7, 129, 2, 2, 841, 863, 5, 92, 47, 2, 842, 843, 5, 92, 47, 2, 843, 844, 7, 131, 2, 2, 844, 845, 7, 159, 2, 2, 845, 863, 3, 2, 2, 2, 846, 847, 7, 132, 2, 2, 847, 848, 5, 92, 47, 2, 848, 849, 7, 133, 2, 2, 849, 850, 7, 131, 2, 2, 850, 851, 7, 159, 2, 2, 851, 863, 3, 2, 2, 2, 852, 853, 7, 132, 2, 2, 853, 854, 5, 92, 47, 2, 854, 855, 7, 131, 2, 2, 855, 856, 7, 159, 2, 2, 856, 857, 7, 133, 2, 2, 857, 863, 3, 2, 2, 2, 858, 859, 7, 132, 2, 2, 859, 860, 5, 92, 47, 2, 860, 861, 7, 133, 2, 2, 861, 863, 3, 2, 2, 2, 862, 839, 3, 2, 2, 2, 862, 840, 3, 2, 2, 2, 862, 842, 3, 2, 2, 2, 862, 846, 3, 2, 2, 2, 862, 852, 3, 2, 2, 2, 862, 858, 3, 2, 2, 2, 863, 91, 3, 2, 2, 2, 864, 865, 8, 47, 1, 2, 865, 866, 7, 134, 2, 2, 866, 867, 5, 92, 47, 2, 867, 868, 7, 135, 2, 2, 868, 879, 3, 2, 2, 2, 869, 870, 9, 9, 2, 2, 870, 879, 5, 92, 47, 10, 871, 879, 7, 159, 2, 2, 872, 879, 7, 157, 2, 2, 873, 874, 7, 145, 2, 2, 874, 875, 7, 159, 2, 2, 875, 879, 7, 146, 2, 2, 876, 879, 7, 147, 2, 2, 877, 879, 7, 156, 2, 2, 878, 864, 3, 2, 2, 2, 878, 869, 3, 2, 2, 2, 878, 871, 3, 2, 2, 2, 878, 872, 3, 2, 2, 2, 878, 873, 3, 2, 2, 2, 878, 876, 3, 2, 2, 2, 878, 877, 3, 2, 2, 2, 879, 894, 3, 2, 2, 2, 880, 881, 12, 12, 2, 2, 881, 882, 7, 136, 2, 2, 882, 893, 5, 92, 47, 13, 883, 884, 12, 11, 2, 2, 884, 885, 9, 10, 2, 2, 885, 893, 5, 92, 47, 12, 886, 887, 12, 9, 2, 2, 887, 888, 9, 11, 2, 2, 888, 893, 5, 92, 47, 10, 889, 890, 12, 8, 2, 2, 890, 891, 9, 12, 2, 2, 891, 893, 5, 92, 47, 9, 892, 880, 3, 2, 2, 2, 892, 883, 3, 2, 2, 2, 892, 886, 3, 2, 2, 2, 892, 889, 3, 2, 2, 2, 893, 896, 3, 2, 2, 2, 894, 892, 3, 2, 2, 2, 894, 895, 3, 2, 2, 2, 895, 93, 3, 2, 2, 2, 896, 894, 3, 2, 2, 2, 89, 103, 121, 130, 140, 146, 154, 161, 170, 175, 181, 186, 191, 198, 205, 210, 222, 225, 227, 238, 245, 250, 256, 258, 266, 272, 284, 298, 304, 310, 316, 321, 325, 334, 341, 348, 389, 433, 437, 442, 453, 473, 482, 488, 493, 500, 513, 518, 530, 544, 563, 572, 579, 584, 589, 591, 597, 604, 610, 613, 621, 624, 627, 637, 649, 657, 663, 667, 688, 698, 702, 752, 762, 764, 772, 777, 787, 805, 807, 812, 818, 824, 828, 836, 862, 878, 892, 894]
\ No newline at end of file
+[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 167, 893, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 7, 4, 102, 10, 4, 12, 4, 14, 4, 105, 11, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 122, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 7, 7, 129, 10, 7, 12, 7, 14, 7, 132, 11, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 7, 7, 139, 10, 7, 12, 7, 14, 7, 142, 11, 7, 3, 7, 7, 7, 145, 10, 7, 12, 7, 14, 7, 148, 11, 7, 3, 8, 3, 8, 3, 8, 7, 8, 153, 10, 8, 12, 8, 14, 8, 156, 11, 8, 3, 8, 3, 8, 7, 8, 160, 10, 8, 12, 8, 14, 8, 163, 11, 8, 3, 8, 3, 8, 3, 9, 3, 9, 7, 9, 169, 10, 9, 12, 9, 14, 9, 172, 11, 9, 3, 9, 3, 9, 5, 9, 176, 10, 9, 3, 9, 3, 9, 7, 9, 180, 10, 9, 12, 9, 14, 9, 183, 11, 9, 3, 9, 3, 9, 5, 9, 187, 10, 9, 3, 10, 7, 10, 190, 10, 10, 12, 10, 14, 10, 193, 11, 10, 3, 10, 3, 10, 7, 10, 197, 10, 10, 12, 10, 14, 10, 200, 11, 10, 3, 11, 3, 11, 7, 11, 204, 10, 11, 12, 11, 14, 11, 207, 11, 11, 3, 12, 3, 12, 5, 12, 211, 10, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 223, 10, 13, 3, 13, 7, 13, 226, 10, 13, 12, 13, 14, 13, 229, 11, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 239, 10, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 246, 10, 14, 3, 14, 3, 14, 3, 14, 5, 14, 251, 10, 14, 3, 14, 3, 14, 3, 14, 3, 14, 7, 14, 257, 10, 14, 12, 14, 14, 14, 260, 11, 14, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 5, 16, 267, 10, 16, 3, 16, 3, 16, 6, 16, 271, 10, 16, 13, 16, 14, 16, 272, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 5, 19, 285, 10, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 7, 20, 297, 10, 20, 12, 20, 14, 20, 300, 11, 20, 3, 21, 3, 21, 3, 21, 5, 21, 305, 10, 21, 3, 22, 3, 22, 7, 22, 309, 10, 22, 12, 22, 14, 22, 312, 11, 22, 3, 22, 3, 22, 3, 22, 5, 22, 317, 10, 22, 3, 22, 3, 22, 3, 22, 5, 22, 322, 10, 22, 3, 23, 3, 23, 5, 23, 326, 10, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 7, 24, 333, 10, 24, 12, 24, 14, 24, 336, 11, 24, 3, 25, 3, 25, 7, 25, 340, 10, 25, 12, 25, 14, 25, 343, 11, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 349, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 7, 26, 388, 10, 26, 12, 26, 14, 26, 391, 11, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 7, 26, 432, 10, 26, 12, 26, 14, 26, 435, 11, 26, 3, 26, 5, 26, 438, 10, 26, 3, 27, 3, 27, 3, 27, 5, 27, 443, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 454, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 474, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 481, 10, 28, 12, 28, 14, 28, 484, 11, 28, 3, 28, 3, 28, 3, 28, 5, 28, 489, 10, 28, 3, 29, 6, 29, 492, 10, 29, 13, 29, 14, 29, 493, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 501, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 514, 10, 30, 3, 30, 7, 30, 517, 10, 30, 12, 30, 14, 30, 520, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 529, 10, 30, 12, 30, 14, 30, 532, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 543, 10, 30, 12, 30, 14, 30, 546, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 564, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 573, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 580, 10, 30, 3, 31, 6, 31, 583, 10, 31, 13, 31, 14, 31, 584, 3, 31, 3, 31, 3, 31, 5, 31, 590, 10, 31, 5, 31, 592, 10, 31, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 598, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 605, 10, 33, 3, 33, 3, 33, 7, 33, 609, 10, 33, 12, 33, 14, 33, 612, 11, 33, 5, 33, 614, 10, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 622, 10, 33, 3, 34, 5, 34, 625, 10, 34, 3, 34, 5, 34, 628, 10, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 7, 35, 636, 10, 35, 12, 35, 14, 35, 639, 11, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 650, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 658, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 664, 10, 36, 3, 36, 3, 36, 5, 36, 668, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 687, 10, 36, 12, 36, 14, 36, 690, 11, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 6, 36, 697, 10, 36, 13, 36, 14, 36, 698, 3, 36, 3, 36, 5, 36, 703, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 753, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 763, 10, 36, 12, 36, 14, 36, 766, 11, 36, 3, 37, 3, 37, 3, 37, 7, 37, 771, 10, 37, 12, 37, 14, 37, 774, 11, 37, 3, 38, 3, 38, 5, 38, 778, 10, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 7, 39, 786, 10, 39, 12, 39, 14, 39, 789, 11, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 803, 10, 40, 3, 41, 7, 41, 806, 10, 41, 12, 41, 14, 41, 809, 11, 41, 3, 42, 3, 42, 3, 42, 5, 42, 814, 10, 42, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 820, 10, 43, 3, 44, 3, 44, 5, 44, 824, 10, 44, 3, 45, 3, 45, 3, 45, 3, 45, 7, 45, 830, 10, 45, 12, 45, 14, 45, 833, 11, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 858, 10, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 5, 47, 874, 10, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 7, 47, 888, 10, 47, 12, 47, 14, 47, 891, 11, 47, 3, 47, 2, 9, 12, 24, 26, 38, 68, 70, 92, 48, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 2, 13, 3, 2, 23, 24, 5, 2, 18, 19, 25, 26, 94, 94, 4, 2, 33, 33, 36, 36, 3, 2, 29, 30, 3, 2, 20, 22, 3, 2, 18, 19, 3, 2, 31, 36, 3, 2, 139, 142, 3, 2, 137, 138, 3, 2, 143, 144, 3, 2, 139, 140, 2, 1023, 2, 94, 3, 2, 2, 2, 4, 97, 3, 2, 2, 2, 6, 103, 3, 2, 2, 2, 8, 121, 3, 2, 2, 2, 10, 123, 3, 2, 2, 2, 12, 126, 3, 2, 2, 2, 14, 149, 3, 2, 2, 2, 16, 186, 3, 2, 2, 2, 18, 191, 3, 2, 2, 2, 20, 201, 3, 2, 2, 2, 22, 208, 3, 2, 2, 2, 24, 214, 3, 2, 2, 2, 26, 245, 3, 2, 2, 2, 28, 261, 3, 2, 2, 2, 30, 264, 3, 2, 2, 2, 32, 276, 3, 2, 2, 2, 34, 279, 3, 2, 2, 2, 36, 282, 3, 2, 2, 2, 38, 290, 3, 2, 2, 2, 40, 301, 3, 2, 2, 2, 42, 306, 3, 2, 2, 2, 44, 323, 3, 2, 2, 2, 46, 329, 3, 2, 2, 2, 48, 348, 3, 2, 2, 2, 50, 437, 3, 2, 2, 2, 52, 439, 3, 2, 2, 2, 54, 488, 3, 2, 2, 2, 56, 491, 3, 2, 2, 2, 58, 579, 3, 2, 2, 2, 60, 582, 3, 2, 2, 2, 62, 593, 3, 2, 2, 2, 64, 621, 3, 2, 2, 2, 66, 627, 3, 2, 2, 2, 68, 629, 3, 2, 2, 2, 70, 702, 3, 2, 2, 2, 72, 767, 3, 2, 2, 2, 74, 775, 3, 2, 2, 2, 76, 781, 3, 2, 2, 2, 78, 802, 3, 2, 2, 2, 80, 807, 3, 2, 2, 2, 82, 813, 3, 2, 2, 2, 84, 819, 3, 2, 2, 2, 86, 821, 3, 2, 2, 2, 88, 825, 3, 2, 2, 2, 90, 857, 3, 2, 2, 2, 92, 873, 3, 2, 2, 2, 94, 95, 5, 6, 4, 2, 95, 96, 7, 2, 2, 3, 96, 3, 3, 2, 2, 2, 97, 98, 5, 80, 41, 2, 98, 99, 7, 2, 2, 3, 99, 5, 3, 2, 2, 2, 100, 102, 5, 8, 5, 2, 101, 100, 3, 2, 2, 2, 102, 105, 3, 2, 2, 2, 103, 101, 3, 2, 2, 2, 103, 104, 3, 2, 2, 2, 104, 7, 3, 2, 2, 2, 105, 103, 3, 2, 2, 2, 106, 107, 5, 10, 6, 2, 107, 108, 7, 10, 2, 2, 108, 122, 3, 2, 2, 2, 109, 110, 5, 30, 16, 2, 110, 111, 7, 10, 2, 2, 111, 122, 3, 2, 2, 2, 112, 113, 5, 36, 19, 2, 113, 114, 7, 10, 2, 2, 114, 122, 3, 2, 2, 2, 115, 122, 5, 42, 22, 2, 116, 122, 5, 74, 38, 2, 117, 122, 5, 50, 26, 2, 118, 119, 5, 14, 8, 2, 119, 120, 7, 10, 2, 2, 120, 122, 3, 2, 2, 2, 121, 106, 3, 2, 2, 2, 121, 109, 3, 2, 2, 2, 121, 112, 3, 2, 2, 2, 121, 115, 3, 2, 2, 2, 121, 116, 3, 2, 2, 2, 121, 117, 3, 2, 2, 2, 121, 118, 3, 2, 2, 2, 122, 9, 3, 2, 2, 2, 123, 124, 5, 18, 10, 2, 124, 125, 5, 12, 7, 2, 125, 11, 3, 2, 2, 2, 126, 130, 8, 7, 1, 2, 127, 129, 5, 20, 11, 2, 128, 127, 3, 2, 2, 2, 129, 132, 3, 2, 2, 2, 130, 128, 3, 2, 2, 2, 130, 131, 3, 2, 2, 2, 131, 133, 3, 2, 2, 2, 132, 130, 3, 2, 2, 2, 133, 134, 5, 16, 9, 2, 134, 146, 3, 2, 2, 2, 135, 136, 12, 3, 2, 2, 136, 140, 7, 12, 2, 2, 137, 139, 5, 20, 11, 2, 138, 137, 3, 2, 2, 2, 139, 142, 3, 2, 2, 2, 140, 138, 3, 2, 2, 2, 140, 141, 3, 2, 2, 2, 141, 143, 3, 2, 2, 2, 142, 140, 3, 2, 2, 2, 143, 145, 5, 16, 9, 2, 144, 135, 3, 2, 2, 2, 145, 148, 3, 2, 2, 2, 146, 144, 3, 2, 2, 2, 146, 147, 3, 2, 2, 2, 147, 13, 3, 2, 2, 2, 148, 146, 3, 2, 2, 2, 149, 150, 7, 41, 2, 2, 150, 154, 5, 18, 10, 2, 151, 153, 5, 20, 11, 2, 152, 151, 3, 2, 2, 2, 153, 156, 3, 2, 2, 2, 154, 152, 3, 2, 2, 2, 154, 155, 3, 2, 2, 2, 155, 157, 3, 2, 2, 2, 156, 154, 3, 2, 2, 2, 157, 161, 7, 121, 2, 2, 158, 160, 5, 22, 12, 2, 159, 158, 3, 2, 2, 2, 160, 163, 3, 2, 2, 2, 161, 159, 3, 2, 2, 2, 161, 162, 3, 2, 2, 2, 162, 164, 3, 2, 2, 2, 163, 161, 3, 2, 2, 2, 164, 165, 8, 8, 1, 2, 165, 15, 3, 2, 2, 2, 166, 170, 7, 121, 2, 2, 167, 169, 5, 22, 12, 2, 168, 167, 3, 2, 2, 2, 169, 172, 3, 2, 2, 2, 170, 168, 3, 2, 2, 2, 170, 171, 3, 2, 2, 2, 171, 175, 3, 2, 2, 2, 172, 170, 3, 2, 2, 2, 173, 174, 7, 39, 2, 2, 174, 176, 5, 70, 36, 2, 175, 173, 3, 2, 2, 2, 175, 176, 3, 2, 2, 2, 176, 187, 3, 2, 2, 2, 177, 181, 7, 121, 2, 2, 178, 180, 5, 22, 12, 2, 179, 178, 3, 2, 2, 2, 180, 183, 3, 2, 2, 2, 181, 179, 3, 2, 2, 2, 181, 182, 3, 2, 2, 2, 182, 184, 3, 2, 2, 2, 183, 181, 3, 2, 2, 2, 184, 185, 7, 39, 2, 2, 185, 187, 5, 74, 38, 2, 186, 166, 3, 2, 2, 2, 186, 177, 3, 2, 2, 2, 187, 17, 3, 2, 2, 2, 188, 190, 5, 54, 28, 2, 189, 188, 3, 2, 2, 2, 190, 193, 3, 2, 2, 2, 191, 189, 3, 2, 2, 2, 191, 192, 3, 2, 2, 2, 192, 194, 3, 2, 2, 2, 193, 191, 3, 2, 2, 2, 194, 198, 5, 26, 14, 2, 195, 197, 5, 54, 28, 2, 196, 195, 3, 2, 2, 2, 197, 200, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 199, 3, 2, 2, 2, 199, 19, 3, 2, 2, 2, 200, 198, 3, 2, 2, 2, 201, 205, 7, 20, 2, 2, 202, 204, 5, 54, 28, 2, 203, 202, 3, 2, 2, 2, 204, 207, 3, 2, 2, 2, 205, 203, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 21, 3, 2, 2, 2, 207, 205, 3, 2, 2, 2, 208, 210, 7, 6, 2, 2, 209, 211, 5, 70, 36, 2, 210, 209, 3, 2, 2, 2, 210, 211, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 7, 7, 2, 2, 213, 23, 3, 2, 2, 2, 214, 215, 8, 13, 1, 2, 215, 216, 5, 26, 14, 2, 216, 227, 3, 2, 2, 2, 217, 218, 12, 4, 2, 2, 218, 226, 7, 20, 2, 2, 219, 220, 12, 3, 2, 2, 220, 222, 7, 6, 2, 2, 221, 223, 5, 70, 36, 2, 222, 221, 3, 2, 2, 2, 222, 223, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 226, 7, 7, 2, 2, 225, 217, 3, 2, 2, 2, 225, 219, 3, 2, 2, 2, 226, 229, 3, 2, 2, 2, 227, 225, 3, 2, 2, 2, 227, 228, 3, 2, 2, 2, 228, 25, 3, 2, 2, 2, 229, 227, 3, 2, 2, 2, 230, 231, 8, 14, 1, 2, 231, 232, 7, 8, 2, 2, 232, 233, 5, 26, 14, 2, 233, 234, 7, 9, 2, 2, 234, 246, 3, 2, 2, 2, 235, 246, 7, 96, 2, 2, 236, 238, 7, 95, 2, 2, 237, 239, 7, 96, 2, 2, 238, 237, 3, 2, 2, 2, 238, 239, 3, 2, 2, 2, 239, 246, 3, 2, 2, 2, 240, 246, 5, 30, 16, 2, 241, 246, 5, 28, 15, 2, 242, 246, 5, 36, 19, 2, 243, 246, 5, 34, 18, 2, 244, 246, 7, 3, 2, 2, 245, 230, 3, 2, 2, 2, 245, 235, 3, 2, 2, 2, 245, 236, 3, 2, 2, 2, 245, 240, 3, 2, 2, 2, 245, 241, 3, 2, 2, 2, 245, 242, 3, 2, 2, 2, 245, 243, 3, 2, 2, 2, 245, 244, 3, 2, 2, 2, 246, 258, 3, 2, 2, 2, 247, 248, 12, 9, 2, 2, 248, 250, 7, 6, 2, 2, 249, 251, 5, 70, 36, 2, 250, 249, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 257, 7, 7, 2, 2, 253, 254, 12, 8, 2, 2, 254, 255, 7, 8, 2, 2, 255, 257, 7, 9, 2, 2, 256, 247, 3, 2, 2, 2, 256, 253, 3, 2, 2, 2, 257, 260, 3, 2, 2, 2, 258, 256, 3, 2, 2, 2, 258, 259, 3, 2, 2, 2, 259, 27, 3, 2, 2, 2, 260, 258, 3, 2, 2, 2, 261, 262, 7, 83, 2, 2, 262, 263, 7, 121, 2, 2, 263, 29, 3, 2, 2, 2, 264, 266, 7, 83, 2, 2, 265, 267, 7, 121, 2, 2, 266, 265, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 268, 3, 2, 2, 2, 268, 270, 7, 4, 2, 2, 269, 271, 5, 32, 17, 2, 270, 269, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 270, 3, 2, 2, 2, 272, 273, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 275, 7, 5, 2, 2, 275, 31, 3, 2, 2, 2, 276, 277, 5, 10, 6, 2, 277, 278, 7, 10, 2, 2, 278, 33, 3, 2, 2, 2, 279, 280, 7, 84, 2, 2, 280, 281, 7, 121, 2, 2, 281, 35, 3, 2, 2, 2, 282, 284, 7, 84, 2, 2, 283, 285, 7, 121, 2, 2, 284, 283, 3, 2, 2, 2, 284, 285, 3, 2, 2, 2, 285, 286, 3, 2, 2, 2, 286, 287, 7, 4, 2, 2, 287, 288, 5, 38, 20, 2, 288, 289, 7, 5, 2, 2, 289, 37, 3, 2, 2, 2, 290, 291, 8, 20, 1, 2, 291, 292, 5, 40, 21, 2, 292, 298, 3, 2, 2, 2, 293, 294, 12, 3, 2, 2, 294, 295, 7, 12, 2, 2, 295, 297, 5, 40, 21, 2, 296, 293, 3, 2, 2, 2, 297, 300, 3, 2, 2, 2, 298, 296, 3, 2, 2, 2, 298, 299, 3, 2, 2, 2, 299, 39, 3, 2, 2, 2, 300, 298, 3, 2, 2, 2, 301, 304, 7, 121, 2, 2, 302, 303, 7, 39, 2, 2, 303, 305, 5, 70, 36, 2, 304, 302, 3, 2, 2, 2, 304, 305, 3, 2, 2, 2, 305, 41, 3, 2, 2, 2, 306, 310, 5, 18, 10, 2, 307, 309, 5, 20, 11, 2, 308, 307, 3, 2, 2, 2, 309, 312, 3, 2, 2, 2, 310, 308, 3, 2, 2, 2, 310, 311, 3, 2, 2, 2, 311, 313, 3, 2, 2, 2, 312, 310, 3, 2, 2, 2, 313, 314, 7, 121, 2, 2, 314, 316, 7, 8, 2, 2, 315, 317, 5, 46, 24, 2, 316, 315, 3, 2, 2, 2, 316, 317, 3, 2, 2, 2, 317, 318, 3, 2, 2, 2, 318, 321, 7, 9, 2, 2, 319, 322, 5, 44, 23, 2, 320, 322, 7, 10, 2, 2, 321, 319, 3, 2, 2, 2, 321, 320, 3, 2, 2, 2, 322, 43, 3, 2, 2, 2, 323, 325, 7, 4, 2, 2, 324, 326, 5, 56, 29, 2, 325, 324, 3, 2, 2, 2, 325, 326, 3, 2, 2, 2, 326, 327, 3, 2, 2, 2, 327, 328, 7, 5, 2, 2, 328, 45, 3, 2, 2, 2, 329, 334, 5, 48, 25, 2, 330, 331, 7, 12, 2, 2, 331, 333, 5, 48, 25, 2, 332, 330, 3, 2, 2, 2, 333, 336, 3, 2, 2, 2, 334, 332, 3, 2, 2, 2, 334, 335, 3, 2, 2, 2, 335, 47, 3, 2, 2, 2, 336, 334, 3, 2, 2, 2, 337, 341, 5, 18, 10, 2, 338, 340, 5, 20, 11, 2, 339, 338, 3, 2, 2, 2, 340, 343, 3, 2, 2, 2, 341, 339, 3, 2, 2, 2, 341, 342, 3, 2, 2, 2, 342, 344, 3, 2, 2, 2, 343, 341, 3, 2, 2, 2, 344, 345, 7, 121, 2, 2, 345, 349, 3, 2, 2, 2, 346, 349, 7, 96, 2, 2, 347, 349, 7, 14, 2, 2, 348, 337, 3, 2, 2, 2, 348, 346, 3, 2, 2, 2, 348, 347, 3, 2, 2, 2, 349, 49, 3, 2, 2, 2, 350, 351, 7, 101, 2, 2, 351, 352, 7, 44, 2, 2, 352, 353, 3, 2, 2, 2, 353, 354, 7, 8, 2, 2, 354, 355, 7, 121, 2, 2, 355, 438, 7, 9, 2, 2, 356, 357, 7, 101, 2, 2, 357, 358, 7, 48, 2, 2, 358, 359, 3, 2, 2, 2, 359, 360, 7, 8, 2, 2, 360, 361, 7, 121, 2, 2, 361, 438, 7, 9, 2, 2, 362, 363, 7, 101, 2, 2, 363, 364, 7, 45, 2, 2, 364, 365, 3, 2, 2, 2, 365, 366, 7, 8, 2, 2, 366, 367, 7, 122, 2, 2, 367, 438, 7, 9, 2, 2, 368, 369, 7, 101, 2, 2, 369, 370, 7, 46, 2, 2, 370, 371, 3, 2, 2, 2, 371, 372, 7, 8, 2, 2, 372, 373, 7, 122, 2, 2, 373, 438, 7, 9, 2, 2, 374, 375, 7, 101, 2, 2, 375, 376, 7, 47, 2, 2, 376, 377, 3, 2, 2, 2, 377, 378, 7, 8, 2, 2, 378, 379, 7, 122, 2, 2, 379, 438, 7, 9, 2, 2, 380, 381, 7, 101, 2, 2, 381, 382, 7, 42, 2, 2, 382, 383, 3, 2, 2, 2, 383, 384, 7, 8, 2, 2, 384, 389, 5, 52, 27, 2, 385, 386, 7, 12, 2, 2, 386, 388, 5, 52, 27, 2, 387, 385, 3, 2, 2, 2, 388, 391, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 389, 390, 3, 2, 2, 2, 390, 392, 3, 2, 2, 2, 391, 389, 3, 2, 2, 2, 392, 393, 7, 9, 2, 2, 393, 438, 3, 2, 2, 2, 394, 395, 7, 101, 2, 2, 395, 396, 7, 43, 2, 2, 396, 397, 3, 2, 2, 2, 397, 398, 7, 8, 2, 2, 398, 399, 7, 112, 2, 2, 399, 438, 7, 9, 2, 2, 400, 401, 7, 101, 2, 2, 401, 402, 7, 49, 2, 2, 402, 403, 3, 2, 2, 2, 403, 404, 7, 8, 2, 2, 404, 405, 7, 121, 2, 2, 405, 438, 7, 9, 2, 2, 406, 407, 7, 101, 2, 2, 407, 408, 7, 50, 2, 2, 408, 409, 3, 2, 2, 2, 409, 410, 7, 8, 2, 2, 410, 411, 7, 121, 2, 2, 411, 438, 7, 9, 2, 2, 412, 413, 7, 101, 2, 2, 413, 414, 7, 51, 2, 2, 414, 415, 3, 2, 2, 2, 415, 416, 7, 8, 2, 2, 416, 417, 7, 121, 2, 2, 417, 438, 7, 9, 2, 2, 418, 419, 7, 101, 2, 2, 419, 420, 7, 68, 2, 2, 420, 421, 3, 2, 2, 2, 421, 422, 7, 8, 2, 2, 422, 423, 7, 69, 2, 2, 423, 438, 7, 9, 2, 2, 424, 425, 7, 101, 2, 2, 425, 426, 7, 70, 2, 2, 426, 427, 3, 2, 2, 2, 427, 428, 7, 8, 2, 2, 428, 433, 7, 121, 2, 2, 429, 430, 7, 12, 2, 2, 430, 432, 7, 121, 2, 2, 431, 429, 3, 2, 2, 2, 432, 435, 3, 2, 2, 2, 433, 431, 3, 2, 2, 2, 433, 434, 3, 2, 2, 2, 434, 436, 3, 2, 2, 2, 435, 433, 3, 2, 2, 2, 436, 438, 7, 9, 2, 2, 437, 350, 3, 2, 2, 2, 437, 356, 3, 2, 2, 2, 437, 362, 3, 2, 2, 2, 437, 368, 3, 2, 2, 2, 437, 374, 3, 2, 2, 2, 437, 380, 3, 2, 2, 2, 437, 394, 3, 2, 2, 2, 437, 400, 3, 2, 2, 2, 437, 406, 3, 2, 2, 2, 437, 412, 3, 2, 2, 2, 437, 418, 3, 2, 2, 2, 437, 424, 3, 2, 2, 2, 438, 51, 3, 2, 2, 2, 439, 442, 7, 112, 2, 2, 440, 441, 7, 13, 2, 2, 441, 443, 7, 112, 2, 2, 442, 440, 3, 2, 2, 2, 442, 443, 3, 2, 2, 2, 443, 53, 3, 2, 2, 2, 444, 489, 7, 52, 2, 2, 445, 446, 7, 55, 2, 2, 446, 447, 7, 8, 2, 2, 447, 448, 7, 112, 2, 2, 448, 489, 7, 9, 2, 2, 449, 453, 7, 60, 2, 2, 450, 451, 7, 8, 2, 2, 451, 452, 7, 121, 2, 2, 452, 454, 7, 9, 2, 2, 453, 450, 3, 2, 2, 2, 453, 454, 3, 2, 2, 2, 454, 489, 3, 2, 2, 2, 455, 489, 7, 63, 2, 2, 456, 489, 7, 64, 2, 2, 457, 458, 7, 62, 2, 2, 458, 459, 7, 8, 2, 2, 459, 460, 7, 112, 2, 2, 460, 489, 7, 9, 2, 2, 461, 489, 7, 57, 2, 2, 462, 489, 7, 58, 2, 2, 463, 489, 7, 65, 2, 2, 464, 489, 7, 66, 2, 2, 465, 489, 7, 53, 2, 2, 466, 489, 7, 54, 2, 2, 467, 489, 7, 56, 2, 2, 468, 489, 7, 67, 2, 2, 469, 473, 7, 59, 2, 2, 470, 471, 7, 8, 2, 2, 471, 472, 7, 121, 2, 2, 472, 474, 7, 9, 2, 2, 473, 470, 3, 2, 2, 2, 473, 474, 3, 2, 2, 2, 474, 489, 3, 2, 2, 2, 475, 476, 7, 61, 2, 2, 476, 477, 7, 8, 2, 2, 477, 482, 5, 52, 27, 2, 478, 479, 7, 12, 2, 2, 479, 481, 5, 52, 27, 2, 480, 478, 3, 2, 2, 2, 481, 484, 3, 2, 2, 2, 482, 480, 3, 2, 2, 2, 482, 483, 3, 2, 2, 2, 483, 485, 3, 2, 2, 2, 484, 482, 3, 2, 2, 2, 485, 486, 7, 9, 2, 2, 486, 489, 3, 2, 2, 2, 487, 489, 7, 69, 2, 2, 488, 444, 3, 2, 2, 2, 488, 445, 3, 2, 2, 2, 488, 449, 3, 2, 2, 2, 488, 455, 3, 2, 2, 2, 488, 456, 3, 2, 2, 2, 488, 457, 3, 2, 2, 2, 488, 461, 3, 2, 2, 2, 488, 462, 3, 2, 2, 2, 488, 463, 3, 2, 2, 2, 488, 464, 3, 2, 2, 2, 488, 465, 3, 2, 2, 2, 488, 466, 3, 2, 2, 2, 488, 467, 3, 2, 2, 2, 488, 468, 3, 2, 2, 2, 488, 469, 3, 2, 2, 2, 488, 475, 3, 2, 2, 2, 488, 487, 3, 2, 2, 2, 489, 55, 3, 2, 2, 2, 490, 492, 5, 58, 30, 2, 491, 490, 3, 2, 2, 2, 492, 493, 3, 2, 2, 2, 493, 491, 3, 2, 2, 2, 493, 494, 3, 2, 2, 2, 494, 57, 3, 2, 2, 2, 495, 496, 5, 10, 6, 2, 496, 497, 7, 10, 2, 2, 497, 580, 3, 2, 2, 2, 498, 500, 7, 4, 2, 2, 499, 501, 5, 56, 29, 2, 500, 499, 3, 2, 2, 2, 500, 501, 3, 2, 2, 2, 501, 502, 3, 2, 2, 2, 502, 580, 7, 5, 2, 2, 503, 504, 5, 68, 35, 2, 504, 505, 7, 10, 2, 2, 505, 580, 3, 2, 2, 2, 506, 507, 7, 71, 2, 2, 507, 508, 7, 8, 2, 2, 508, 509, 5, 68, 35, 2, 509, 510, 7, 9, 2, 2, 510, 513, 5, 58, 30, 2, 511, 512, 7, 72, 2, 2, 512, 514, 5, 58, 30, 2, 513, 511, 3, 2, 2, 2, 513, 514, 3, 2, 2, 2, 514, 580, 3, 2, 2, 2, 515, 517, 5, 54, 28, 2, 516, 515, 3, 2, 2, 2, 517, 520, 3, 2, 2, 2, 518, 516, 3, 2, 2, 2, 518, 519, 3, 2, 2, 2, 519, 521, 3, 2, 2, 2, 520, 518, 3, 2, 2, 2, 521, 522, 7, 73, 2, 2, 522, 523, 7, 8, 2, 2, 523, 524, 5, 68, 35, 2, 524, 525, 7, 9, 2, 2, 525, 526, 5, 58, 30, 2, 526, 580, 3, 2, 2, 2, 527, 529, 5, 54, 28, 2, 528, 527, 3, 2, 2, 2, 529, 532, 3, 2, 2, 2, 530, 528, 3, 2, 2, 2, 530, 531, 3, 2, 2, 2, 531, 533, 3, 2, 2, 2, 532, 530, 3, 2, 2, 2, 533, 534, 7, 74, 2, 2, 534, 535, 5, 58, 30, 2, 535, 536, 7, 73, 2, 2, 536, 537, 7, 8, 2, 2, 537, 538, 5, 68, 35, 2, 538, 539, 7, 9, 2, 2, 539, 540, 7, 10, 2, 2, 540, 580, 3, 2, 2, 2, 541, 543, 5, 54, 28, 2, 542, 541, 3, 2, 2, 2, 543, 546, 3, 2, 2, 2, 544, 542, 3, 2, 2, 2, 544, 545, 3, 2, 2, 2, 545, 547, 3, 2, 2, 2, 546, 544, 3, 2, 2, 2, 547, 548, 7, 75, 2, 2, 548, 549, 7, 8, 2, 2, 549, 550, 5, 64, 33, 2, 550, 551, 7, 9, 2, 2, 551, 552, 5, 58, 30, 2, 552, 580, 3, 2, 2, 2, 553, 554, 7, 76, 2, 2, 554, 555, 7, 8, 2, 2, 555, 556, 5, 68, 35, 2, 556, 557, 7, 9, 2, 2, 557, 558, 7, 4, 2, 2, 558, 559, 5, 60, 31, 2, 559, 560, 7, 5, 2, 2, 560, 580, 3, 2, 2, 2, 561, 563, 7, 77, 2, 2, 562, 564, 5, 68, 35, 2, 563, 562, 3, 2, 2, 2, 563, 564, 3, 2, 2, 2, 564, 565, 3, 2, 2, 2, 565, 580, 7, 10, 2, 2, 566, 567, 7, 78, 2, 2, 567, 580, 7, 10, 2, 2, 568, 569, 7, 79, 2, 2, 569, 580, 7, 10, 2, 2, 570, 572, 7, 80, 2, 2, 571, 573, 5, 76, 39, 2, 572, 571, 3, 2, 2, 2, 572, 573, 3, 2, 2, 2, 573, 574, 3, 2, 2, 2, 574, 575, 7, 4, 2, 2, 575, 576, 5, 80, 41, 2, 576, 577, 7, 146, 2, 2, 577, 580, 3, 2, 2, 2, 578, 580, 5, 74, 38, 2, 579, 495, 3, 2, 2, 2, 579, 498, 3, 2, 2, 2, 579, 503, 3, 2, 2, 2, 579, 506, 3, 2, 2, 2, 579, 518, 3, 2, 2, 2, 579, 530, 3, 2, 2, 2, 579, 544, 3, 2, 2, 2, 579, 553, 3, 2, 2, 2, 579, 561, 3, 2, 2, 2, 579, 566, 3, 2, 2, 2, 579, 568, 3, 2, 2, 2, 579, 570, 3, 2, 2, 2, 579, 578, 3, 2, 2, 2, 580, 59, 3, 2, 2, 2, 581, 583, 5, 62, 32, 2, 582, 581, 3, 2, 2, 2, 583, 584, 3, 2, 2, 2, 584, 582, 3, 2, 2, 2, 584, 585, 3, 2, 2, 2, 585, 591, 3, 2, 2, 2, 586, 587, 7, 81, 2, 2, 587, 589, 7, 11, 2, 2, 588, 590, 5, 56, 29, 2, 589, 588, 3, 2, 2, 2, 589, 590, 3, 2, 2, 2, 590, 592, 3, 2, 2, 2, 591, 586, 3, 2, 2, 2, 591, 592, 3, 2, 2, 2, 592, 61, 3, 2, 2, 2, 593, 594, 7, 82, 2, 2, 594, 595, 5, 70, 36, 2, 595, 597, 7, 11, 2, 2, 596, 598, 5, 56, 29, 2, 597, 596, 3, 2, 2, 2, 597, 598, 3, 2, 2, 2, 598, 63, 3, 2, 2, 2, 599, 600, 5, 66, 34, 2, 600, 601, 7, 10, 2, 2, 601, 602, 5, 68, 35, 2, 602, 604, 7, 10, 2, 2, 603, 605, 5, 68, 35, 2, 604, 603, 3, 2, 2, 2, 604, 605, 3, 2, 2, 2, 605, 622, 3, 2, 2, 2, 606, 610, 5, 18, 10, 2, 607, 609, 5, 20, 11, 2, 608, 607, 3, 2, 2, 2, 609, 612, 3, 2, 2, 2, 610, 608, 3, 2, 2, 2, 610, 611, 3, 2, 2, 2, 611, 614, 3, 2, 2, 2, 612, 610, 3, 2, 2, 2, 613, 606, 3, 2, 2, 2, 613, 614, 3, 2, 2, 2, 614, 615, 3, 2, 2, 2, 615, 616, 7, 121, 2, 2, 616, 617, 7, 11, 2, 2, 617, 618, 5, 70, 36, 2, 618, 619, 7, 13, 2, 2, 619, 620, 5, 70, 36, 2, 620, 622, 3, 2, 2, 2, 621, 599, 3, 2, 2, 2, 621, 613, 3, 2, 2, 2, 622, 65, 3, 2, 2, 2, 623, 625, 5, 10, 6, 2, 624, 623, 3, 2, 2, 2, 624, 625, 3, 2, 2, 2, 625, 628, 3, 2, 2, 2, 626, 628, 5, 68, 35, 2, 627, 624, 3, 2, 2, 2, 627, 626, 3, 2, 2, 2, 628, 67, 3, 2, 2, 2, 629, 630, 8, 35, 1, 2, 630, 631, 5, 70, 36, 2, 631, 637, 3, 2, 2, 2, 632, 633, 12, 3, 2, 2, 633, 634, 7, 12, 2, 2, 634, 636, 5, 70, 36, 2, 635, 632, 3, 2, 2, 2, 636, 639, 3, 2, 2, 2, 637, 635, 3, 2, 2, 2, 637, 638, 3, 2, 2, 2, 638, 69, 3, 2, 2, 2, 639, 637, 3, 2, 2, 2, 640, 641, 8, 36, 1, 2, 641, 642, 7, 8, 2, 2, 642, 643, 5, 68, 35, 2, 643, 644, 7, 9, 2, 2, 644, 703, 3, 2, 2, 2, 645, 646, 7, 85, 2, 2, 646, 649, 7, 8, 2, 2, 647, 650, 5, 70, 36, 2, 648, 650, 5, 24, 13, 2, 649, 647, 3, 2, 2, 2, 649, 648, 3, 2, 2, 2, 650, 651, 3, 2, 2, 2, 651, 652, 7, 9, 2, 2, 652, 703, 3, 2, 2, 2, 653, 654, 7, 86, 2, 2, 654, 657, 7, 8, 2, 2, 655, 658, 5, 70, 36, 2, 656, 658, 5, 24, 13, 2, 657, 655, 3, 2, 2, 2, 657, 656, 3, 2, 2, 2, 658, 659, 3, 2, 2, 2, 659, 660, 7, 9, 2, 2, 660, 703, 3, 2, 2, 2, 661, 663, 7, 87, 2, 2, 662, 664, 7, 8, 2, 2, 663, 662, 3, 2, 2, 2, 663, 664, 3, 2, 2, 2, 664, 665, 3, 2, 2, 2, 665, 667, 7, 121, 2, 2, 666, 668, 7, 9, 2, 2, 667, 666, 3, 2, 2, 2, 667, 668, 3, 2, 2, 2, 668, 703, 3, 2, 2, 2, 669, 670, 7, 8, 2, 2, 670, 671, 5, 24, 13, 2, 671, 672, 7, 9, 2, 2, 672, 673, 5, 70, 36, 26, 673, 703, 3, 2, 2, 2, 674, 675, 9, 2, 2, 2, 675, 703, 5, 70, 36, 25, 676, 677, 7, 20, 2, 2, 677, 703, 5, 70, 36, 23, 678, 679, 9, 3, 2, 2, 679, 703, 5, 70, 36, 22, 680, 681, 9, 4, 2, 2, 681, 703, 5, 70, 36, 18, 682, 683, 7, 4, 2, 2, 683, 688, 5, 70, 36, 2, 684, 685, 7, 12, 2, 2, 685, 687, 5, 70, 36, 2, 686, 684, 3, 2, 2, 2, 687, 690, 3, 2, 2, 2, 688, 686, 3, 2, 2, 2, 688, 689, 3, 2, 2, 2, 689, 691, 3, 2, 2, 2, 690, 688, 3, 2, 2, 2, 691, 692, 7, 5, 2, 2, 692, 703, 3, 2, 2, 2, 693, 703, 7, 121, 2, 2, 694, 703, 7, 112, 2, 2, 695, 697, 7, 122, 2, 2, 696, 695, 3, 2, 2, 2, 697, 698, 3, 2, 2, 2, 698, 696, 3, 2, 2, 2, 698, 699, 3, 2, 2, 2, 699, 703, 3, 2, 2, 2, 700, 703, 7, 123, 2, 2, 701, 703, 7, 97, 2, 2, 702, 640, 3, 2, 2, 2, 702, 645, 3, 2, 2, 2, 702, 653, 3, 2, 2, 2, 702, 661, 3, 2, 2, 2, 702, 669, 3, 2, 2, 2, 702, 674, 3, 2, 2, 2, 702, 676, 3, 2, 2, 2, 702, 678, 3, 2, 2, 2, 702, 680, 3, 2, 2, 2, 702, 682, 3, 2, 2, 2, 702, 693, 3, 2, 2, 2, 702, 694, 3, 2, 2, 2, 702, 696, 3, 2, 2, 2, 702, 700, 3, 2, 2, 2, 702, 701, 3, 2, 2, 2, 703, 764, 3, 2, 2, 2, 704, 705, 12, 21, 2, 2, 705, 706, 9, 5, 2, 2, 706, 763, 5, 70, 36, 22, 707, 708, 12, 20, 2, 2, 708, 709, 9, 6, 2, 2, 709, 763, 5, 70, 36, 21, 710, 711, 12, 19, 2, 2, 711, 712, 9, 7, 2, 2, 712, 763, 5, 70, 36, 20, 713, 714, 12, 17, 2, 2, 714, 715, 9, 8, 2, 2, 715, 763, 5, 70, 36, 18, 716, 717, 12, 16, 2, 2, 717, 718, 7, 25, 2, 2, 718, 763, 5, 70, 36, 17, 719, 720, 12, 15, 2, 2, 720, 721, 7, 27, 2, 2, 721, 763, 5, 70, 36, 16, 722, 723, 12, 14, 2, 2, 723, 724, 7, 28, 2, 2, 724, 763, 5, 70, 36, 15, 725, 726, 12, 13, 2, 2, 726, 727, 7, 37, 2, 2, 727, 763, 5, 70, 36, 14, 728, 729, 12, 12, 2, 2, 729, 730, 7, 38, 2, 2, 730, 763, 5, 70, 36, 13, 731, 732, 12, 11, 2, 2, 732, 733, 7, 15, 2, 2, 733, 734, 5, 70, 36, 2, 734, 735, 7, 11, 2, 2, 735, 736, 5, 70, 36, 12, 736, 763, 3, 2, 2, 2, 737, 738, 12, 10, 2, 2, 738, 739, 7, 39, 2, 2, 739, 763, 5, 70, 36, 10, 740, 741, 12, 9, 2, 2, 741, 742, 7, 40, 2, 2, 742, 763, 5, 70, 36, 9, 743, 744, 12, 33, 2, 2, 744, 745, 7, 16, 2, 2, 745, 763, 7, 121, 2, 2, 746, 747, 12, 32, 2, 2, 747, 748, 7, 17, 2, 2, 748, 763, 7, 121, 2, 2, 749, 750, 12, 31, 2, 2, 750, 752, 7, 8, 2, 2, 751, 753, 5, 72, 37, 2, 752, 751, 3, 2, 2, 2, 752, 753, 3, 2, 2, 2, 753, 754, 3, 2, 2, 2, 754, 763, 7, 9, 2, 2, 755, 756, 12, 27, 2, 2, 756, 757, 7, 6, 2, 2, 757, 758, 5, 68, 35, 2, 758, 759, 7, 7, 2, 2, 759, 763, 3, 2, 2, 2, 760, 761, 12, 24, 2, 2, 761, 763, 9, 2, 2, 2, 762, 704, 3, 2, 2, 2, 762, 707, 3, 2, 2, 2, 762, 710, 3, 2, 2, 2, 762, 713, 3, 2, 2, 2, 762, 716, 3, 2, 2, 2, 762, 719, 3, 2, 2, 2, 762, 722, 3, 2, 2, 2, 762, 725, 3, 2, 2, 2, 762, 728, 3, 2, 2, 2, 762, 731, 3, 2, 2, 2, 762, 737, 3, 2, 2, 2, 762, 740, 3, 2, 2, 2, 762, 743, 3, 2, 2, 2, 762, 746, 3, 2, 2, 2, 762, 749, 3, 2, 2, 2, 762, 755, 3, 2, 2, 2, 762, 760, 3, 2, 2, 2, 763, 766, 3, 2, 2, 2, 764, 762, 3, 2, 2, 2, 764, 765, 3, 2, 2, 2, 765, 71, 3, 2, 2, 2, 766, 764, 3, 2, 2, 2, 767, 772, 5, 70, 36, 2, 768, 769, 7, 12, 2, 2, 769, 771, 5, 70, 36, 2, 770, 768, 3, 2, 2, 2, 771, 774, 3, 2, 2, 2, 772, 770, 3, 2, 2, 2, 772, 773, 3, 2, 2, 2, 773, 73, 3, 2, 2, 2, 774, 772, 3, 2, 2, 2, 775, 777, 7, 88, 2, 2, 776, 778, 5, 76, 39, 2, 777, 776, 3, 2, 2, 2, 777, 778, 3, 2, 2, 2, 778, 779, 3, 2, 2, 2, 779, 780, 7, 98, 2, 2, 780, 75, 3, 2, 2, 2, 781, 782, 7, 8, 2, 2, 782, 787, 5, 78, 40, 2, 783, 784, 7, 12, 2, 2, 784, 786, 5, 78, 40, 2, 785, 783, 3, 2, 2, 2, 786, 789, 3, 2, 2, 2, 787, 785, 3, 2, 2, 2, 787, 788, 3, 2, 2, 2, 788, 790, 3, 2, 2, 2, 789, 787, 3, 2, 2, 2, 790, 791, 7, 9, 2, 2, 791, 77, 3, 2, 2, 2, 792, 793, 7, 89, 2, 2, 793, 803, 7, 122, 2, 2, 794, 795, 7, 90, 2, 2, 795, 803, 7, 121, 2, 2, 796, 797, 7, 91, 2, 2, 797, 803, 7, 122, 2, 2, 798, 799, 7, 92, 2, 2, 799, 803, 5, 70, 36, 2, 800, 801, 7, 93, 2, 2, 801, 803, 5, 70, 36, 2, 802, 792, 3, 2, 2, 2, 802, 794, 3, 2, 2, 2, 802, 796, 3, 2, 2, 2, 802, 798, 3, 2, 2, 2, 802, 800, 3, 2, 2, 2, 803, 79, 3, 2, 2, 2, 804, 806, 5, 82, 42, 2, 805, 804, 3, 2, 2, 2, 806, 809, 3, 2, 2, 2, 807, 805, 3, 2, 2, 2, 807, 808, 3, 2, 2, 2, 808, 81, 3, 2, 2, 2, 809, 807, 3, 2, 2, 2, 810, 814, 5, 84, 43, 2, 811, 814, 5, 86, 44, 2, 812, 814, 5, 88, 45, 2, 813, 810, 3, 2, 2, 2, 813, 811, 3, 2, 2, 2, 813, 812, 3, 2, 2, 2, 814, 83, 3, 2, 2, 2, 815, 816, 7, 159, 2, 2, 816, 820, 7, 130, 2, 2, 817, 818, 7, 158, 2, 2, 818, 820, 7, 130, 2, 2, 819, 815, 3, 2, 2, 2, 819, 817, 3, 2, 2, 2, 820, 85, 3, 2, 2, 2, 821, 823, 7, 128, 2, 2, 822, 824, 5, 90, 46, 2, 823, 822, 3, 2, 2, 2, 823, 824, 3, 2, 2, 2, 824, 87, 3, 2, 2, 2, 825, 826, 7, 127, 2, 2, 826, 831, 5, 92, 47, 2, 827, 828, 7, 131, 2, 2, 828, 830, 5, 92, 47, 2, 829, 827, 3, 2, 2, 2, 830, 833, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 831, 832, 3, 2, 2, 2, 832, 89, 3, 2, 2, 2, 833, 831, 3, 2, 2, 2, 834, 858, 5, 92, 47, 2, 835, 836, 7, 129, 2, 2, 836, 858, 5, 92, 47, 2, 837, 838, 5, 92, 47, 2, 838, 839, 7, 131, 2, 2, 839, 840, 7, 159, 2, 2, 840, 858, 3, 2, 2, 2, 841, 842, 7, 132, 2, 2, 842, 843, 5, 92, 47, 2, 843, 844, 7, 133, 2, 2, 844, 845, 7, 131, 2, 2, 845, 846, 7, 159, 2, 2, 846, 858, 3, 2, 2, 2, 847, 848, 7, 132, 2, 2, 848, 849, 5, 92, 47, 2, 849, 850, 7, 131, 2, 2, 850, 851, 7, 159, 2, 2, 851, 852, 7, 133, 2, 2, 852, 858, 3, 2, 2, 2, 853, 854, 7, 132, 2, 2, 854, 855, 5, 92, 47, 2, 855, 856, 7, 133, 2, 2, 856, 858, 3, 2, 2, 2, 857, 834, 3, 2, 2, 2, 857, 835, 3, 2, 2, 2, 857, 837, 3, 2, 2, 2, 857, 841, 3, 2, 2, 2, 857, 847, 3, 2, 2, 2, 857, 853, 3, 2, 2, 2, 858, 91, 3, 2, 2, 2, 859, 860, 8, 47, 1, 2, 860, 861, 7, 134, 2, 2, 861, 862, 5, 92, 47, 2, 862, 863, 7, 135, 2, 2, 863, 874, 3, 2, 2, 2, 864, 865, 9, 9, 2, 2, 865, 874, 5, 92, 47, 10, 866, 874, 7, 159, 2, 2, 867, 874, 7, 157, 2, 2, 868, 869, 7, 145, 2, 2, 869, 870, 7, 159, 2, 2, 870, 874, 7, 146, 2, 2, 871, 874, 7, 147, 2, 2, 872, 874, 7, 156, 2, 2, 873, 859, 3, 2, 2, 2, 873, 864, 3, 2, 2, 2, 873, 866, 3, 2, 2, 2, 873, 867, 3, 2, 2, 2, 873, 868, 3, 2, 2, 2, 873, 871, 3, 2, 2, 2, 873, 872, 3, 2, 2, 2, 874, 889, 3, 2, 2, 2, 875, 876, 12, 12, 2, 2, 876, 877, 7, 136, 2, 2, 877, 888, 5, 92, 47, 13, 878, 879, 12, 11, 2, 2, 879, 880, 9, 10, 2, 2, 880, 888, 5, 92, 47, 12, 881, 882, 12, 9, 2, 2, 882, 883, 9, 11, 2, 2, 883, 888, 5, 92, 47, 10, 884, 885, 12, 8, 2, 2, 885, 886, 9, 12, 2, 2, 886, 888, 5, 92, 47, 9, 887, 875, 3, 2, 2, 2, 887, 878, 3, 2, 2, 2, 887, 881, 3, 2, 2, 2, 887, 884, 3, 2, 2, 2, 888, 891, 3, 2, 2, 2, 889, 887, 3, 2, 2, 2, 889, 890, 3, 2, 2, 2, 890, 93, 3, 2, 2, 2, 891, 889, 3, 2, 2, 2, 88, 103, 121, 130, 140, 146, 154, 161, 170, 175, 181, 186, 191, 198, 205, 210, 222, 225, 227, 238, 245, 250, 256, 258, 266, 272, 284, 298, 304, 310, 316, 321, 325, 334, 341, 348, 389, 433, 437, 442, 453, 473, 482, 488, 493, 500, 513, 518, 530, 544, 563, 572, 579, 584, 589, 591, 597, 604, 610, 613, 621, 624, 627, 637, 649, 657, 663, 667, 688, 698, 702, 752, 762, 764, 772, 777, 787, 802, 807, 813, 819, 823, 831, 857, 873, 887, 889]
\ No newline at end of file
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
index 0e8488aba..7d7fd58da 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
@@ -1,4 +1,4 @@
-// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2
+// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.8
package dk.camelot64.kickc.parser;
@@ -13,7 +13,7 @@ import java.util.ArrayList;
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"})
public class KickCParser extends Parser {
- static { RuntimeMetaData.checkVersion("4.7.2", RuntimeMetaData.VERSION); }
+ static { RuntimeMetaData.checkVersion("4.8", RuntimeMetaData.VERSION); }
protected static final DFA[] _decisionToDFA;
protected static final PredictionContextCache _sharedContextCache =
@@ -6131,27 +6131,6 @@ public class KickCParser extends Parser {
else return visitor.visitChildren(this);
}
}
- public static class AsmDirectiveAddressContext extends AsmDirectiveContext {
- public TerminalNode PC() { return getToken(KickCParser.PC, 0); }
- public TerminalNode INLINE() { return getToken(KickCParser.INLINE, 0); }
- public ExprContext expr() {
- return getRuleContext(ExprContext.class,0);
- }
- public AsmDirectiveAddressContext(AsmDirectiveContext ctx) { copyFrom(ctx); }
- @Override
- public void enterRule(ParseTreeListener listener) {
- if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterAsmDirectiveAddress(this);
- }
- @Override
- public void exitRule(ParseTreeListener listener) {
- if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitAsmDirectiveAddress(this);
- }
- @Override
- public T accept(ParseTreeVisitor extends T> visitor) {
- if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor extends T>)visitor).visitAsmDirectiveAddress(this);
- else return visitor.visitChildren(this);
- }
- }
public static class AsmDirectiveClobberContext extends AsmDirectiveContext {
public TerminalNode CLOBBERS() { return getToken(KickCParser.CLOBBERS, 0); }
public TerminalNode STRING() { return getToken(KickCParser.STRING, 0); }
@@ -6213,7 +6192,7 @@ public class KickCParser extends Parser {
AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState());
enterRule(_localctx, 76, RULE_asmDirective);
try {
- setState(805);
+ setState(800);
_errHandler.sync(this);
switch (_input.LA(1)) {
case RESOURCE:
@@ -6266,51 +6245,6 @@ public class KickCParser extends Parser {
expr(0);
}
break;
- case PC:
- _localctx = new AsmDirectiveAddressContext(_localctx);
- enterOuterAlt(_localctx, 6);
- {
- setState(800);
- match(PC);
- setState(803);
- _errHandler.sync(this);
- switch (_input.LA(1)) {
- case INLINE:
- {
- setState(801);
- match(INLINE);
- }
- break;
- case CURLY_BEGIN:
- case PAR_BEGIN:
- case PLUS:
- case MINUS:
- case ASTERISK:
- case INC:
- case DEC:
- case AND:
- case BIT_NOT:
- case LESS_THAN:
- case GREATER_THAN:
- case SIZEOF:
- case TYPEID:
- case DEFINED:
- case LOGIC_NOT:
- case BOOLEAN:
- case NUMBER:
- case NAME:
- case STRING:
- case CHAR:
- {
- setState(802);
- expr(0);
- }
- break;
- default:
- throw new NoViableAltException(this);
- }
- }
- break;
default:
throw new NoViableAltException(this);
}
@@ -6359,17 +6293,17 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(810);
+ setState(805);
_errHandler.sync(this);
_la = _input.LA(1);
while (((((_la - 125)) & ~0x3f) == 0 && ((1L << (_la - 125)) & ((1L << (ASM_BYTE - 125)) | (1L << (ASM_MNEMONIC - 125)) | (1L << (ASM_MULTI_NAME - 125)) | (1L << (ASM_NAME - 125)))) != 0)) {
{
{
- setState(807);
+ setState(802);
asmLine();
}
}
- setState(812);
+ setState(807);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -6419,28 +6353,28 @@ public class KickCParser extends Parser {
AsmLineContext _localctx = new AsmLineContext(_ctx, getState());
enterRule(_localctx, 80, RULE_asmLine);
try {
- setState(816);
+ setState(811);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASM_MULTI_NAME:
case ASM_NAME:
enterOuterAlt(_localctx, 1);
{
- setState(813);
+ setState(808);
asmLabel();
}
break;
case ASM_MNEMONIC:
enterOuterAlt(_localctx, 2);
{
- setState(814);
+ setState(809);
asmInstruction();
}
break;
case ASM_BYTE:
enterOuterAlt(_localctx, 3);
{
- setState(815);
+ setState(810);
asmBytes();
}
break;
@@ -6511,16 +6445,16 @@ public class KickCParser extends Parser {
AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState());
enterRule(_localctx, 82, RULE_asmLabel);
try {
- setState(822);
+ setState(817);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASM_NAME:
_localctx = new AsmLabelNameContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(818);
+ setState(813);
match(ASM_NAME);
- setState(819);
+ setState(814);
match(ASM_COLON);
}
break;
@@ -6528,9 +6462,9 @@ public class KickCParser extends Parser {
_localctx = new AsmLabelMultiContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(820);
+ setState(815);
match(ASM_MULTI_NAME);
- setState(821);
+ setState(816);
match(ASM_COLON);
}
break;
@@ -6579,14 +6513,14 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(824);
+ setState(819);
match(ASM_MNEMONIC);
- setState(826);
+ setState(821);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,81,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,80,_ctx) ) {
case 1:
{
- setState(825);
+ setState(820);
asmParamMode();
}
break;
@@ -6642,23 +6576,23 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(828);
+ setState(823);
match(ASM_BYTE);
- setState(829);
+ setState(824);
asmExpr(0);
- setState(834);
+ setState(829);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==ASM_COMMA) {
{
{
- setState(830);
+ setState(825);
match(ASM_COMMA);
- setState(831);
+ setState(826);
asmExpr(0);
}
}
- setState(836);
+ setState(831);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -6818,14 +6752,14 @@ public class KickCParser extends Parser {
AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState());
enterRule(_localctx, 88, RULE_asmParamMode);
try {
- setState(860);
+ setState(855);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,83,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,82,_ctx) ) {
case 1:
_localctx = new AsmModeAbsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(837);
+ setState(832);
asmExpr(0);
}
break;
@@ -6833,9 +6767,9 @@ public class KickCParser extends Parser {
_localctx = new AsmModeImmContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(838);
+ setState(833);
match(ASM_IMM);
- setState(839);
+ setState(834);
asmExpr(0);
}
break;
@@ -6843,11 +6777,11 @@ public class KickCParser extends Parser {
_localctx = new AsmModeAbsXYContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(840);
+ setState(835);
asmExpr(0);
- setState(841);
+ setState(836);
match(ASM_COMMA);
- setState(842);
+ setState(837);
match(ASM_NAME);
}
break;
@@ -6855,15 +6789,15 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIndIdxXYContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(844);
+ setState(839);
match(ASM_PAR_BEGIN);
- setState(845);
+ setState(840);
asmExpr(0);
- setState(846);
+ setState(841);
match(ASM_PAR_END);
- setState(847);
+ setState(842);
match(ASM_COMMA);
- setState(848);
+ setState(843);
match(ASM_NAME);
}
break;
@@ -6871,15 +6805,15 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIdxIndXYContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(850);
+ setState(845);
match(ASM_PAR_BEGIN);
- setState(851);
+ setState(846);
asmExpr(0);
- setState(852);
+ setState(847);
match(ASM_COMMA);
- setState(853);
+ setState(848);
match(ASM_NAME);
- setState(854);
+ setState(849);
match(ASM_PAR_END);
}
break;
@@ -6887,11 +6821,11 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIndContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(856);
+ setState(851);
match(ASM_PAR_BEGIN);
- setState(857);
+ setState(852);
asmExpr(0);
- setState(858);
+ setState(853);
match(ASM_PAR_END);
}
break;
@@ -7096,7 +7030,7 @@ public class KickCParser extends Parser {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(876);
+ setState(871);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASM_BRACKET_BEGIN:
@@ -7105,11 +7039,11 @@ public class KickCParser extends Parser {
_ctx = _localctx;
_prevctx = _localctx;
- setState(863);
+ setState(858);
match(ASM_BRACKET_BEGIN);
- setState(864);
+ setState(859);
asmExpr(0);
- setState(865);
+ setState(860);
match(ASM_BRACKET_END);
}
break;
@@ -7121,7 +7055,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(867);
+ setState(862);
_la = _input.LA(1);
if ( !(((((_la - 137)) & ~0x3f) == 0 && ((1L << (_la - 137)) & ((1L << (ASM_PLUS - 137)) | (1L << (ASM_MINUS - 137)) | (1L << (ASM_LESS_THAN - 137)) | (1L << (ASM_GREATER_THAN - 137)))) != 0)) ) {
_errHandler.recoverInline(this);
@@ -7131,7 +7065,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(868);
+ setState(863);
asmExpr(8);
}
break;
@@ -7140,7 +7074,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprLabelContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(869);
+ setState(864);
match(ASM_NAME);
}
break;
@@ -7149,7 +7083,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprLabelRelContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(870);
+ setState(865);
match(ASM_MULTI_REL);
}
break;
@@ -7158,11 +7092,11 @@ public class KickCParser extends Parser {
_localctx = new AsmExprReplaceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(871);
+ setState(866);
match(ASM_CURLY_BEGIN);
- setState(872);
+ setState(867);
match(ASM_NAME);
- setState(873);
+ setState(868);
match(ASM_CURLY_END);
}
break;
@@ -7171,7 +7105,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprIntContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(874);
+ setState(869);
match(ASM_NUMBER);
}
break;
@@ -7180,7 +7114,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprCharContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(875);
+ setState(870);
match(ASM_CHAR);
}
break;
@@ -7188,28 +7122,28 @@ public class KickCParser extends Parser {
throw new NoViableAltException(this);
}
_ctx.stop = _input.LT(-1);
- setState(892);
+ setState(887);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,86,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,85,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(890);
+ setState(885);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,85,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,84,_ctx) ) {
case 1:
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(878);
+ setState(873);
if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)");
{
- setState(879);
+ setState(874);
match(ASM_DOT);
}
- setState(880);
+ setState(875);
asmExpr(11);
}
break;
@@ -7217,9 +7151,9 @@ public class KickCParser extends Parser {
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(881);
+ setState(876);
if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
- setState(882);
+ setState(877);
_la = _input.LA(1);
if ( !(_la==ASM_SHIFT_LEFT || _la==ASM_SHIFT_RIGHT) ) {
_errHandler.recoverInline(this);
@@ -7229,7 +7163,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(883);
+ setState(878);
asmExpr(10);
}
break;
@@ -7237,9 +7171,9 @@ public class KickCParser extends Parser {
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(884);
+ setState(879);
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
- setState(885);
+ setState(880);
_la = _input.LA(1);
if ( !(_la==ASM_MULTIPLY || _la==ASM_DIVIDE) ) {
_errHandler.recoverInline(this);
@@ -7249,7 +7183,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(886);
+ setState(881);
asmExpr(8);
}
break;
@@ -7257,9 +7191,9 @@ public class KickCParser extends Parser {
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(887);
+ setState(882);
if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
- setState(888);
+ setState(883);
_la = _input.LA(1);
if ( !(_la==ASM_PLUS || _la==ASM_MINUS) ) {
_errHandler.recoverInline(this);
@@ -7269,16 +7203,16 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(889);
+ setState(884);
asmExpr(7);
}
break;
}
}
}
- setState(894);
+ setState(889);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,86,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,85,_ctx);
}
}
}
@@ -7405,7 +7339,7 @@ public class KickCParser extends Parser {
}
public static final String _serializedATN =
- "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u00a7\u0382\4\2\t"+
+ "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u00a7\u037d\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"+
@@ -7464,75 +7398,75 @@ public class KickCParser extends Parser {
"\3$\3$\3$\3$\3$\5$\u02f1\n$\3$\3$\3$\3$\3$\3$\3$\3$\7$\u02fb\n$\f$\16"+
"$\u02fe\13$\3%\3%\3%\7%\u0303\n%\f%\16%\u0306\13%\3&\3&\5&\u030a\n&\3"+
"&\3&\3\'\3\'\3\'\3\'\7\'\u0312\n\'\f\'\16\'\u0315\13\'\3\'\3\'\3(\3(\3"+
- "(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\5(\u0326\n(\5(\u0328\n(\3)\7)\u032b\n"+
- ")\f)\16)\u032e\13)\3*\3*\3*\5*\u0333\n*\3+\3+\3+\3+\5+\u0339\n+\3,\3,"+
- "\5,\u033d\n,\3-\3-\3-\3-\7-\u0343\n-\f-\16-\u0346\13-\3.\3.\3.\3.\3.\3"+
- ".\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\5.\u035f\n.\3/\3"+
- "/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\5/\u036f\n/\3/\3/\3/\3/\3/\3/\3"+
- "/\3/\3/\3/\3/\3/\7/\u037d\n/\f/\16/\u0380\13/\3/\2\t\f\30\32&DF\\\60\2"+
- "\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJL"+
- "NPRTVXZ\\\2\r\3\2\27\30\5\2\22\23\31\32^^\4\2!!$$\3\2\35\36\3\2\24\26"+
- "\3\2\22\23\3\2\37$\3\2\u008b\u008e\3\2\u0089\u008a\3\2\u008f\u0090\3\2"+
- "\u008b\u008c\2\u0406\2^\3\2\2\2\4a\3\2\2\2\6g\3\2\2\2\by\3\2\2\2\n{\3"+
- "\2\2\2\f~\3\2\2\2\16\u0095\3\2\2\2\20\u00ba\3\2\2\2\22\u00bf\3\2\2\2\24"+
- "\u00c9\3\2\2\2\26\u00d0\3\2\2\2\30\u00d6\3\2\2\2\32\u00f5\3\2\2\2\34\u0105"+
- "\3\2\2\2\36\u0108\3\2\2\2 \u0114\3\2\2\2\"\u0117\3\2\2\2$\u011a\3\2\2"+
- "\2&\u0122\3\2\2\2(\u012d\3\2\2\2*\u0132\3\2\2\2,\u0143\3\2\2\2.\u0149"+
- "\3\2\2\2\60\u015c\3\2\2\2\62\u01b5\3\2\2\2\64\u01b7\3\2\2\2\66\u01e8\3"+
- "\2\2\28\u01eb\3\2\2\2:\u0243\3\2\2\2<\u0246\3\2\2\2>\u0251\3\2\2\2@\u026d"+
- "\3\2\2\2B\u0273\3\2\2\2D\u0275\3\2\2\2F\u02be\3\2\2\2H\u02ff\3\2\2\2J"+
- "\u0307\3\2\2\2L\u030d\3\2\2\2N\u0327\3\2\2\2P\u032c\3\2\2\2R\u0332\3\2"+
- "\2\2T\u0338\3\2\2\2V\u033a\3\2\2\2X\u033e\3\2\2\2Z\u035e\3\2\2\2\\\u036e"+
- "\3\2\2\2^_\5\6\4\2_`\7\2\2\3`\3\3\2\2\2ab\5P)\2bc\7\2\2\3c\5\3\2\2\2d"+
- "f\5\b\5\2ed\3\2\2\2fi\3\2\2\2ge\3\2\2\2gh\3\2\2\2h\7\3\2\2\2ig\3\2\2\2"+
- "jk\5\n\6\2kl\7\n\2\2lz\3\2\2\2mn\5\36\20\2no\7\n\2\2oz\3\2\2\2pq\5$\23"+
- "\2qr\7\n\2\2rz\3\2\2\2sz\5*\26\2tz\5J&\2uz\5\62\32\2vw\5\16\b\2wx\7\n"+
- "\2\2xz\3\2\2\2yj\3\2\2\2ym\3\2\2\2yp\3\2\2\2ys\3\2\2\2yt\3\2\2\2yu\3\2"+
- "\2\2yv\3\2\2\2z\t\3\2\2\2{|\5\22\n\2|}\5\f\7\2}\13\3\2\2\2~\u0082\b\7"+
- "\1\2\177\u0081\5\24\13\2\u0080\177\3\2\2\2\u0081\u0084\3\2\2\2\u0082\u0080"+
- "\3\2\2\2\u0082\u0083\3\2\2\2\u0083\u0085\3\2\2\2\u0084\u0082\3\2\2\2\u0085"+
- "\u0086\5\20\t\2\u0086\u0092\3\2\2\2\u0087\u0088\f\3\2\2\u0088\u008c\7"+
- "\f\2\2\u0089\u008b\5\24\13\2\u008a\u0089\3\2\2\2\u008b\u008e\3\2\2\2\u008c"+
- "\u008a\3\2\2\2\u008c\u008d\3\2\2\2\u008d\u008f\3\2\2\2\u008e\u008c\3\2"+
- "\2\2\u008f\u0091\5\20\t\2\u0090\u0087\3\2\2\2\u0091\u0094\3\2\2\2\u0092"+
- "\u0090\3\2\2\2\u0092\u0093\3\2\2\2\u0093\r\3\2\2\2\u0094\u0092\3\2\2\2"+
- "\u0095\u0096\7)\2\2\u0096\u009a\5\22\n\2\u0097\u0099\5\24\13\2\u0098\u0097"+
- "\3\2\2\2\u0099\u009c\3\2\2\2\u009a\u0098\3\2\2\2\u009a\u009b\3\2\2\2\u009b"+
- "\u009d\3\2\2\2\u009c\u009a\3\2\2\2\u009d\u00a1\7y\2\2\u009e\u00a0\5\26"+
- "\f\2\u009f\u009e\3\2\2\2\u00a0\u00a3\3\2\2\2\u00a1\u009f\3\2\2\2\u00a1"+
- "\u00a2\3\2\2\2\u00a2\u00a4\3\2\2\2\u00a3\u00a1\3\2\2\2\u00a4\u00a5\b\b"+
- "\1\2\u00a5\17\3\2\2\2\u00a6\u00aa\7y\2\2\u00a7\u00a9\5\26\f\2\u00a8\u00a7"+
- "\3\2\2\2\u00a9\u00ac\3\2\2\2\u00aa\u00a8\3\2\2\2\u00aa\u00ab\3\2\2\2\u00ab"+
- "\u00af\3\2\2\2\u00ac\u00aa\3\2\2\2\u00ad\u00ae\7\'\2\2\u00ae\u00b0\5F"+
- "$\2\u00af\u00ad\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0\u00bb\3\2\2\2\u00b1"+
- "\u00b5\7y\2\2\u00b2\u00b4\5\26\f\2\u00b3\u00b2\3\2\2\2\u00b4\u00b7\3\2"+
- "\2\2\u00b5\u00b3\3\2\2\2\u00b5\u00b6\3\2\2\2\u00b6\u00b8\3\2\2\2\u00b7"+
- "\u00b5\3\2\2\2\u00b8\u00b9\7\'\2\2\u00b9\u00bb\5J&\2\u00ba\u00a6\3\2\2"+
- "\2\u00ba\u00b1\3\2\2\2\u00bb\21\3\2\2\2\u00bc\u00be\5\66\34\2\u00bd\u00bc"+
- "\3\2\2\2\u00be\u00c1\3\2\2\2\u00bf\u00bd\3\2\2\2\u00bf\u00c0\3\2\2\2\u00c0"+
- "\u00c2\3\2\2\2\u00c1\u00bf\3\2\2\2\u00c2\u00c6\5\32\16\2\u00c3\u00c5\5"+
- "\66\34\2\u00c4\u00c3\3\2\2\2\u00c5\u00c8\3\2\2\2\u00c6\u00c4\3\2\2\2\u00c6"+
- "\u00c7\3\2\2\2\u00c7\23\3\2\2\2\u00c8\u00c6\3\2\2\2\u00c9\u00cd\7\24\2"+
- "\2\u00ca\u00cc\5\66\34\2\u00cb\u00ca\3\2\2\2\u00cc\u00cf\3\2\2\2\u00cd"+
- "\u00cb\3\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\25\3\2\2\2\u00cf\u00cd\3\2\2"+
- "\2\u00d0\u00d2\7\6\2\2\u00d1\u00d3\5F$\2\u00d2\u00d1\3\2\2\2\u00d2\u00d3"+
- "\3\2\2\2\u00d3\u00d4\3\2\2\2\u00d4\u00d5\7\7\2\2\u00d5\27\3\2\2\2\u00d6"+
- "\u00d7\b\r\1\2\u00d7\u00d8\5\32\16\2\u00d8\u00e3\3\2\2\2\u00d9\u00da\f"+
- "\4\2\2\u00da\u00e2\7\24\2\2\u00db\u00dc\f\3\2\2\u00dc\u00de\7\6\2\2\u00dd"+
- "\u00df\5F$\2\u00de\u00dd\3\2\2\2\u00de\u00df\3\2\2\2\u00df\u00e0\3\2\2"+
- "\2\u00e0\u00e2\7\7\2\2\u00e1\u00d9\3\2\2\2\u00e1\u00db\3\2\2\2\u00e2\u00e5"+
- "\3\2\2\2\u00e3\u00e1\3\2\2\2\u00e3\u00e4\3\2\2\2\u00e4\31\3\2\2\2\u00e5"+
- "\u00e3\3\2\2\2\u00e6\u00e7\b\16\1\2\u00e7\u00e8\7\b\2\2\u00e8\u00e9\5"+
- "\32\16\2\u00e9\u00ea\7\t\2\2\u00ea\u00f6\3\2\2\2\u00eb\u00f6\7`\2\2\u00ec"+
- "\u00ee\7_\2\2\u00ed\u00ef\7`\2\2\u00ee\u00ed\3\2\2\2\u00ee\u00ef\3\2\2"+
- "\2\u00ef\u00f6\3\2\2\2\u00f0\u00f6\5\36\20\2\u00f1\u00f6\5\34\17\2\u00f2"+
- "\u00f6\5$\23\2\u00f3\u00f6\5\"\22\2\u00f4\u00f6\7\3\2\2\u00f5\u00e6\3"+
- "\2\2\2\u00f5\u00eb\3\2\2\2\u00f5\u00ec\3\2\2\2\u00f5\u00f0\3\2\2\2\u00f5"+
- "\u00f1\3\2\2\2\u00f5\u00f2\3\2\2\2\u00f5\u00f3\3\2\2\2\u00f5\u00f4\3\2"+
- "\2\2\u00f6\u0102\3\2\2\2\u00f7\u00f8\f\t\2\2\u00f8\u00fa\7\6\2\2\u00f9"+
- "\u00fb\5F$\2\u00fa\u00f9\3\2\2\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\3\2\2"+
- "\2\u00fc\u0101\7\7\2\2\u00fd\u00fe\f\b\2\2\u00fe\u00ff\7\b\2\2\u00ff\u0101"+
- "\7\t\2\2\u0100\u00f7\3\2\2\2\u0100\u00fd\3\2\2\2\u0101\u0104\3\2\2\2\u0102"+
+ "(\3(\3(\3(\3(\3(\3(\3(\5(\u0323\n(\3)\7)\u0326\n)\f)\16)\u0329\13)\3*"+
+ "\3*\3*\5*\u032e\n*\3+\3+\3+\3+\5+\u0334\n+\3,\3,\5,\u0338\n,\3-\3-\3-"+
+ "\3-\7-\u033e\n-\f-\16-\u0341\13-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+
+ ".\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\5.\u035a\n.\3/\3/\3/\3/\3/\3/\3/\3/\3"+
+ "/\3/\3/\3/\3/\3/\5/\u036a\n/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\7/\u0378"+
+ "\n/\f/\16/\u037b\13/\3/\2\t\f\30\32&DF\\\60\2\4\6\b\n\f\16\20\22\24\26"+
+ "\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTVXZ\\\2\r\3\2\27\30\5"+
+ "\2\22\23\31\32^^\4\2!!$$\3\2\35\36\3\2\24\26\3\2\22\23\3\2\37$\3\2\u008b"+
+ "\u008e\3\2\u0089\u008a\3\2\u008f\u0090\3\2\u008b\u008c\2\u03ff\2^\3\2"+
+ "\2\2\4a\3\2\2\2\6g\3\2\2\2\by\3\2\2\2\n{\3\2\2\2\f~\3\2\2\2\16\u0095\3"+
+ "\2\2\2\20\u00ba\3\2\2\2\22\u00bf\3\2\2\2\24\u00c9\3\2\2\2\26\u00d0\3\2"+
+ "\2\2\30\u00d6\3\2\2\2\32\u00f5\3\2\2\2\34\u0105\3\2\2\2\36\u0108\3\2\2"+
+ "\2 \u0114\3\2\2\2\"\u0117\3\2\2\2$\u011a\3\2\2\2&\u0122\3\2\2\2(\u012d"+
+ "\3\2\2\2*\u0132\3\2\2\2,\u0143\3\2\2\2.\u0149\3\2\2\2\60\u015c\3\2\2\2"+
+ "\62\u01b5\3\2\2\2\64\u01b7\3\2\2\2\66\u01e8\3\2\2\28\u01eb\3\2\2\2:\u0243"+
+ "\3\2\2\2<\u0246\3\2\2\2>\u0251\3\2\2\2@\u026d\3\2\2\2B\u0273\3\2\2\2D"+
+ "\u0275\3\2\2\2F\u02be\3\2\2\2H\u02ff\3\2\2\2J\u0307\3\2\2\2L\u030d\3\2"+
+ "\2\2N\u0322\3\2\2\2P\u0327\3\2\2\2R\u032d\3\2\2\2T\u0333\3\2\2\2V\u0335"+
+ "\3\2\2\2X\u0339\3\2\2\2Z\u0359\3\2\2\2\\\u0369\3\2\2\2^_\5\6\4\2_`\7\2"+
+ "\2\3`\3\3\2\2\2ab\5P)\2bc\7\2\2\3c\5\3\2\2\2df\5\b\5\2ed\3\2\2\2fi\3\2"+
+ "\2\2ge\3\2\2\2gh\3\2\2\2h\7\3\2\2\2ig\3\2\2\2jk\5\n\6\2kl\7\n\2\2lz\3"+
+ "\2\2\2mn\5\36\20\2no\7\n\2\2oz\3\2\2\2pq\5$\23\2qr\7\n\2\2rz\3\2\2\2s"+
+ "z\5*\26\2tz\5J&\2uz\5\62\32\2vw\5\16\b\2wx\7\n\2\2xz\3\2\2\2yj\3\2\2\2"+
+ "ym\3\2\2\2yp\3\2\2\2ys\3\2\2\2yt\3\2\2\2yu\3\2\2\2yv\3\2\2\2z\t\3\2\2"+
+ "\2{|\5\22\n\2|}\5\f\7\2}\13\3\2\2\2~\u0082\b\7\1\2\177\u0081\5\24\13\2"+
+ "\u0080\177\3\2\2\2\u0081\u0084\3\2\2\2\u0082\u0080\3\2\2\2\u0082\u0083"+
+ "\3\2\2\2\u0083\u0085\3\2\2\2\u0084\u0082\3\2\2\2\u0085\u0086\5\20\t\2"+
+ "\u0086\u0092\3\2\2\2\u0087\u0088\f\3\2\2\u0088\u008c\7\f\2\2\u0089\u008b"+
+ "\5\24\13\2\u008a\u0089\3\2\2\2\u008b\u008e\3\2\2\2\u008c\u008a\3\2\2\2"+
+ "\u008c\u008d\3\2\2\2\u008d\u008f\3\2\2\2\u008e\u008c\3\2\2\2\u008f\u0091"+
+ "\5\20\t\2\u0090\u0087\3\2\2\2\u0091\u0094\3\2\2\2\u0092\u0090\3\2\2\2"+
+ "\u0092\u0093\3\2\2\2\u0093\r\3\2\2\2\u0094\u0092\3\2\2\2\u0095\u0096\7"+
+ ")\2\2\u0096\u009a\5\22\n\2\u0097\u0099\5\24\13\2\u0098\u0097\3\2\2\2\u0099"+
+ "\u009c\3\2\2\2\u009a\u0098\3\2\2\2\u009a\u009b\3\2\2\2\u009b\u009d\3\2"+
+ "\2\2\u009c\u009a\3\2\2\2\u009d\u00a1\7y\2\2\u009e\u00a0\5\26\f\2\u009f"+
+ "\u009e\3\2\2\2\u00a0\u00a3\3\2\2\2\u00a1\u009f\3\2\2\2\u00a1\u00a2\3\2"+
+ "\2\2\u00a2\u00a4\3\2\2\2\u00a3\u00a1\3\2\2\2\u00a4\u00a5\b\b\1\2\u00a5"+
+ "\17\3\2\2\2\u00a6\u00aa\7y\2\2\u00a7\u00a9\5\26\f\2\u00a8\u00a7\3\2\2"+
+ "\2\u00a9\u00ac\3\2\2\2\u00aa\u00a8\3\2\2\2\u00aa\u00ab\3\2\2\2\u00ab\u00af"+
+ "\3\2\2\2\u00ac\u00aa\3\2\2\2\u00ad\u00ae\7\'\2\2\u00ae\u00b0\5F$\2\u00af"+
+ "\u00ad\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0\u00bb\3\2\2\2\u00b1\u00b5\7y"+
+ "\2\2\u00b2\u00b4\5\26\f\2\u00b3\u00b2\3\2\2\2\u00b4\u00b7\3\2\2\2\u00b5"+
+ "\u00b3\3\2\2\2\u00b5\u00b6\3\2\2\2\u00b6\u00b8\3\2\2\2\u00b7\u00b5\3\2"+
+ "\2\2\u00b8\u00b9\7\'\2\2\u00b9\u00bb\5J&\2\u00ba\u00a6\3\2\2\2\u00ba\u00b1"+
+ "\3\2\2\2\u00bb\21\3\2\2\2\u00bc\u00be\5\66\34\2\u00bd\u00bc\3\2\2\2\u00be"+
+ "\u00c1\3\2\2\2\u00bf\u00bd\3\2\2\2\u00bf\u00c0\3\2\2\2\u00c0\u00c2\3\2"+
+ "\2\2\u00c1\u00bf\3\2\2\2\u00c2\u00c6\5\32\16\2\u00c3\u00c5\5\66\34\2\u00c4"+
+ "\u00c3\3\2\2\2\u00c5\u00c8\3\2\2\2\u00c6\u00c4\3\2\2\2\u00c6\u00c7\3\2"+
+ "\2\2\u00c7\23\3\2\2\2\u00c8\u00c6\3\2\2\2\u00c9\u00cd\7\24\2\2\u00ca\u00cc"+
+ "\5\66\34\2\u00cb\u00ca\3\2\2\2\u00cc\u00cf\3\2\2\2\u00cd\u00cb\3\2\2\2"+
+ "\u00cd\u00ce\3\2\2\2\u00ce\25\3\2\2\2\u00cf\u00cd\3\2\2\2\u00d0\u00d2"+
+ "\7\6\2\2\u00d1\u00d3\5F$\2\u00d2\u00d1\3\2\2\2\u00d2\u00d3\3\2\2\2\u00d3"+
+ "\u00d4\3\2\2\2\u00d4\u00d5\7\7\2\2\u00d5\27\3\2\2\2\u00d6\u00d7\b\r\1"+
+ "\2\u00d7\u00d8\5\32\16\2\u00d8\u00e3\3\2\2\2\u00d9\u00da\f\4\2\2\u00da"+
+ "\u00e2\7\24\2\2\u00db\u00dc\f\3\2\2\u00dc\u00de\7\6\2\2\u00dd\u00df\5"+
+ "F$\2\u00de\u00dd\3\2\2\2\u00de\u00df\3\2\2\2\u00df\u00e0\3\2\2\2\u00e0"+
+ "\u00e2\7\7\2\2\u00e1\u00d9\3\2\2\2\u00e1\u00db\3\2\2\2\u00e2\u00e5\3\2"+
+ "\2\2\u00e3\u00e1\3\2\2\2\u00e3\u00e4\3\2\2\2\u00e4\31\3\2\2\2\u00e5\u00e3"+
+ "\3\2\2\2\u00e6\u00e7\b\16\1\2\u00e7\u00e8\7\b\2\2\u00e8\u00e9\5\32\16"+
+ "\2\u00e9\u00ea\7\t\2\2\u00ea\u00f6\3\2\2\2\u00eb\u00f6\7`\2\2\u00ec\u00ee"+
+ "\7_\2\2\u00ed\u00ef\7`\2\2\u00ee\u00ed\3\2\2\2\u00ee\u00ef\3\2\2\2\u00ef"+
+ "\u00f6\3\2\2\2\u00f0\u00f6\5\36\20\2\u00f1\u00f6\5\34\17\2\u00f2\u00f6"+
+ "\5$\23\2\u00f3\u00f6\5\"\22\2\u00f4\u00f6\7\3\2\2\u00f5\u00e6\3\2\2\2"+
+ "\u00f5\u00eb\3\2\2\2\u00f5\u00ec\3\2\2\2\u00f5\u00f0\3\2\2\2\u00f5\u00f1"+
+ "\3\2\2\2\u00f5\u00f2\3\2\2\2\u00f5\u00f3\3\2\2\2\u00f5\u00f4\3\2\2\2\u00f6"+
+ "\u0102\3\2\2\2\u00f7\u00f8\f\t\2\2\u00f8\u00fa\7\6\2\2\u00f9\u00fb\5F"+
+ "$\2\u00fa\u00f9\3\2\2\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc"+
+ "\u0101\7\7\2\2\u00fd\u00fe\f\b\2\2\u00fe\u00ff\7\b\2\2\u00ff\u0101\7\t"+
+ "\2\2\u0100\u00f7\3\2\2\2\u0100\u00fd\3\2\2\2\u0101\u0104\3\2\2\2\u0102"+
"\u0100\3\2\2\2\u0102\u0103\3\2\2\2\u0103\33\3\2\2\2\u0104\u0102\3\2\2"+
"\2\u0105\u0106\7S\2\2\u0106\u0107\7y\2\2\u0107\35\3\2\2\2\u0108\u010a"+
"\7S\2\2\u0109\u010b\7y\2\2\u010a\u0109\3\2\2\2\u010a\u010b\3\2\2\2\u010b"+
@@ -7713,52 +7647,50 @@ public class KickCParser extends Parser {
"\u030c\7b\2\2\u030cK\3\2\2\2\u030d\u030e\7\b\2\2\u030e\u0313\5N(\2\u030f"+
"\u0310\7\f\2\2\u0310\u0312\5N(\2\u0311\u030f\3\2\2\2\u0312\u0315\3\2\2"+
"\2\u0313\u0311\3\2\2\2\u0313\u0314\3\2\2\2\u0314\u0316\3\2\2\2\u0315\u0313"+
- "\3\2\2\2\u0316\u0317\7\t\2\2\u0317M\3\2\2\2\u0318\u0319\7Y\2\2\u0319\u0328"+
- "\7z\2\2\u031a\u031b\7Z\2\2\u031b\u0328\7y\2\2\u031c\u031d\7[\2\2\u031d"+
- "\u0328\7z\2\2\u031e\u031f\7\\\2\2\u031f\u0328\5F$\2\u0320\u0321\7]\2\2"+
- "\u0321\u0328\5F$\2\u0322\u0325\7+\2\2\u0323\u0326\78\2\2\u0324\u0326\5"+
- "F$\2\u0325\u0323\3\2\2\2\u0325\u0324\3\2\2\2\u0326\u0328\3\2\2\2\u0327"+
- "\u0318\3\2\2\2\u0327\u031a\3\2\2\2\u0327\u031c\3\2\2\2\u0327\u031e\3\2"+
- "\2\2\u0327\u0320\3\2\2\2\u0327\u0322\3\2\2\2\u0328O\3\2\2\2\u0329\u032b"+
- "\5R*\2\u032a\u0329\3\2\2\2\u032b\u032e\3\2\2\2\u032c\u032a\3\2\2\2\u032c"+
- "\u032d\3\2\2\2\u032dQ\3\2\2\2\u032e\u032c\3\2\2\2\u032f\u0333\5T+\2\u0330"+
- "\u0333\5V,\2\u0331\u0333\5X-\2\u0332\u032f\3\2\2\2\u0332\u0330\3\2\2\2"+
- "\u0332\u0331\3\2\2\2\u0333S\3\2\2\2\u0334\u0335\7\u009f\2\2\u0335\u0339"+
- "\7\u0082\2\2\u0336\u0337\7\u009e\2\2\u0337\u0339\7\u0082\2\2\u0338\u0334"+
- "\3\2\2\2\u0338\u0336\3\2\2\2\u0339U\3\2\2\2\u033a\u033c\7\u0080\2\2\u033b"+
- "\u033d\5Z.\2\u033c\u033b\3\2\2\2\u033c\u033d\3\2\2\2\u033dW\3\2\2\2\u033e"+
- "\u033f\7\177\2\2\u033f\u0344\5\\/\2\u0340\u0341\7\u0083\2\2\u0341\u0343"+
- "\5\\/\2\u0342\u0340\3\2\2\2\u0343\u0346\3\2\2\2\u0344\u0342\3\2\2\2\u0344"+
- "\u0345\3\2\2\2\u0345Y\3\2\2\2\u0346\u0344\3\2\2\2\u0347\u035f\5\\/\2\u0348"+
- "\u0349\7\u0081\2\2\u0349\u035f\5\\/\2\u034a\u034b\5\\/\2\u034b\u034c\7"+
- "\u0083\2\2\u034c\u034d\7\u009f\2\2\u034d\u035f\3\2\2\2\u034e\u034f\7\u0084"+
- "\2\2\u034f\u0350\5\\/\2\u0350\u0351\7\u0085\2\2\u0351\u0352\7\u0083\2"+
- "\2\u0352\u0353\7\u009f\2\2\u0353\u035f\3\2\2\2\u0354\u0355\7\u0084\2\2"+
- "\u0355\u0356\5\\/\2\u0356\u0357\7\u0083\2\2\u0357\u0358\7\u009f\2\2\u0358"+
- "\u0359\7\u0085\2\2\u0359\u035f\3\2\2\2\u035a\u035b\7\u0084\2\2\u035b\u035c"+
- "\5\\/\2\u035c\u035d\7\u0085\2\2\u035d\u035f\3\2\2\2\u035e\u0347\3\2\2"+
- "\2\u035e\u0348\3\2\2\2\u035e\u034a\3\2\2\2\u035e\u034e\3\2\2\2\u035e\u0354"+
- "\3\2\2\2\u035e\u035a\3\2\2\2\u035f[\3\2\2\2\u0360\u0361\b/\1\2\u0361\u0362"+
- "\7\u0086\2\2\u0362\u0363\5\\/\2\u0363\u0364\7\u0087\2\2\u0364\u036f\3"+
- "\2\2\2\u0365\u0366\t\t\2\2\u0366\u036f\5\\/\n\u0367\u036f\7\u009f\2\2"+
- "\u0368\u036f\7\u009d\2\2\u0369\u036a\7\u0091\2\2\u036a\u036b\7\u009f\2"+
- "\2\u036b\u036f\7\u0092\2\2\u036c\u036f\7\u0093\2\2\u036d\u036f\7\u009c"+
- "\2\2\u036e\u0360\3\2\2\2\u036e\u0365\3\2\2\2\u036e\u0367\3\2\2\2\u036e"+
- "\u0368\3\2\2\2\u036e\u0369\3\2\2\2\u036e\u036c\3\2\2\2\u036e\u036d\3\2"+
- "\2\2\u036f\u037e\3\2\2\2\u0370\u0371\f\f\2\2\u0371\u0372\7\u0088\2\2\u0372"+
- "\u037d\5\\/\r\u0373\u0374\f\13\2\2\u0374\u0375\t\n\2\2\u0375\u037d\5\\"+
- "/\f\u0376\u0377\f\t\2\2\u0377\u0378\t\13\2\2\u0378\u037d\5\\/\n\u0379"+
- "\u037a\f\b\2\2\u037a\u037b\t\f\2\2\u037b\u037d\5\\/\t\u037c\u0370\3\2"+
- "\2\2\u037c\u0373\3\2\2\2\u037c\u0376\3\2\2\2\u037c\u0379\3\2\2\2\u037d"+
- "\u0380\3\2\2\2\u037e\u037c\3\2\2\2\u037e\u037f\3\2\2\2\u037f]\3\2\2\2"+
- "\u0380\u037e\3\2\2\2Ygy\u0082\u008c\u0092\u009a\u00a1\u00aa\u00af\u00b5"+
- "\u00ba\u00bf\u00c6\u00cd\u00d2\u00de\u00e1\u00e3\u00ee\u00f5\u00fa\u0100"+
- "\u0102\u010a\u0110\u011c\u012a\u0130\u0136\u013c\u0141\u0145\u014e\u0155"+
- "\u015c\u0185\u01b1\u01b5\u01ba\u01c5\u01d9\u01e2\u01e8\u01ed\u01f4\u0201"+
- "\u0206\u0212\u0220\u0233\u023c\u0243\u0248\u024d\u024f\u0255\u025c\u0262"+
- "\u0265\u026d\u0270\u0273\u027d\u0289\u0291\u0297\u029b\u02b0\u02ba\u02be"+
- "\u02f0\u02fa\u02fc\u0304\u0309\u0313\u0325\u0327\u032c\u0332\u0338\u033c"+
- "\u0344\u035e\u036e\u037c\u037e";
+ "\3\2\2\2\u0316\u0317\7\t\2\2\u0317M\3\2\2\2\u0318\u0319\7Y\2\2\u0319\u0323"+
+ "\7z\2\2\u031a\u031b\7Z\2\2\u031b\u0323\7y\2\2\u031c\u031d\7[\2\2\u031d"+
+ "\u0323\7z\2\2\u031e\u031f\7\\\2\2\u031f\u0323\5F$\2\u0320\u0321\7]\2\2"+
+ "\u0321\u0323\5F$\2\u0322\u0318\3\2\2\2\u0322\u031a\3\2\2\2\u0322\u031c"+
+ "\3\2\2\2\u0322\u031e\3\2\2\2\u0322\u0320\3\2\2\2\u0323O\3\2\2\2\u0324"+
+ "\u0326\5R*\2\u0325\u0324\3\2\2\2\u0326\u0329\3\2\2\2\u0327\u0325\3\2\2"+
+ "\2\u0327\u0328\3\2\2\2\u0328Q\3\2\2\2\u0329\u0327\3\2\2\2\u032a\u032e"+
+ "\5T+\2\u032b\u032e\5V,\2\u032c\u032e\5X-\2\u032d\u032a\3\2\2\2\u032d\u032b"+
+ "\3\2\2\2\u032d\u032c\3\2\2\2\u032eS\3\2\2\2\u032f\u0330\7\u009f\2\2\u0330"+
+ "\u0334\7\u0082\2\2\u0331\u0332\7\u009e\2\2\u0332\u0334\7\u0082\2\2\u0333"+
+ "\u032f\3\2\2\2\u0333\u0331\3\2\2\2\u0334U\3\2\2\2\u0335\u0337\7\u0080"+
+ "\2\2\u0336\u0338\5Z.\2\u0337\u0336\3\2\2\2\u0337\u0338\3\2\2\2\u0338W"+
+ "\3\2\2\2\u0339\u033a\7\177\2\2\u033a\u033f\5\\/\2\u033b\u033c\7\u0083"+
+ "\2\2\u033c\u033e\5\\/\2\u033d\u033b\3\2\2\2\u033e\u0341\3\2\2\2\u033f"+
+ "\u033d\3\2\2\2\u033f\u0340\3\2\2\2\u0340Y\3\2\2\2\u0341\u033f\3\2\2\2"+
+ "\u0342\u035a\5\\/\2\u0343\u0344\7\u0081\2\2\u0344\u035a\5\\/\2\u0345\u0346"+
+ "\5\\/\2\u0346\u0347\7\u0083\2\2\u0347\u0348\7\u009f\2\2\u0348\u035a\3"+
+ "\2\2\2\u0349\u034a\7\u0084\2\2\u034a\u034b\5\\/\2\u034b\u034c\7\u0085"+
+ "\2\2\u034c\u034d\7\u0083\2\2\u034d\u034e\7\u009f\2\2\u034e\u035a\3\2\2"+
+ "\2\u034f\u0350\7\u0084\2\2\u0350\u0351\5\\/\2\u0351\u0352\7\u0083\2\2"+
+ "\u0352\u0353\7\u009f\2\2\u0353\u0354\7\u0085\2\2\u0354\u035a\3\2\2\2\u0355"+
+ "\u0356\7\u0084\2\2\u0356\u0357\5\\/\2\u0357\u0358\7\u0085\2\2\u0358\u035a"+
+ "\3\2\2\2\u0359\u0342\3\2\2\2\u0359\u0343\3\2\2\2\u0359\u0345\3\2\2\2\u0359"+
+ "\u0349\3\2\2\2\u0359\u034f\3\2\2\2\u0359\u0355\3\2\2\2\u035a[\3\2\2\2"+
+ "\u035b\u035c\b/\1\2\u035c\u035d\7\u0086\2\2\u035d\u035e\5\\/\2\u035e\u035f"+
+ "\7\u0087\2\2\u035f\u036a\3\2\2\2\u0360\u0361\t\t\2\2\u0361\u036a\5\\/"+
+ "\n\u0362\u036a\7\u009f\2\2\u0363\u036a\7\u009d\2\2\u0364\u0365\7\u0091"+
+ "\2\2\u0365\u0366\7\u009f\2\2\u0366\u036a\7\u0092\2\2\u0367\u036a\7\u0093"+
+ "\2\2\u0368\u036a\7\u009c\2\2\u0369\u035b\3\2\2\2\u0369\u0360\3\2\2\2\u0369"+
+ "\u0362\3\2\2\2\u0369\u0363\3\2\2\2\u0369\u0364\3\2\2\2\u0369\u0367\3\2"+
+ "\2\2\u0369\u0368\3\2\2\2\u036a\u0379\3\2\2\2\u036b\u036c\f\f\2\2\u036c"+
+ "\u036d\7\u0088\2\2\u036d\u0378\5\\/\r\u036e\u036f\f\13\2\2\u036f\u0370"+
+ "\t\n\2\2\u0370\u0378\5\\/\f\u0371\u0372\f\t\2\2\u0372\u0373\t\13\2\2\u0373"+
+ "\u0378\5\\/\n\u0374\u0375\f\b\2\2\u0375\u0376\t\f\2\2\u0376\u0378\5\\"+
+ "/\t\u0377\u036b\3\2\2\2\u0377\u036e\3\2\2\2\u0377\u0371\3\2\2\2\u0377"+
+ "\u0374\3\2\2\2\u0378\u037b\3\2\2\2\u0379\u0377\3\2\2\2\u0379\u037a\3\2"+
+ "\2\2\u037a]\3\2\2\2\u037b\u0379\3\2\2\2Xgy\u0082\u008c\u0092\u009a\u00a1"+
+ "\u00aa\u00af\u00b5\u00ba\u00bf\u00c6\u00cd\u00d2\u00de\u00e1\u00e3\u00ee"+
+ "\u00f5\u00fa\u0100\u0102\u010a\u0110\u011c\u012a\u0130\u0136\u013c\u0141"+
+ "\u0145\u014e\u0155\u015c\u0185\u01b1\u01b5\u01ba\u01c5\u01d9\u01e2\u01e8"+
+ "\u01ed\u01f4\u0201\u0206\u0212\u0220\u0233\u023c\u0243\u0248\u024d\u024f"+
+ "\u0255\u025c\u0262\u0265\u026d\u0270\u0273\u027d\u0289\u0291\u0297\u029b"+
+ "\u02b0\u02ba\u02be\u02f0\u02fa\u02fc\u0304\u0309\u0313\u0322\u0327\u032d"+
+ "\u0333\u0337\u033f\u0359\u0369\u0377\u0379";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java
index dd049a892..0b08d7e9a 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java
@@ -1,4 +1,4 @@
-// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2
+// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.8
package dk.camelot64.kickc.parser;
@@ -1465,18 +1465,6 @@ public class KickCParserBaseListener implements KickCParserListener {
* The default implementation does nothing.
*/
@Override public void exitAsmDirectiveCycles(KickCParser.AsmDirectiveCyclesContext ctx) { }
- /**
- * {@inheritDoc}
- *
- * The default implementation does nothing.
- */
- @Override public void enterAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx) { }
- /**
- * {@inheritDoc}
- *
- * The default implementation does nothing.
- */
- @Override public void exitAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx) { }
/**
* {@inheritDoc}
*
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java
index 7be1ae2f5..07e64edb3 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java
@@ -1,4 +1,4 @@
-// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2
+// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.8
package dk.camelot64.kickc.parser;
@@ -860,13 +860,6 @@ public class KickCParserBaseVisitor extends AbstractParseTreeVisitor imple
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitAsmDirectiveCycles(KickCParser.AsmDirectiveCyclesContext ctx) { return visitChildren(ctx); }
- /**
- * {@inheritDoc}
- *
- * The default implementation returns the result of calling
- * {@link #visitChildren} on {@code ctx}.
- */
- @Override public T visitAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java
index 185f06547..55d9949f3 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java
@@ -1,4 +1,4 @@
-// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2
+// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.8
package dk.camelot64.kickc.parser;
@@ -1407,18 +1407,6 @@ public interface KickCParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitAsmDirectiveCycles(KickCParser.AsmDirectiveCyclesContext ctx);
- /**
- * Enter a parse tree produced by the {@code asmDirectiveAddress}
- * labeled alternative in {@link KickCParser#asmDirective}.
- * @param ctx the parse tree
- */
- void enterAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx);
- /**
- * Exit a parse tree produced by the {@code asmDirectiveAddress}
- * labeled alternative in {@link KickCParser#asmDirective}.
- * @param ctx the parse tree
- */
- void exitAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx);
/**
* Enter a parse tree produced by {@link KickCParser#asmLines}.
* @param ctx the parse tree
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java
index 040afda76..d86fb058e 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java
@@ -1,4 +1,4 @@
-// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2
+// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.8
package dk.camelot64.kickc.parser;
@@ -832,13 +832,6 @@ public interface KickCParserVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitAsmDirectiveCycles(KickCParser.AsmDirectiveCyclesContext ctx);
- /**
- * Visit a parse tree produced by the {@code asmDirectiveAddress}
- * labeled alternative in {@link KickCParser#asmDirective}.
- * @param ctx the parse tree
- * @return the visitor result
- */
- T visitAsmDirectiveAddress(KickCParser.AsmDirectiveAddressContext ctx);
/**
* Visit a parse tree produced by {@link KickCParser#asmLines}.
* @param ctx the parse tree
diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java
index 4880af3ef..625403c88 100644
--- a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java
+++ b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java
@@ -82,7 +82,7 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor
* If the current scope is global the variable is added to the _init() scope.
*
* @return The new intermediate variable
@@ -451,10 +451,7 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor asmDirectives = this.visitAsmDirectives(ctx.asmDirectives());
for(AsmDirective asmDirective : asmDirectives) {
- if(asmDirective instanceof AsmDirectiveLocation) {
- statementKickAsm.setLocation(((AsmDirectiveLocation) asmDirective).getAddress());
- throw new RuntimeException("KickAsm pc directive no longer supported!");
- } else if(asmDirective instanceof AsmDirectiveBytes) {
+ if(asmDirective instanceof AsmDirectiveBytes) {
statementKickAsm.setBytes(((AsmDirectiveBytes) asmDirective).getBytes());
} else if(asmDirective instanceof AsmDirectiveCycles) {
statementKickAsm.setCycles(((AsmDirectiveCycles) asmDirective).getCycles());
@@ -489,36 +486,6 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor scopeConstants = scope.getAllConstants(false);
@@ -558,7 +542,7 @@ public class Pass4CodeGeneration {
continue;
}
// Skip if address is absolute
- if(constantVar.getMemoryAddress()!=null)
+ if(constantVar.getMemoryAddress() != null)
continue;
// Set segment
setCurrentSegment(constantVar.getDataSegment(), asm);
@@ -941,9 +925,7 @@ public class Pass4CodeGeneration {
}
} else if(statement instanceof StatementKickAsm) {
StatementKickAsm statementKasm = (StatementKickAsm) statement;
- if(statementKasm.getLocation() == null) {
- addKickAsm(asm, statementKasm);
- }
+ addKickAsm(asm, statementKasm);
if(statementKasm.getDeclaredClobber() != null) {
asm.getCurrentChunk().setClobberOverwrite(statementKasm.getDeclaredClobber());
}
diff --git a/src/test/kc/test-kasm.c b/src/test/kc/test-kasm.c
index 91737dec6..986b64b0d 100644
--- a/src/test/kc/test-kasm.c
+++ b/src/test/kc/test-kasm.c
@@ -2,12 +2,14 @@
void main() {
while(true) {
+ // KickAsm inline code
kickasm {{
inc $d020
}}
}
}
-kickasm {{
+// KickAsm data initializer
+export char A[] = kickasm {{
.byte 1, 2, 3
}}
\ No newline at end of file
diff --git a/src/test/ref/examples/krillload/krillload.asm b/src/test/ref/examples/krillload/krillload.asm
new file mode 100644
index 000000000..90e09e687
--- /dev/null
+++ b/src/test/ref/examples/krillload/krillload.asm
@@ -0,0 +1,137 @@
+// Tests Krill Loader
+// Load a file to memory using the Krill loader
+// The krillload.ld link file creates a D64 disk image containing the executable and the sprite.
+// To execute the program succesfully you must mount the D64 disk image and execute the krillload.PRG program
+ // Create a D64 disk containing the program and a sprite file
+.disk [filename="krillload.d64", name="DISK", id=1] {
+ [name="KRILLLOAD", type="prg", segments="Program"],
+ [name="SPRITE", type="prg", segments="Sprite"]
+}
+.segmentdef Program [segments="Basic, Code, Data"]
+.segmentdef Basic [start=$0801]
+.segmentdef Code [start=$080d]
+.segmentdef Data [startAfter="Code"]
+.segmentdef Sprite
+.segment Basic
+:BasicUpstart(main)
+.segment Code
+ .const KRILL_OK = 0
+ // The offset of the sprite pointers from the screen start address
+ .const SPRITE_PTRS = $3f8
+ .const GREEN = 5
+ .const OFFSET_STRUCT_MOS6569_VICII_BORDER_COLOR = $20
+ .const OFFSET_STRUCT_MOS6569_VICII_SPRITES_ENABLE = $15
+ .label SPRITES_XPOS = $d000
+ .label SPRITES_YPOS = $d001
+ .label SPRITES_COLOR = $d027
+ // The VIC-II MOS 6567/6569
+ .label VICII = $d000
+ .label SCREEN = $400
+ .label SPRITES_PTR = SCREEN+SPRITE_PTRS
+.segment Code
+main: {
+ .const toSpritePtr1_return = $ff&SPRITE/$40
+ // krill_install()
+ jsr krill_install
+ // status = krill_install()
+ // if(status!=KRILL_OK)
+ cmp #KRILL_OK
+ beq __b1
+ // VICII->BORDER_COLOR = 0x02
+ lda #2
+ sta VICII+OFFSET_STRUCT_MOS6569_VICII_BORDER_COLOR
+ // }
+ rts
+ __b1:
+ // krill_loadraw("sprite")
+ jsr krill_loadraw
+ // status = krill_loadraw("sprite")
+ // if(status!=KRILL_OK)
+ cmp #KRILL_OK
+ beq __b2
+ // VICII->BORDER_COLOR = 0x02
+ lda #2
+ sta VICII+OFFSET_STRUCT_MOS6569_VICII_BORDER_COLOR
+ rts
+ __b2:
+ // VICII->SPRITES_ENABLE = %00000001
+ // Show the loaded sprite on screen
+ lda #1
+ sta VICII+OFFSET_STRUCT_MOS6569_VICII_SPRITES_ENABLE
+ // SPRITES_PTR[0] = toSpritePtr(SPRITE)
+ lda #toSpritePtr1_return
+ sta SPRITES_PTR
+ // SPRITES_COLOR[0] = GREEN
+ lda #GREEN
+ sta SPRITES_COLOR
+ // SPRITES_XPOS[0] = 0x15
+ lda #$15
+ sta SPRITES_XPOS
+ // SPRITES_YPOS[0] = 0x33
+ lda #$33
+ sta SPRITES_YPOS
+ rts
+ .segment Data
+ .encoding "petscii_mixed"
+ filename: .text "sprite"
+ .byte 0
+}
+.segment Code
+// Load a file from the active drive without decompression.
+// While loading using filenames with wildcards ("?" and "*") is not possible,
+// subsequent files following the previously-loaded file can be loaded via a
+// zero-length filename
+// - filename - The name of the file to load (zero-terminated in petscii encoding)
+// Returns the status of the load
+krill_loadraw: {
+ .label status = $ff
+ .label fname = $fe
+ // *fname = filename
+ lda #main.filename
+ sta fname+1
+ // asm
+ ldx fname
+ tay
+ jsr KRILL_LOADER
+ sta status
+ // return *status;
+ // }
+ rts
+}
+// Install drive-side code portion(s) must be installed in the active drive.
+// Before the loader can operate, its drive-side code portion(s) must be installed in the drive(s).
+// The drive-side portion remains resident in the drive. After successful
+// installation, the install routine is not needed any more and may be overwritten.
+// The KERNAL ROM may be disabled and zeropage variables clobbered.
+// Returns the status of the installation
+krill_install: {
+ .label status = $ff
+ // asm
+ jsr KRILL_INSTALL
+ sta status
+ // return *status;
+ // }
+ rts
+}
+.segment Data
+.pc = $3000 "KRILL_LOADER"
+// The Krill loader routine that can load files.
+KRILL_LOADER:
+.import c64 "loader-c64.prg"
+
+.pc = $3400 "KRILL_INSTALL"
+// The Krill Install routine that can install the drive-side code
+KRILL_INSTALL:
+.import c64 "install-c64.prg"
+
+.segment Sprite
+.pc = $2040 "SPRITE"
+// The sprite data
+SPRITE:
+.var pic = LoadPicture("sprite.png", List().add($000000, $ffffff))
+ .for (var y=0; y<21; y++)
+ .for (var x=0;x<3; x++)
+ .byte pic.getSinglecolorByte(x,y)
+