# HG changeset patch # User Raimund Renkert # Date 1477302737 -7200 # Node ID 7683c4162746c8bbc2ae99d8e3289511d0467ed1 # Parent 46df70a277671babefec31a82c6b94430db128b3 Updated importer. * Fixed in grammar * More reporting * Fixed unit test diff -r 46df70a27767 -r 7683c4162746 src/main/antlr4/de/intevation/lada/importer/laf/Laf.g4 --- a/src/main/antlr4/de/intevation/lada/importer/laf/Laf.g4 Mon Oct 24 11:47:55 2016 +0200 +++ b/src/main/antlr4/de/intevation/lada/importer/laf/Laf.g4 Mon Oct 24 11:52:17 2016 +0200 @@ -32,6 +32,7 @@ | testdaten | szenario | sek_datenbasis + | sek_datenbasis_s | us | ph | pg @@ -65,7 +66,7 @@ | bearbeitungsstatus | pep_flag | erfassung_abgeschlossen - | messwert + | mw | mess_kommentar ; @@ -222,7 +223,7 @@ u_koordinaten_s : U_KOORDINATEN_S STRING (' ')* (STRING_ESC | STRING) (' ')* (STRING_ESC | STRING) ; // SI2 C22 C22 u_orts_zusatzcode : U_ORTS_ZUSATZCODE (STRING_ESC | STRING) ; // C8 u_orts_zusatztext : U_ORTS_ZUSATZTEXT (STRING_ESC | STRING) ; // MC50 -u_nuts_code : U_NUTS_CODE STRING ; // I10 +u_nuts_code : U_NUTS_CODE (STRING_ESC | STRING) ; // C10 p_herkunftsland_lang : P_HERKUNFTSLAND_LANG (STRING_ESC | STRING) ; //C50* p_herkunftsland_kurz : P_HERKUNFTSLAND_KURZ (STRING_ESC | STRING) ; // C5 p_herkunftsland_s : P_HERKUNFTSLAND_S STRING ; // SI8 @@ -233,7 +234,7 @@ p_koordinaten_s : P_KOORDINATEN_S STRING (' ')* (STRING_ESC | STRING) (' ')* (STRING_ESC | STRING) ; // SI2 C22 C22 p_orts_zusatzcode : P_ORTS_ZUSATZCODE (STRING_ESC | STRING) ; // C8 p_orts_zusatztext : P_ORTS_ZUSATZTEXT (STRING_ESC | STRING) ; // MC50 -p_nuts_code : P_NUTS_CODE STRING ; // I10 +p_nuts_code : P_NUTS_CODE (STRING_ESC | STRING) ; // C10 p_site_id : P_SITE_ID (STRING_ESC | STRING) ; // C8 p_site_name : P_SITE_NAME (STRING_ESC | STRING) ; // C50* p_hoehe_nn : P_HOEHE_NN STRING ; // F10 diff -r 46df70a27767 -r 7683c4162746 src/main/java/de/intevation/lada/importer/laf/LafImporter.java --- a/src/main/java/de/intevation/lada/importer/laf/LafImporter.java Mon Oct 24 11:47:55 2016 +0200 +++ b/src/main/java/de/intevation/lada/importer/laf/LafImporter.java Mon Oct 24 11:52:17 2016 +0200 @@ -4,9 +4,11 @@ import java.io.IOException; import java.io.InputStream; import java.nio.charset.StandardCharsets; +import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; +import java.util.Map.Entry; import javax.inject.Inject; @@ -50,10 +52,34 @@ LafObjectListener listener = new LafObjectListener(); ParseTreeWalker walker = new ParseTreeWalker(); walker.walk(listener, tree); - logger.debug("Parsed Proben: " + listener.getData().count()); - errors.put("parser", errorListener.getErrors()); + if (!listener.hasUebertragungsformat() || + !listener.hasVersion()) { + List items = new ArrayList(); + items.add(new ReportItem("missing header", "format", 673)); + errors.put("parser", items); + return; + } + if (!errorListener.getErrors().isEmpty()) { + errors.put("parser", errorListener.getErrors()); + } errors.putAll(listener.getErrors()); + mapper.setUserInfo(userInfo); mapper.mapObjects(listener.getData()); + logger.debug("listener errors: " + listener.getErrors().size()); + logger.debug("import mapper errors: " + mapper.getErrors().size()); + for (Entry> entry : mapper.getErrors().entrySet()) { + logger.debug("add for key: "+ entry.getKey()); + if (errors.containsKey(entry.getKey())) { + errors.get(entry.getKey()).addAll(entry.getValue()); + logger.debug("done"); + } + else { + errors.put(entry.getKey(), entry.getValue()); + logger.debug("done2"); + } + } + warnings.putAll(mapper.getWarnings()); + logger.debug("import warnings: " + warnings.size()); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); @@ -66,12 +92,12 @@ } @Override - public Map> getWarnings() { + public Map> getErrors() { return this.errors; } @Override - public Map> getErrors() { + public Map> getWarnings() { return this.warnings; } } diff -r 46df70a27767 -r 7683c4162746 src/main/java/de/intevation/lada/importer/laf/LafObjectListener.java --- a/src/main/java/de/intevation/lada/importer/laf/LafObjectListener.java Mon Oct 24 11:47:55 2016 +0200 +++ b/src/main/java/de/intevation/lada/importer/laf/LafObjectListener.java Mon Oct 24 11:52:17 2016 +0200 @@ -19,6 +19,14 @@ Map> errors; List currentErrors; + private boolean hasDatenbasis = false; + private boolean hasMessprogramm = false; + private boolean hasUmwelt = false; + private boolean hasZeitbasis = false; + private boolean hasUebertragungsformat = false; + private boolean hasVersion = false; + + public LafObjectListener() { data = new LafRawData(); errors = new HashMap>(); @@ -37,12 +45,26 @@ } /** + * @return the hasUebertragungsformat + */ + public boolean hasUebertragungsformat() { + return hasUebertragungsformat; + } + + /** + * @return the hasVersion + */ + public boolean hasVersion() { + return hasVersion; + } + + /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterProbendatei(LafParser.ProbendateiContext ctx) { - System.out.println("entering probe-datei"); + System.out.println("start building raw data"); } /** @@ -51,6 +73,8 @@ *

The default implementation does nothing.

*/ @Override public void exitProbendatei(LafParser.ProbendateiContext ctx) { + System.out.println("finished."); + System.out.println("build " + data.count() + " proben."); } /** @@ -61,12 +85,19 @@ @Override public void enterEnd(LafParser.EndContext ctx) { if (currentProbe != null) { data.addProbe(currentProbe); - String identifier = currentProbe.getAttributes().get("PROBE_ID"); - identifier = identifier == null ? currentProbe.getAttributes().get("PROBEN_NR") : null; - identifier = identifier == null ? currentProbe.getAttributes().get("HAUPTPROBEN_NR") : "not identified"; - errors.put(identifier, currentErrors); + if (!currentErrors.isEmpty()) { + String identifier = currentProbe.getAttributes().get("PROBE_ID"); + identifier = identifier == null ? currentProbe.getAttributes().get("PROBEN_NR") : null; + identifier = identifier == null ? currentProbe.getAttributes().get("HAUPTPROBEN_NR") : "not identified"; + System.out.println("exit: " + identifier); + errors.put(identifier, currentErrors); + } currentErrors.clear(); currentProbe = null; + hasDatenbasis = false; + hasMessprogramm = false; + hasUmwelt = false; + hasZeitbasis = false; } } @@ -90,12 +121,23 @@ */ @Override public void exitProbe(LafParser.ProbeContext ctx) { data.addProbe(currentProbe); - String identifier = currentProbe.getAttributes().get("PROBE_ID"); - identifier = identifier == null ? currentProbe.getAttributes().get("PROBEN_NR") : null; - identifier = identifier == null ? currentProbe.getAttributes().get("HAUPTPROBEN_NR") : "not identified"; - errors.put(identifier, currentErrors); + if (!currentErrors.isEmpty()) { + for (ReportItem item : currentErrors) { + System.out.println("item: " + item.getKey()); + } + String identifier = currentProbe.getAttributes().get("PROBE_ID"); + identifier = identifier == null ? currentProbe.getAttributes().get("PROBEN_NR") : null; + identifier = identifier == null ? currentProbe.getAttributes().get("HAUPTPROBEN_NR") : null; + identifier = identifier == null ? "not identified" : identifier; + System.out.println("exit probe: " + identifier); + errors.put(identifier, currentErrors); + } currentErrors.clear(); currentProbe = null; + hasDatenbasis = false; + hasMessprogramm = false; + hasUmwelt = false; + hasZeitbasis = false; } /** @@ -286,7 +328,7 @@ *

The default implementation does nothing.

*/ @Override public void enterUebertragungsformat(LafParser.UebertragungsformatContext ctx) { - System.out.println(ctx.getChild(0) + ": " + ctx.getChild(1)); + hasUebertragungsformat = true; } /** @@ -295,7 +337,7 @@ *

The default implementation does nothing.

*/ @Override public void enterVersion(LafParser.VersionContext ctx) { - System.out.println(ctx.getChild(0) + ": " + ctx.getChild(1)); + hasVersion = true; } /** @@ -304,6 +346,9 @@ *

The default implementation does nothing.

*/ @Override public void enterDatenbasis(LafParser.DatenbasisContext ctx) { + if (this.hasDatenbasis) { + return; + } String value = ctx.getChild(1).toString(); // Trim double qoutes. value = value.replaceAll("\"", ""); @@ -316,7 +361,7 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); + this.hasDatenbasis = true; } /** @@ -325,6 +370,9 @@ *

The default implementation does nothing.

*/ @Override public void enterDatenbasis_s(LafParser.Datenbasis_sContext ctx) { + if (this.hasDatenbasis) { + return; + } String value = ctx.getChild(1).toString(); value = value.replaceAll("\"", ""); if (!value.matches(LafDataTypes.SI2)) { @@ -336,7 +384,7 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); + this.hasDatenbasis = true; } /** @@ -356,7 +404,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -376,7 +423,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -396,7 +442,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -416,7 +461,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -436,7 +480,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -456,7 +499,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -476,7 +518,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -496,7 +537,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -519,7 +559,6 @@ currentMessung = data.new Messung(); } currentMessung.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -539,7 +578,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -559,7 +597,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -582,7 +619,6 @@ currentMessung = data.new Messung(); } currentMessung.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -591,6 +627,9 @@ *

The default implementation does nothing.

*/ @Override public void enterMessprogramm_c(LafParser.Messprogramm_cContext ctx) { + if (this.hasMessprogramm) { + return; + } String value = ctx.getChild(1).toString(); value = value.replaceAll("\"", ""); if (!value.matches(LafDataTypes.C_STAR)) { @@ -602,7 +641,7 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); + this.hasMessprogramm = true; } /** @@ -611,6 +650,9 @@ *

The default implementation does nothing.

*/ @Override public void enterMessprogramm_s(LafParser.Messprogramm_sContext ctx) { + if (this.hasMessprogramm) { + return; + } String value = ctx.getChild(1).toString(); value = value.replaceAll("\"", ""); if (!value.matches(LafDataTypes.SC1)) { @@ -622,7 +664,7 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); + this.hasMessprogramm = true; } /** @@ -642,7 +684,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -662,7 +703,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -682,7 +722,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -691,6 +730,9 @@ *

The default implementation does nothing.

*/ @Override public void enterZeitbasis(LafParser.ZeitbasisContext ctx) { + if (this.hasZeitbasis) { + return; + } String value = ctx.getChild(1).toString(); value = value.replaceAll("\"", ""); if (!value.matches(LafDataTypes.C_STAR)) { @@ -702,7 +744,7 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); + this.hasZeitbasis = true; } /** @@ -711,6 +753,9 @@ *

The default implementation does nothing.

*/ @Override public void enterZeitbasis_s(LafParser.Zeitbasis_sContext ctx) { + if (this.hasZeitbasis) { + return; + } String value = ctx.getChild(1).toString(); value = value.replaceAll("\"", ""); if (!value.matches(LafDataTypes.SI1)) { @@ -722,7 +767,7 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); + this.hasZeitbasis = true; } /** @@ -752,7 +797,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), date + ' ' + time); - System.out.println(ctx.getChild(0) + ": " + date + ' ' + time); } /** @@ -782,7 +826,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), date + ' ' + time); - System.out.println(ctx.getChild(0) + ": " + date + ' ' + time); } /** @@ -812,7 +855,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), date + ' ' + time); - System.out.println(ctx.getChild(0) + ": " + date + ' ' + time); } /** @@ -842,7 +884,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), date + ' ' + time); - System.out.println(ctx.getChild(0) + ": " + date + ' ' + time); } /** @@ -872,7 +913,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), date + ' ' + time); - System.out.println(ctx.getChild(0) + ": " + date + ' ' + time); } /** @@ -881,6 +921,9 @@ *

The default implementation does nothing.

*/ @Override public void enterUmweltbereich_c(LafParser.Umweltbereich_cContext ctx) { + if (this.hasUmwelt) { + return; + } String value = ctx.getChild(1).toString(); value = value.replaceAll("\"", ""); if (!value.matches(LafDataTypes.C_STAR)) { @@ -892,7 +935,7 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); + this.hasUmwelt = true; } /** @@ -901,6 +944,9 @@ *

The default implementation does nothing.

*/ @Override public void enterUmweltbereich_s(LafParser.Umweltbereich_sContext ctx) { + if (this.hasUmwelt) { + return; + } String value = ctx.getChild(1).toString(); value = value.replaceAll("\"", ""); if (!value.matches(LafDataTypes.SC3)) { @@ -912,7 +958,7 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); + this.hasUmwelt = true; } /** @@ -932,7 +978,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -952,7 +997,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -972,7 +1016,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1002,7 +1045,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), date + ' ' + time); - System.out.println(ctx.getChild(0) + ": " + date + ' ' + time); } /** @@ -1022,7 +1064,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1042,7 +1083,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1062,7 +1102,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1082,7 +1121,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1103,7 +1141,6 @@ } // TODO: Add to "ursprungsort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1124,7 +1161,6 @@ } // TODO: Add to "ursprungsort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1145,7 +1181,6 @@ } // TODO: Add to "ursprungsort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1166,7 +1201,6 @@ } // TODO: Add to "ursprungsort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1187,7 +1221,6 @@ } // TODO: Add to "ursprungsort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1208,7 +1241,6 @@ } // TODO: Add to "ursprungsort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1249,7 +1281,6 @@ } // TODO: Add to "ursprungsort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + art + " " + koord1 + " " + koord2); } /** @@ -1290,7 +1321,6 @@ } // TODO: Add to "ursprungsort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + art + " " + koord1 + " " + koord2); } /** @@ -1311,7 +1341,6 @@ } // TODO: Add to "ursprungsort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1332,7 +1361,6 @@ } // TODO: Add to "ursprungsort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1341,10 +1369,9 @@ *

The default implementation does nothing.

*/ @Override public void enterU_nuts_code(LafParser.U_nuts_codeContext ctx) { - System.out.println(ctx.exception.getMessage()); String value = ctx.getChild(1).toString(); value = value.replaceAll("\"", ""); - if (!value.matches(LafDataTypes.I10)) { + if (!value.matches(LafDataTypes.C10)) { ReportItem err = new ReportItem(); err.setKey(ctx.getChild(0).toString()); err.setValue(value); @@ -1354,7 +1381,6 @@ } // TODO: Add to "ursprungsort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1375,7 +1401,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1396,7 +1421,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1417,7 +1441,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1438,7 +1461,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1459,7 +1481,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1480,7 +1501,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1521,7 +1541,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + art + " " + koord1 + " " + koord2); } /** @@ -1562,7 +1581,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + art + " " + koord1 + " " + koord2); } /** @@ -1583,7 +1601,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1604,7 +1621,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1615,7 +1631,7 @@ @Override public void enterP_nuts_code(LafParser.P_nuts_codeContext ctx) { String value = ctx.getChild(1).toString(); value = value.replaceAll("\"", ""); - if (!value.matches(LafDataTypes.I10)) { + if (!value.matches(LafDataTypes.C10)) { ReportItem err = new ReportItem(); err.setKey(ctx.getChild(0).toString()); err.setValue(value); @@ -1625,7 +1641,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1646,7 +1661,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1667,7 +1681,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1679,7 +1692,6 @@ String value = ctx.getChild(1).toString(); value = value.replaceAll("\"", ""); if (!value.matches(LafDataTypes.F10)) { - System.out.println("F10 does not match in hoehe_nn"); ReportItem err = new ReportItem(); err.setKey(ctx.getChild(0).toString()); err.setValue(value); @@ -1689,7 +1701,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1701,7 +1712,6 @@ String value = ctx.getChild(1).toString(); value = value.replaceAll("\"", ""); if (!value.matches(LafDataTypes.F10)) { - System.out.println("F10 does not match in hoehe_land"); ReportItem err = new ReportItem(); err.setKey(ctx.getChild(0).toString()); err.setValue(value); @@ -1711,7 +1721,6 @@ } // TODO: Add to "entnahmeort" //currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1731,7 +1740,6 @@ return; } currentProbe.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1764,7 +1772,6 @@ currentMessung = data.new Messung(); } currentMessung.addAttribute(ctx.getChild(0).toString().toUpperCase(), date + ' ' + time); - System.out.println(ctx.getChild(0) + ": " + date + ' ' + time); } /** @@ -1787,7 +1794,6 @@ currentMessung = data.new Messung(); } currentMessung.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1810,7 +1816,6 @@ currentMessung = data.new Messung(); } currentMessung.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1833,7 +1838,6 @@ currentMessung = data.new Messung(); } currentMessung.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1856,7 +1860,6 @@ currentMessung = data.new Messung(); } currentMessung.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1879,7 +1882,6 @@ currentMessung = data.new Messung(); } currentMessung.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1902,7 +1904,6 @@ currentMessung = data.new Messung(); } currentMessung.addAttribute(ctx.getChild(0).toString().toUpperCase(), value); - System.out.println(ctx.getChild(0) + ": " + value); } /** @@ -1958,7 +1959,6 @@ zusatzwert.put("EINHEIT", einheit); zusatzwert.put("MESSFEHLER", fehler); currentProbe.addZusatzwert(zusatzwert); - System.out.println("PZS: " + groesse + " MW: " + wert); } /** @@ -2014,7 +2014,6 @@ zusatzwert.put("EINHEIT_ID", einheit); zusatzwert.put("MESSFEHLER", fehler); currentProbe.addZusatzwert(zusatzwert); - System.out.println("PZS: " + groesse + " MW: " + wert); } /** @@ -2033,7 +2032,6 @@ String groesse = children.get(1); groesse = groesse.replaceAll("\"", ""); if (!groesse.matches(LafDataTypes.C_STAR)) { - System.out.println("mw - groesse: " + groesse); ReportItem err = new ReportItem(); err.setKey(ctx.getChild(0).toString()); err.setValue(groesse); @@ -2043,9 +2041,7 @@ } String wert = children.get(2); wert = wert.replaceAll("\"", ""); - System.out.println(wert); if (!wert.matches(LafDataTypes.F12)) { - System.out.println("mw: wert"); ReportItem err = new ReportItem(); err.setKey(ctx.getChild(0).toString()); err.setValue(wert); @@ -2056,7 +2052,6 @@ String einheit = children.get(3); einheit = einheit.replaceAll("\"", ""); if (!einheit.matches(LafDataTypes.C9)) { - System.out.println("mw: einheit"); ReportItem err = new ReportItem(); err.setKey(ctx.getChild(0).toString()); err.setValue(einheit); @@ -2065,11 +2060,10 @@ return; } String fehler = null; - if (ctx.getChildCount() >= 8) { + if (ctx.getChildCount() >= 5) { fehler = children.get(4); fehler = fehler.replaceAll("\"", ""); if (!fehler.matches(LafDataTypes.F9)) { - System.out.println("mw: fehler"); ReportItem err = new ReportItem(); err.setKey(ctx.getChild(0).toString()); err.setValue(fehler); @@ -2087,7 +2081,6 @@ currentMessung = data.new Messung(); } currentMessung.addMesswert(messwert); - System.out.println("GROESSE: " + groesse + " MW: " + wert); } /** @@ -2155,7 +2148,6 @@ currentMessung = data.new Messung(); } currentMessung.addMesswert(messwert); - System.out.println("GROESSE: " + groesse + " MW: " + wert); } /** @@ -2224,7 +2216,6 @@ currentMessung = data.new Messung(); } currentMessung.addMesswert(messwert); - System.out.println("GROESSE: " + groesse + " MW: " + wert); } /** @@ -2293,7 +2284,6 @@ currentMessung = data.new Messung(); } currentMessung.addMesswert(messwert); - System.out.println("GROESSE: " + groesse + " MW: " + wert); } /** @@ -2303,7 +2293,72 @@ */ @Override public void enterMesswert_nwg(LafParser.Messwert_nwgContext ctx) { // C50* f12 c9 f9** f12 - // TODO + List children = new ArrayList(); + for (int i = 0; i < ctx.getChildCount(); i++) { + if (!ctx.getChild(i).toString().startsWith(" ")) { + children.add(ctx.getChild(i).toString()); + } + } + String groesse = children.get(1); + groesse = groesse.replaceAll("\"", ""); + if (!groesse.matches(LafDataTypes.C_STAR)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(groesse); + err.setCode(670); + currentErrors.add(err);; + return; + } + String wert = children.get(2); + wert = wert.replaceAll("\"", ""); + if (!wert.matches(LafDataTypes.F12)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(wert); + err.setCode(670); + currentErrors.add(err);; + return; + } + String einheit = children.get(3); + einheit = einheit.replaceAll("\"", ""); + if (!einheit.matches(LafDataTypes.C9)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(einheit); + err.setCode(670); + currentErrors.add(err);; + return; + } + String fehler = children.get(4); + fehler = fehler.replaceAll("\"", ""); + if (!fehler.matches(LafDataTypes.F9)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(fehler); + err.setCode(670); + currentErrors.add(err);; + return; + } + String nwg = children.get(5); + nwg = nwg.replaceAll("\"", ""); + if (!nwg.matches(LafDataTypes.F12)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(nwg); + err.setCode(670); + currentErrors.add(err);; + return; + } + Map messwert = new HashMap(); + messwert.put("MESSGROESSE", groesse); + messwert.put("MESSWERT", wert); + messwert.put("MEH", einheit); + messwert.put("MESSFEHLER", fehler); + messwert.put("NWG", nwg); + if (currentMessung == null) { + currentMessung = data.new Messung(); + } + currentMessung.addMesswert(messwert); } /** @@ -2312,7 +2367,73 @@ *

The default implementation does nothing.

*/ @Override public void enterMesswert_nwg_s(LafParser.Messwert_nwg_sContext ctx) { - // TODO + List children = new ArrayList(); + for (int i = 0; i < ctx.getChildCount(); i++) { + if (!ctx.getChild(i).toString().startsWith(" ")) { + children.add(ctx.getChild(i).toString()); + } + } + String groesse = children.get(1); + groesse = groesse.replaceAll("\"", ""); + if (!groesse.matches(LafDataTypes.SI8)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(groesse); + err.setCode(670); + currentErrors.add(err);; + return; + } + String wert = children.get(2); + wert = wert.replaceAll("\"", ""); + if (!wert.matches(LafDataTypes.F12)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(wert); + err.setCode(670); + currentErrors.add(err);; + return; + } + String einheit = children.get(3); + einheit = einheit.replaceAll("\"", ""); + if (!einheit.matches(LafDataTypes.SI3)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(einheit); + err.setCode(670); + currentErrors.add(err);; + return; + } + String fehler = children.get(4); + fehler = fehler.replaceAll("\"", ""); + if (!fehler.matches(LafDataTypes.F9)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(fehler); + err.setCode(670); + currentErrors.add(err);; + return; + } + String nwg = children.get(5); + nwg = nwg.replaceAll("\"", ""); + if (!nwg.matches(LafDataTypes.F12)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(nwg); + err.setCode(670); + currentErrors.add(err);; + return; + } + // TODO: handle all values + Map messwert = new HashMap(); + messwert.put("MESSGROESSE_ID", groesse); + messwert.put("MESSWERT", wert); + messwert.put("MEH_ID", einheit); + messwert.put("MESSFEHLER", fehler); + messwert.put("NWG", nwg); + if (currentMessung == null) { + currentMessung = data.new Messung(); + } + currentMessung.addMesswert(messwert); } /** @@ -2321,7 +2442,73 @@ *

The default implementation does nothing.

*/ @Override public void enterMesswert_nwg_i(LafParser.Messwert_nwg_iContext ctx) { - // TODO + List children = new ArrayList(); + for (int i = 0; i < ctx.getChildCount(); i++) { + if (!ctx.getChild(i).toString().startsWith(" ")) { + children.add(ctx.getChild(i).toString()); + } + } + String groesse = children.get(1); + groesse = groesse.replaceAll("\"", ""); + if (!groesse.matches(LafDataTypes.C_STAR)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(groesse); + err.setCode(670); + currentErrors.add(err);; + return; + } + String wert = children.get(2); + wert = wert.replaceAll("\"", ""); + if (!wert.matches(LafDataTypes.F12)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(wert); + err.setCode(670); + currentErrors.add(err);; + return; + } + String einheit = children.get(3); + einheit = einheit.replaceAll("\"", ""); + if (!einheit.matches(LafDataTypes.C9)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(einheit); + err.setCode(670); + currentErrors.add(err);; + return; + } + String fehler = children.get(4); + fehler = fehler.replaceAll("\"", ""); + if (!fehler.matches(LafDataTypes.F9)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(fehler); + err.setCode(670); + currentErrors.add(err);; + return; + } + String nwg = children.get(5); + nwg = nwg.replaceAll("\"", ""); + if (!nwg.matches(LafDataTypes.F12)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(nwg); + err.setCode(670); + currentErrors.add(err);; + return; + } + // TODO: handle all values + Map messwert = new HashMap(); + messwert.put("MESSGROESSE", groesse); + messwert.put("MESSWERT", wert); + messwert.put("MEH", einheit); + messwert.put("MESSFEHLER", fehler); + messwert.put("NWG", nwg); + if (currentMessung == null) { + currentMessung = data.new Messung(); + } + currentMessung.addMesswert(messwert); } /** @@ -2331,6 +2518,84 @@ */ @Override public void enterMesswert_nwg_g(LafParser.Messwert_nwg_gContext ctx) { // TODO + List children = new ArrayList(); + for (int i = 0; i < ctx.getChildCount(); i++) { + if (!ctx.getChild(i).toString().startsWith(" ")) { + children.add(ctx.getChild(i).toString()); + } + } + String groesse = children.get(1); + groesse = groesse.replaceAll("\"", ""); + if (!groesse.matches(LafDataTypes.C_STAR)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(groesse); + err.setCode(670); + currentErrors.add(err);; + return; + } + String wert = children.get(2); + wert = wert.replaceAll("\"", ""); + if (!wert.matches(LafDataTypes.F12)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(wert); + err.setCode(670); + currentErrors.add(err);; + return; + } + String einheit = children.get(3); + einheit = einheit.replaceAll("\"", ""); + if (!einheit.matches(LafDataTypes.C9)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(einheit); + err.setCode(670); + currentErrors.add(err);; + return; + } + String fehler = children.get(4); + fehler = fehler.replaceAll("\"", ""); + if (!fehler.matches(LafDataTypes.F9)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(fehler); + err.setCode(670); + currentErrors.add(err);; + return; + } + String nwg = children.get(5); + nwg = nwg.replaceAll("\"", ""); + if (!nwg.matches(LafDataTypes.F12)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(nwg); + err.setCode(670); + currentErrors.add(err);; + return; + } + String gw = children.get(8); + gw = gw.replaceAll("\"", ""); + if (!gw.matches(LafDataTypes.F12)) { + ReportItem err = new ReportItem(); + err.setKey(ctx.getChild(0).toString()); + err.setValue(gw); + err.setCode(670); + currentErrors.add(err);; + return; + } + // TODO: handle all values + Map messwert = new HashMap(); + messwert.put("MESSGROESSE", groesse); + messwert.put("MESSWERT", wert); + messwert.put("MEH", einheit); + messwert.put("MESSFEHLER", fehler); + messwert.put("NWG", nwg); + messwert.put("GRENZWERT", gw); + if (currentMessung == null) { + currentMessung = data.new Messung(); + } + currentMessung.addMesswert(messwert); } /** @@ -2389,7 +2654,6 @@ currentMessung = data.new Messung(); } currentMessung.addKommentar(kommentar); - System.out.println("KOMMENTAR: " + text); } /** @@ -2414,7 +2678,6 @@ currentMessung = data.new Messung(); } currentMessung.addKommentar(kommentar); - System.out.println("KOMMENTAR: " + text); } /** @@ -2470,7 +2733,6 @@ kommentar.put("TIME", time); kommentar.put("TEXT", text); currentProbe.addKommentar(kommentar); - System.out.println("KOMMENTAR: " + text); } /** @@ -2492,7 +2754,6 @@ Map kommentar = new HashMap(); kommentar.put("TEXT", text); currentProbe.addKommentar(kommentar); - System.out.println("KOMMENTAR: " + text); } /** diff -r 46df70a27767 -r 7683c4162746 src/main/java/de/intevation/lada/importer/laf/LafObjectMapper.java --- a/src/main/java/de/intevation/lada/importer/laf/LafObjectMapper.java Mon Oct 24 11:47:55 2016 +0200 +++ b/src/main/java/de/intevation/lada/importer/laf/LafObjectMapper.java Mon Oct 24 11:52:17 2016 +0200 @@ -1,32 +1,865 @@ package de.intevation.lada.importer.laf; +import java.sql.Timestamp; +import java.text.DateFormat; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.HashMap; import java.util.List; import java.util.Map; +import java.util.Map.Entry; import javax.inject.Inject; +import javax.management.modelmbean.InvalidTargetObjectTypeException; +import org.apache.commons.lang.StringUtils; +import org.apache.log4j.Logger; + +import de.intevation.lada.factory.ProbeFactory; +import de.intevation.lada.importer.Identified; +import de.intevation.lada.importer.Identifier; +import de.intevation.lada.importer.IdentifierConfig; +import de.intevation.lada.importer.ObjectMerger; import de.intevation.lada.importer.ReportItem; +import de.intevation.lada.model.land.KommentarM; +import de.intevation.lada.model.land.KommentarP; +import de.intevation.lada.model.land.Messung; +import de.intevation.lada.model.land.Messwert; +import de.intevation.lada.model.land.Probe; +import de.intevation.lada.model.land.StatusProtokoll; +import de.intevation.lada.model.land.ZusatzWert; +import de.intevation.lada.model.stammdaten.Datenbasis; +import de.intevation.lada.model.stammdaten.MessEinheit; +import de.intevation.lada.model.stammdaten.MessStelle; +import de.intevation.lada.model.stammdaten.Messgroesse; +import de.intevation.lada.model.stammdaten.MessprogrammKategorie; +import de.intevation.lada.model.stammdaten.MessprogrammTransfer; +import de.intevation.lada.model.stammdaten.ProbenZusatz; +import de.intevation.lada.model.stammdaten.Probenart; +import de.intevation.lada.model.stammdaten.StatusKombi; +import de.intevation.lada.model.stammdaten.Umwelt; +import de.intevation.lada.util.annotation.AuthorizationConfig; import de.intevation.lada.util.annotation.RepositoryConfig; +import de.intevation.lada.util.auth.Authorization; +import de.intevation.lada.util.auth.AuthorizationType; +import de.intevation.lada.util.auth.UserInfo; +import de.intevation.lada.util.data.QueryBuilder; import de.intevation.lada.util.data.Repository; import de.intevation.lada.util.data.RepositoryType; +import de.intevation.lada.util.rest.Response; +import de.intevation.lada.validation.Validator; +import de.intevation.lada.validation.Violation; +import de.intevation.lada.validation.annotation.ValidationConfig; public class LafObjectMapper { @Inject + private Logger logger; + + @Inject + @AuthorizationConfig(type=AuthorizationType.HEADER) + private Authorization authorizer; + + @Inject + @ValidationConfig(type="Probe") + private Validator probeValidator; + + @Inject + @ValidationConfig(type="Messung") + private Validator messungValidator; + + @Inject + @IdentifierConfig(type="Probe") + private Identifier probeIdentifier; + + @Inject + @IdentifierConfig(type="Messung") + private Identifier messungIdentifier; + + @Inject + private ObjectMerger merger; + + @Inject @RepositoryConfig(type=RepositoryType.RW) private Repository repository; + @Inject + private ProbeFactory factory; + private Map> errors; private Map> warnings; + private List currentErrors; + private List currentWarnings; + + + private UserInfo userInfo; public void mapObjects(LafRawData data) { + errors = new HashMap>(); + warnings = new HashMap>(); for (int i = 0; i < data.getProben().size(); i++) { - generate(data.getProben().get(i)); + create(data.getProben().get(i)); } } - private void generate(LafRawData.Probe object) { - object.getAttributes(); + private void create(LafRawData.Probe object) { + currentWarnings = new ArrayList(); + currentErrors = new ArrayList(); + Probe probe = new Probe(); + + // Fill the object with data + for (Entry attribute : object.getAttributes().entrySet()) { + addProbeAttribute(attribute, probe); + } + // Use the deskriptor string to find the medium + probe = factory.findMediaDesk(probe); + //logProbe(probe); + + // Check if the user is authorized to create the probe + boolean isAuthorized = authorizer.isAuthorized(userInfo, probe, Probe.class); + if (!isAuthorized) { + ReportItem err = new ReportItem(); + err.setCode(699); + err.setKey("auth"); + err.setValue("not authorized"); + currentErrors.add(err); + return; + } + + // Check for errors and warnings + + // Compare the probe with objects in the db + Probe newProbe = null; + try { + Identified i = probeIdentifier.find(probe); + Probe old = (Probe)probeIdentifier.getExisting(); + // Matching probe was found in the db. Update it! + if(i == Identified.UPDATE) { + merger.merge(old, probe); + newProbe = old; + Violation violation = probeValidator.validate(newProbe); + for (Entry> warn : violation.getWarnings().entrySet()) { + for (Integer code : warn.getValue()) { + currentWarnings.add(new ReportItem("validation", warn.getKey(), code)); + } + } + } + // Probe was found but some data does not match + else if(i == Identified.REJECT){ + ReportItem err = new ReportItem(); + err.setCode(631); + err.setKey("duplicate"); + err.setValue(""); + currentErrors.add(err); + return; + } + // It is a brand new probe! + else if(i == Identified.NEW){ + Violation violation = probeValidator.validate(probe); + for (Entry> err : violation.getErrors().entrySet()) { + for (Integer code : err.getValue()) { + currentErrors.add(new ReportItem("validation", err.getKey(), code)); + } + } + for (Entry> warn : violation.getWarnings().entrySet()) { + for (Integer code : warn.getValue()) { + currentWarnings.add(new ReportItem("validation", warn.getKey(), code)); + } + } + Response created = repository.create(probe, "land"); + newProbe = ((Probe)created.getData()); + } + } catch (InvalidTargetObjectTypeException e) { + ReportItem err = new ReportItem(); + err.setCode(604); + err.setKey("not known"); + err.setValue("No valid Probe Object"); + currentErrors.add(err); + return; + } + if (newProbe == null) { + // Only occurs if object type is not probe + return; + } + // Create kommentar objects + List kommentare = new ArrayList(); + for (int i = 0; i < object.getKommentare().size(); i++) { + KommentarP tmp = createProbeKommentar(object.getKommentare().get(i), newProbe.getId()); + if (tmp != null) { + kommentare.add(tmp); + } + } + // Persist kommentar objects + merger.mergeKommentare(newProbe, kommentare); + + // Create zusatzwert objects + List zusatzwerte = new ArrayList(); + for (int i = 0; i < object.getZusatzwerte().size(); i++) { + ZusatzWert tmp = createZusatzwert(object.getZusatzwerte().get(i), newProbe.getId()); + if (tmp != null) { + zusatzwerte.add(tmp); + } + } + // Persist zusatzwert objects + merger.mergeZusatzwerte(newProbe, zusatzwerte); + + // Create messung objects + for (int i = 0; i < object.getMessungen().size(); i++) { + create(object.getMessungen().get(i), newProbe.getId(), newProbe.getMstId()); + } + if (currentErrors.size() > 0) { + List copyErr = new ArrayList(currentErrors); + System.out.println("errs for probe: " + probe.getIdAlt()); + errors.put(probe.getIdAlt(), copyErr); + } + if (currentWarnings.size() > 0) { + List copyWarn = new ArrayList(currentWarnings); + warnings.put(probe.getIdAlt(), copyWarn); + System.out.println("warn: " + warnings.size()); + } + currentErrors.clear(); + currentWarnings.clear(); + logger.debug("probe written to database."); + } + + private void create(LafRawData.Messung object, int probeId, String mstId) { + Messung messung = new Messung(); + messung.setProbeId(probeId); + + // Fill the new messung with data + for (Entry attribute : object.getAttributes().entrySet()) { + addMessungAttribute(attribute, messung); + } + + // Check if the user is authorized to create the object + if (!authorizer.isAuthorizedOnNew(userInfo, messung, Messung.class)) { + ReportItem warn = new ReportItem(); + warn.setCode(699); + warn.setKey("auth"); + warn.setValue("Messung: " + messung.getNebenprobenNr()); + currentErrors.add(warn); + return; + } + + + // Compare with messung objects in the db + Messung newMessung = null; + try { + Identified i = messungIdentifier.find(messung); + Messung old = (Messung)messungIdentifier.getExisting(); + if (i == Identified.UPDATE) { + merger.mergeMessung(old, messung); + newMessung = old; + // We do not import the status. Doing this can cause an + // inconsistent status protocol. + } + else if (i == Identified.REJECT) { + ReportItem warn = new ReportItem(); + warn.setCode(631); + warn.setKey("duplicate"); + warn.setValue("Messung: " + messung.getNebenprobenNr()); + currentWarnings.add(warn); + return; + } + else if (i == Identified.NEW) { + // Create a new messung and the first status + Response created = repository.create(messung, "land"); + newMessung = ((Messung)created.getData()); + created = repository.getById(Messung.class, newMessung.getId(), "land"); + newMessung = ((Messung)created.getData()); + StatusProtokoll status = new StatusProtokoll(); + status.setDatum(new Timestamp(new Date().getTime())); + status.setMessungsId(newMessung.getId()); + status.setMstId(mstId); + status.setStatusKombi(1); + Response st = repository.create(status, "land"); + newMessung.setStatus(((StatusProtokoll)st.getData()).getId()); + repository.update(newMessung, "land"); + if (object.getAttributes().containsKey("BEARBEITUNGSSTATUS")) { + createStatusProtokoll(object.getAttributes().get("BEARBEITUNGSSTATUS"), newMessung, mstId); + } + } + } + catch(InvalidTargetObjectTypeException e) { + ReportItem err = new ReportItem(); + err.setCode(604); + err.setKey("not valid"); + err.setValue("Messung: " + messung.getNebenprobenNr()); + currentErrors.add(err); + return; + } + List kommentare = new ArrayList(); + for (int i = 0; i < object.getKommentare().size(); i++) { + KommentarM tmp = createMessungKommentar(object.getKommentare().get(i), newMessung.getId()); + if (tmp != null) { + kommentare.add(tmp); + } + } + merger.mergeMessungKommentare(newMessung, kommentare); + List messwerte = new ArrayList(); + for (int i = 0; i < object.getMesswerte().size(); i++) { + Messwert tmp = createMesswert(object.getMesswerte().get(i), newMessung.getId()); + if (tmp != null) { + messwerte.add(tmp); + } + } + merger.mergeMesswerte(newMessung, messwerte); + // Check for warnings and errors + Violation violation = messungValidator.validate(newMessung); + for (Entry> err : violation.getErrors().entrySet()) { + for (Integer code : err.getValue()) { + currentErrors.add(new ReportItem("validation", err.getKey(), code)); + } + } + for (Entry> warn : violation.getWarnings().entrySet()) { + for (Integer code : warn.getValue()) { + currentWarnings.add(new ReportItem("validation", warn.getKey(), code)); + } + } + } + + private KommentarP createProbeKommentar(Map attributes, int probeId) { + KommentarP kommentar = new KommentarP(); + kommentar.setProbeId(probeId); + kommentar.setMstId(attributes.get("MST_ID")); + kommentar.setText(attributes.get("TEXT")); + DateFormat format = new SimpleDateFormat("yyyyMMdd HHmm"); + String date = attributes.get("DATE") + " " + attributes.get("TIME"); + Date d; + try { + d = format.parse(date); + kommentar.setDatum(new Timestamp(d.getTime())); + } + catch (ParseException e) { + ReportItem warn = new ReportItem(); + warn.setCode(674); + warn.setKey("not valid"); + warn.setValue("Date: " + date); + currentWarnings.add(warn); + } + if (!userInfo.getMessstellen().contains(kommentar.getMstId())) { + ReportItem warn = new ReportItem(); + warn.setCode(699); + warn.setKey("auth"); + warn.setValue(kommentar.getMstId()); + currentWarnings.add(warn); + return null; + } + return kommentar; + } + + private ZusatzWert createZusatzwert(Map attributes, int probeId) { + ZusatzWert zusatzwert = new ZusatzWert(); + zusatzwert.setProbeId(probeId); + zusatzwert.setMessfehler(Float.valueOf(attributes.get("MESSFEHLER"))); + zusatzwert.setMesswertPzs(Double.valueOf(attributes.get("MESSWERT_PZS"))); + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + ProbenZusatz.class); + builder.and("zusatzwert", attributes.get("PZS")); + List zusatz = + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + + if (zusatz == null || zusatz.isEmpty()) { + ReportItem warn = new ReportItem(); + warn.setCode(673); + warn.setKey("zusatzwert"); + warn.setValue(attributes.get("PZS")); + currentWarnings.add(warn); + return null; + } + zusatzwert.setPzsId(zusatz.get(0).getId()); + return zusatzwert; + } + + private Messwert createMesswert(Map attributes, int messungsId) { + Messwert messwert = new Messwert(); + messwert.setMessungsId(messungsId); + if (attributes.containsKey("MESSGROESSE_ID")) { + messwert.setMessgroesseId(Integer.valueOf(attributes.get("MESSGROESSE_ID"))); + } + else if (attributes.containsKey("MESSGROESSE")) { + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + Messgroesse.class); + builder.and("messgroesse", attributes.get("MESSGROESSE")); + List groesse = + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + + if (groesse == null || groesse.isEmpty()) { + ReportItem warn = new ReportItem(); + warn.setCode(673); + warn.setKey("messwert"); + warn.setValue(attributes.get("MESSGROESSE")); + currentWarnings.add(warn); + return null; + } + messwert.setMessgroesseId(groesse.get(0).getId()); + } + if (attributes.containsKey("MEH_ID")) { + messwert.setMehId(Integer.valueOf(attributes.get("MEH_ID"))); + } + else if (attributes.containsKey("MEH")) { + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + MessEinheit.class); + builder.and("einheit", attributes.get("MEH")); + List einheit = + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + + if (einheit == null || einheit.isEmpty()) { + ReportItem warn = new ReportItem(); + warn.setCode(673); + warn.setKey("messwert"); + warn.setValue(attributes.get("MEH")); + currentWarnings.add(warn); + return null; + } + messwert.setMehId(einheit.get(0).getId()); + } + + String wert = attributes.get("MESSWERT"); + if (wert.startsWith("<")) { + wert = wert.substring(1); + messwert.setMesswertNwg("<"); + } + messwert.setMesswert(Double.valueOf(wert)); + messwert.setMessfehler(Double.valueOf(attributes.get("MESSFEHLER")).floatValue()); + if (attributes.containsKey("NWG")) { + messwert.setNwgZuMesswert(Double.valueOf(attributes.get("NWG"))); + } + if (attributes.containsKey("GRENZWERT")) { + messwert.setGrenzwertueberschreitung(attributes.get("GRENZWERT").toUpperCase() == "J" ? true : false); + } + return messwert; + } + + private KommentarM createMessungKommentar(Map attributes, int messungsId) { + KommentarM kommentar = new KommentarM(); + kommentar.setMessungsId(messungsId); + kommentar.setMstId(attributes.get("MST_ID")); + kommentar.setText(attributes.get("TEXT")); + DateFormat format = new SimpleDateFormat("yyyyMMdd HHmm"); + String date = attributes.get("DATE") + " " + attributes.get("TIME"); + Date d; + try { + d = format.parse(date); + kommentar.setDatum(new Timestamp(d.getTime())); + } + catch (ParseException e) { + ReportItem warn = new ReportItem(); + warn.setCode(674); + warn.setKey("kommentar"); + warn.setValue("Date: " + date); + currentWarnings.add(warn); + } + if (!userInfo.getMessstellen().contains(kommentar.getMstId())) { + return null; + } + return kommentar; + } + + private void createStatusProtokoll(String status, Messung messung, String mstId) { + int mst = Integer.valueOf(status.substring(0, 1)); + int land = Integer.valueOf(status.substring(1, 2)); + int lst = Integer.valueOf(status.substring(2, 3)); + + boolean hasMst = false; + boolean hasLand = false; + + StatusProtokoll last = null; + if (userInfo.getFunktionenForMst(mstId).contains(1)) { + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + StatusKombi.class); + builder.and("statusWert", mst); + builder.and("statusStufe", 1); + List kombi = + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + if (kombi != null && !kombi.isEmpty()) { + StatusProtokoll statusMst = new StatusProtokoll(); + statusMst.setDatum(new Timestamp(new Date().getTime())); + statusMst.setMessungsId(messung.getId()); + statusMst.setMstId(mstId); + statusMst.setStatusKombi(kombi.get(0).getId()); + Response r = repository.create(statusMst, "land"); + last = (StatusProtokoll)r.getData(); + } + hasMst = true; + } + MessStelle messStelle = repository.getByIdPlain(MessStelle.class, mstId, "stamm"); + if (userInfo.getNetzbetreiber().contains(messStelle.getNetzbetreiberId()) && + userInfo.getFunktionenForNetzbetreiber(messStelle.getNetzbetreiberId()).contains(2) && + hasMst) { + // Set status for stufe land. + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + StatusKombi.class); + builder.and("statusWert", land); + builder.and("statusStufe", 2); + List kombi = + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + if (kombi != null && !kombi.isEmpty()) { + StatusProtokoll statusLand = new StatusProtokoll(); + statusLand.setDatum(new Timestamp(new Date().getTime())); + statusLand.setMessungsId(messung.getId()); + statusLand.setMstId(mstId); + statusLand.setStatusKombi(kombi.get(0).getId()); + Response r = repository.create(statusLand, "land"); + last = (StatusProtokoll)r.getData(); + } + } + if (userInfo.getFunktionen().contains(3) && + hasLand) { + // Set status for stufe lst. + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + StatusKombi.class); + builder.and("statusWert", lst); + builder.and("statusStufe", 3); + List kombi = + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + if (kombi != null && !kombi.isEmpty()) { + StatusProtokoll statusLst = new StatusProtokoll(); + statusLst.setDatum(new Timestamp(new Date().getTime())); + statusLst.setMessungsId(messung.getId()); + statusLst.setMstId(mstId); + statusLst.setStatusKombi(kombi.get(0).getId()); + Response r = repository.create(statusLst, "land"); + last = (StatusProtokoll)r.getData(); + } + } + if (last != null) { + messung.setStatus(last.getId()); + repository.update(messung, "land"); + } + } + + private void logProbe(Probe probe) { + logger.debug("%PROBE%"); + logger.debug("datenbasis: " + probe.getDatenbasisId()); + logger.debug("betriebsart: " + probe.getBaId()); + logger.debug("erzeuger: " + probe.getErzeugerId()); + logger.debug("hauptprobennummer: " + probe.getHauptprobenNr()); + logger.debug("idalt: " + probe.getIdAlt()); + logger.debug("labor: " + probe.getLaborMstId()); + logger.debug("deskriptoren: " + probe.getMediaDesk()); + logger.debug("media: " + probe.getMedia()); + logger.debug("mittelung: " + probe.getMittelungsdauer()); + logger.debug("mpl: " + probe.getMplId()); + logger.debug("mpr: " + probe.getMprId()); + logger.debug("mst: " + probe.getMstId()); + logger.debug("pnbeginn: " + probe.getProbeentnahmeBeginn()); + logger.debug("pnende: " + probe.getProbeentnahmeEnde()); + logger.debug("probenart: " + probe.getProbenartId()); + logger.debug("probenehmer: " + probe.getProbeNehmerId()); + logger.debug("sbeginn: " + probe.getSolldatumBeginn()); + logger.debug("sende: " + probe.getSolldatumEnde()); + logger.debug("test: " + probe.getTest()); + logger.debug("umw: " + probe.getUmwId()); + } + + private void addProbeAttribute(Entry attribute, Probe probe) { + String key = attribute.getKey(); + String value = attribute.getValue(); + + DateFormat format = new SimpleDateFormat("yyyyMMdd HHmm"); + if ("DATENBASIS_S".equals(key) && probe.getDatenbasisId() == null) { + Integer v = Integer.valueOf(value.toString()); + probe.setDatenbasisId(v); + } + else if ("DATENBASIS_S".equals(key) && probe.getDatenbasisId() != null){ + currentWarnings.add(new ReportItem(key, value.toString(), 672)); + } + + + if ("DATENBASIS".equals(key) && probe.getDatenbasisId() == null) { + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + Datenbasis.class); + builder.and("datenbasis", value.toString()); + List datenbasis = + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + if (datenbasis == null || datenbasis.isEmpty()) { + ReportItem err = new ReportItem(); + err.setCode(673); + err.setKey("datenbasis"); + err.setValue(key); + currentErrors.add(err); + return; + } + Integer v = datenbasis.get(0).getId(); + probe.setDatenbasisId(v); + } + else if ("DATENBASIS".equals(key) && probe.getDatenbasisId() != null){ + currentWarnings.add(new ReportItem(key, value.toString(), 672)); + } + + if ("PROBE_ID".equals(key)) { + probe.setIdAlt(value); + } + + if ("HAUPTPROBENNUMMER".equals(key)) { + probe.setHauptprobenNr(value.toString()); + } + + if ("MPR_ID".equals(key)) { + Integer v = Integer.valueOf(value.toString()); + probe.setMprId(v); + } + + if ("MESSSTELLE".equals(key)) { + probe.setMstId(value.toString()); + } + + if ("MESSLABOR".equals(key)) { + probe.setLaborMstId(value.toString()); + } + + if ("MESSPROGRAMM_S".equals(key) && probe.getBaId() == null) { + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + MessprogrammTransfer.class); + builder.and("messprogrammS", value); + List transfer= + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + if (transfer == null || transfer.isEmpty()) { + ReportItem warn = new ReportItem(); + warn.setCode(673); + warn.setKey("messprogramm"); + warn.setValue(key); + currentWarnings.add(warn); + return; + } + probe.setBaId(transfer.get(0).getBaId()); + } + if ("MESSPROGRAMM_C".equals(key)){ + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + MessprogrammTransfer.class); + builder.and("messprogrammC", value); + List transfer= + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + if (transfer == null || transfer.isEmpty()) { + ReportItem warn = new ReportItem(); + warn.setCode(673); + warn.setKey("messprogramm"); + warn.setValue(key); + currentWarnings.add(warn); + return; + } + probe.setBaId(transfer.get(0).getBaId()); + } + + if ("MESSPROGRAMM_LAND".equals(key)) { + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + MessprogrammKategorie.class); + builder.or("netzbetreiberId", userInfo.getNetzbetreiber()); + builder.and("code", value); + List kategorie = + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + if (kategorie == null || kategorie.isEmpty()) { + ReportItem warn = new ReportItem(); + warn.setCode(673); + warn.setKey("messprogramm_land"); + warn.setValue(key); + currentWarnings.add(warn); + return; + } + probe.setMplId(kategorie.get(0).getId()); + } + + if ("SOLL_DATUM_UHRZEIT_A".equals(key)) { + try { + Date d = format.parse(value.toString()); + probe.setSolldatumBeginn(new Timestamp(d.getTime())); + } + catch (ParseException e) { + currentWarnings.add(new ReportItem(key, value.toString(), 674)); + } + } + if ("SOLL_DATUM_UHRZEIT_E".equals(key)) { + try { + Date d = format.parse(value.toString()); + probe.setSolldatumEnde(new Timestamp(d.getTime())); + } + catch (ParseException e) { + currentWarnings.add(new ReportItem(key, value.toString(), 674)); + } + } + if ("PROBENAHME_DATUM_UHRZEIT_A".equals(key)) { + try { + Date d = format.parse(value.toString()); + probe.setProbeentnahmeBeginn(new Timestamp(d.getTime())); + } + catch (ParseException e) { + currentWarnings.add(new ReportItem(key, value.toString(), 674)); + } + } + if ("PROBENAHME_DATUM_UHRZEIT_E".equals(key)) { + try { + Date d = format.parse(value.toString()); + probe.setProbeentnahmeEnde(new Timestamp(d.getTime())); + } + catch (ParseException e) { + currentWarnings.add(new ReportItem(key, value.toString(), 674)); + } + } + + if ("UMWELTBEREICH_S".equals(key) && probe.getUmwId() == null) { + probe.setUmwId(value.toString()); + } + else if ("UMWELTBEREICH_S".equals(key) && probe.getUmwId() != null){ + currentWarnings.add(new ReportItem(key, value.toString(), 672)); + } + if ("UMWELTBEREICH_C".equals(key) && probe.getUmwId() == null) { + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + Umwelt.class); + int length = value.toString().length() > 80 ? 80 : value.toString().length(); + builder.and("umweltBereich", value.toString().substring(0, length)); + List umwelt = + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + if (umwelt == null || umwelt.isEmpty()) { + ReportItem warn = new ReportItem(); + warn.setCode(673); + warn.setKey("umwelt"); + warn.setValue(key); + currentWarnings.add(warn); + return; + } + probe.setUmwId(umwelt.get(0).getId()); + } + else if ("UMWELTBEREICH_C".equals(key) && probe.getUmwId() != null){ + currentWarnings.add(new ReportItem(key, value.toString(), 672)); + } + + if ("DESKRIPTOREN".equals(key)) { + value = value.replace(" ", "0"); + List tmp = new ArrayList(); + tmp.add("D:"); + for (int i = 0; i < value.length() - 2; i += 2) { + tmp.add(value.substring(i, i+2)); + } + probe.setMediaDesk(StringUtils.join(tmp.toArray(), " ")); + } + + if ("TESTDATEN".equals(key)) { + if (!value.toString().equals("0")) { + probe.setTest(true); + } + else { + probe.setTest(false); + } + } + + if ("MEDIUM".equals(key)) { + probe.setMedia(value.toString()); + } + + if ("PROBENART".equals(key)) { + QueryBuilder builder = + new QueryBuilder( + repository.entityManager("stamm"), + Probenart.class); + builder.and("probenart", value.toString()); + List probenart = + (List)repository.filter( + builder.getQuery(), + "stamm").getData(); + if (probenart == null || probenart.isEmpty()) { + ReportItem warn = new ReportItem(); + warn.setCode(673); + warn.setKey("probenart"); + warn.setValue(key); + currentWarnings.add(warn); + return; + } + probe.setProbenartId(probenart.get(0).getId()); + } + } + /** + * Add an attribute to the given LMessung object. + * + * @param key The key mapping to a object member. + * @param value The value to set. + * @param messung The entity object. + * @return The updated entity object. + */ + public Messung addMessungAttribute( + Entry attribute, + Messung messung + ) { + String key = attribute.getKey(); + String value = attribute.getValue(); + DateFormat format = new SimpleDateFormat("yyyyMMdd HHmm"); + if ("MESSUNGS_ID".equals(key)) { + messung.setIdAlt(Integer.valueOf(value)); + } + if ("NEBENPROBENNUMMER".equals(key)) { + messung.setNebenprobenNr(value.toString()); + } + else if ("MESS_DATUM_UHRZEIT".equals(key)) { + try { + Date d = format.parse(value.toString()); + messung.setMesszeitpunkt(new Timestamp(d.getTime())); + } + catch (ParseException e) { + currentWarnings.add(new ReportItem(key, value.toString(), 674)); + } + } + else if ("MESSZEIT_SEKUNDEN".equals(key)) { + Integer i = Integer.valueOf(value.toString()); + messung.setMessdauer(i); + } + else if ("MESSMETHODE_S".equals(key)) { + messung.setMmtId(value.toString()); + } + else if ("ERFASSUNG_ABGESCHLOSSEN".equals(key)) { + if(!value.toString().equals("0")) { + messung.setFertig(true); + } + else { + messung.setFertig(false); + } + } + return messung; } /** @@ -40,6 +873,24 @@ * @return the warnings */ public Map> getWarnings() { + System.out.println(warnings.size()); return warnings; } + + /** + * @return the userInfo + */ + public UserInfo getUserInfo() { + return userInfo; + } + + /** + * @param userInfo the userInfo to set + */ + public void setUserInfo(UserInfo userInfo) { + this.userInfo = userInfo; + } } + + + diff -r 46df70a27767 -r 7683c4162746 src/main/java/de/intevation/lada/importer/laf/LafParser.java --- a/src/main/java/de/intevation/lada/importer/laf/LafParser.java Mon Oct 24 11:47:55 2016 +0200 +++ b/src/main/java/de/intevation/lada/importer/laf/LafParser.java Mon Oct 24 11:52:17 2016 +0200 @@ -327,7 +327,7 @@ setState(245); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__2) | (1L << T__3) | (1L << VERSION) | (1L << UEBERTRAGUNGSFORMAT) | (1L << DATENBASIS) | (1L << DATENBASIS_S) | (1L << NETZKENNUNG) | (1L << ERZEUGER) | (1L << STAAT_DER_MESSSTELLE_LANG) | (1L << STAAT_DER_MESSSTELLE_KURZ) | (1L << STAAT_DER_MESSSTELLE_S) | (1L << MESSSTELLE) | (1L << MESSLABOR) | (1L << PROBE_ID) | (1L << MESSUNGS_ID) | (1L << PROBEN_NR) | (1L << HAUPTPROBENNUMMER) | (1L << NEBENPROBENNUMMER) | (1L << MESSPROGRAMM_C) | (1L << MESSPROGRAMM_S) | (1L << MESSPROGRAMM_LAND) | (1L << PROBENAHMEINSTITUTION) | (1L << PROBENART) | (1L << ZEITBASIS) | (1L << ZEITBASIS_S) | (1L << SOLL_DATUM_UHRZEIT_A) | (1L << SOLL_DATUM_UHRZEIT_E) | (1L << PROBENAHME_DATUM_UHRZEIT_A) | (1L << PROBENAHME_DATUM_UHRZEIT_E) | (1L << UMWELTBEREICH_C) | (1L << UMWELTBEREICH_S) | (1L << DESKRIPTOREN) | (1L << REI_PROGRAMMPUNKT) | (1L << REI_PROGRAMMPUNKTGRUPPE) | (1L << REFERENZ_DATUM_UHRZEIT) | (1L << TESTDATEN) | (1L << SZENARIO) | (1L << SEK_DATENBASIS) | (1L << P_HERKUNFTSLAND_LANG) | (1L << P_HERKUNFTSLAND_KURZ) | (1L << P_HERKUNFTSLAND_S) | (1L << P_GEMEINDESCHLUESSEL) | (1L << P_GEMEINDENAME) | (1L << P_ORTS_ZUSATZKENNZAHL) | (1L << P_KOORDINATEN) | (1L << P_KOORDINATEN_S) | (1L << P_ORTS_ZUSATZCODE))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (P_ORTS_ZUSATZTEXT - 64)) | (1L << (P_NUTS_CODE - 64)) | (1L << (P_SITE_ID - 64)) | (1L << (P_SITE_NAME - 64)) | (1L << (P_HOEHE_NN - 64)) | (1L << (P_HOEHE_LAND - 64)) | (1L << (MEHRZWECKFELD - 64)) | (1L << (MESS_DATUM_UHRZEIT - 64)) | (1L << (MESSZEIT_SEKUNDEN - 64)) | (1L << (MESSMETHODE_C - 64)) | (1L << (MESSMETHODE_S - 64)) | (1L << (BEARBEITUNGSSTATUS - 64)) | (1L << (PEP_FLAG - 64)) | (1L << (ERFASSUNG_ABGESCHLOSSEN - 64)) | (1L << (PROBENZUSATZBESCHREIBUNG - 64)) | (1L << (PZB_S - 64)) | (1L << (MESSWERT - 64)) | (1L << (KOMMENTAR - 64)) | (1L << (KOMMENTAR_T - 64)) | (1L << (PROBENKOMMENTAR - 64)) | (1L << (PROBENKOMMENTAR_T - 64)))) != 0) ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__2) | (1L << T__3) | (1L << VERSION) | (1L << UEBERTRAGUNGSFORMAT) | (1L << DATENBASIS) | (1L << DATENBASIS_S) | (1L << NETZKENNUNG) | (1L << ERZEUGER) | (1L << STAAT_DER_MESSSTELLE_LANG) | (1L << STAAT_DER_MESSSTELLE_KURZ) | (1L << STAAT_DER_MESSSTELLE_S) | (1L << MESSSTELLE) | (1L << MESSLABOR) | (1L << PROBE_ID) | (1L << MESSUNGS_ID) | (1L << PROBEN_NR) | (1L << HAUPTPROBENNUMMER) | (1L << NEBENPROBENNUMMER) | (1L << MESSPROGRAMM_C) | (1L << MESSPROGRAMM_S) | (1L << MESSPROGRAMM_LAND) | (1L << PROBENAHMEINSTITUTION) | (1L << PROBENART) | (1L << ZEITBASIS) | (1L << ZEITBASIS_S) | (1L << SOLL_DATUM_UHRZEIT_A) | (1L << SOLL_DATUM_UHRZEIT_E) | (1L << PROBENAHME_DATUM_UHRZEIT_A) | (1L << PROBENAHME_DATUM_UHRZEIT_E) | (1L << UMWELTBEREICH_C) | (1L << UMWELTBEREICH_S) | (1L << DESKRIPTOREN) | (1L << REI_PROGRAMMPUNKT) | (1L << REI_PROGRAMMPUNKTGRUPPE) | (1L << REFERENZ_DATUM_UHRZEIT) | (1L << TESTDATEN) | (1L << SZENARIO) | (1L << SEK_DATENBASIS) | (1L << SEK_DATENBASIS_S) | (1L << P_HERKUNFTSLAND_LANG) | (1L << P_HERKUNFTSLAND_KURZ) | (1L << P_HERKUNFTSLAND_S) | (1L << P_GEMEINDESCHLUESSEL) | (1L << P_GEMEINDENAME) | (1L << P_ORTS_ZUSATZKENNZAHL) | (1L << P_KOORDINATEN) | (1L << P_KOORDINATEN_S) | (1L << P_ORTS_ZUSATZCODE))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (P_ORTS_ZUSATZTEXT - 64)) | (1L << (P_NUTS_CODE - 64)) | (1L << (P_SITE_ID - 64)) | (1L << (P_SITE_NAME - 64)) | (1L << (P_HOEHE_NN - 64)) | (1L << (P_HOEHE_LAND - 64)) | (1L << (MEHRZWECKFELD - 64)) | (1L << (MESS_DATUM_UHRZEIT - 64)) | (1L << (MESSZEIT_SEKUNDEN - 64)) | (1L << (MESSMETHODE_C - 64)) | (1L << (MESSMETHODE_S - 64)) | (1L << (BEARBEITUNGSSTATUS - 64)) | (1L << (PEP_FLAG - 64)) | (1L << (ERFASSUNG_ABGESCHLOSSEN - 64)) | (1L << (PROBENZUSATZBESCHREIBUNG - 64)) | (1L << (PZB_S - 64)) | (1L << (MESSWERT - 64)) | (1L << (MESSWERT_S - 64)) | (1L << (MESSWERT_I - 64)) | (1L << (MESSWERT_G - 64)) | (1L << (MESSWERT_NWG - 64)) | (1L << (MESSWERT_NWG_S - 64)) | (1L << (MESSWERT_NWG_I - 64)) | (1L << (MESSWERT_NWG_G - 64)) | (1L << (KOMMENTAR - 64)) | (1L << (KOMMENTAR_T - 64)) | (1L << (PROBENKOMMENTAR - 64)) | (1L << (PROBENKOMMENTAR_T - 64)))) != 0) ); } } catch (RecognitionException re) { @@ -420,6 +420,9 @@ public Sek_datenbasisContext sek_datenbasis() { return getRuleContext(Sek_datenbasisContext.class,0); } + public Sek_datenbasis_sContext sek_datenbasis_s() { + return getRuleContext(Sek_datenbasis_sContext.class,0); + } public UsContext us() { return getRuleContext(UsContext.class,0); } @@ -486,7 +489,7 @@ ProbedatenContext _localctx = new ProbedatenContext(_ctx, getState()); enterRule(_localctx, 6, RULE_probedaten); try { - setState(289); + setState(290); switch ( getInterpreter().adaptivePredict(_input,3,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); @@ -674,111 +677,118 @@ enterOuterAlt(_localctx, 27); { setState(273); - us(); + sek_datenbasis_s(); } break; case 28: enterOuterAlt(_localctx, 28); { setState(274); - ph(); + us(); } break; case 29: enterOuterAlt(_localctx, 29); { setState(275); - pg(); + ph(); } break; case 30: enterOuterAlt(_localctx, 30); { setState(276); - p_orts_zusatzkennzahl(); + pg(); } break; case 31: enterOuterAlt(_localctx, 31); { setState(277); - pk(); + p_orts_zusatzkennzahl(); } break; case 32: enterOuterAlt(_localctx, 32); { setState(278); - p_orts_zusatzcode(); + pk(); } break; case 33: enterOuterAlt(_localctx, 33); { setState(279); - p_orts_zusatztext(); + p_orts_zusatzcode(); } break; case 34: enterOuterAlt(_localctx, 34); { setState(280); - p_nuts_code(); + p_orts_zusatztext(); } break; case 35: enterOuterAlt(_localctx, 35); { setState(281); - p_site_id(); + p_nuts_code(); } break; case 36: enterOuterAlt(_localctx, 36); { setState(282); - p_site_name(); + p_site_id(); } break; case 37: enterOuterAlt(_localctx, 37); { setState(283); - p_hoehe_nn(); + p_site_name(); } break; case 38: enterOuterAlt(_localctx, 38); { setState(284); - p_hoehe_land(); + p_hoehe_nn(); } break; case 39: enterOuterAlt(_localctx, 39); { setState(285); - mehrzweckfeld(); + p_hoehe_land(); } break; case 40: enterOuterAlt(_localctx, 40); { setState(286); - messung(); + mehrzweckfeld(); } break; case 41: enterOuterAlt(_localctx, 41); { setState(287); - pzb(); + messung(); } break; case 42: enterOuterAlt(_localctx, 42); { setState(288); + pzb(); + } + break; + case 43: + enterOuterAlt(_localctx, 43); + { + setState(289); pkom(); } break; @@ -827,16 +837,16 @@ int _alt; enterOuterAlt(_localctx, 1); { - setState(292); + setState(293); _la = _input.LA(1); if (_la==T__2) { { - setState(291); + setState(292); mess_header(); } } - setState(295); + setState(296); _errHandler.sync(this); _alt = 1; do { @@ -844,7 +854,7 @@ case 1: { { - setState(294); + setState(295); messungdaten(); } } @@ -852,7 +862,7 @@ default: throw new NoViableAltException(this); } - setState(297); + setState(298); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,5,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); @@ -890,7 +900,7 @@ try { enterOuterAlt(_localctx, 1); { - setState(299); + setState(300); match(T__2); } } @@ -930,8 +940,8 @@ public Erfassung_abgeschlossenContext erfassung_abgeschlossen() { return getRuleContext(Erfassung_abgeschlossenContext.class,0); } - public MesswertContext messwert() { - return getRuleContext(MesswertContext.class,0); + public MwContext mw() { + return getRuleContext(MwContext.class,0); } public Mess_kommentarContext mess_kommentar() { return getRuleContext(Mess_kommentarContext.class,0); @@ -954,12 +964,12 @@ MessungdatenContext _localctx = new MessungdatenContext(_ctx, getState()); enterRule(_localctx, 12, RULE_messungdaten); try { - setState(311); + setState(312); switch (_input.LA(1)) { case MESSUNGS_ID: enterOuterAlt(_localctx, 1); { - setState(301); + setState(302); messungs_id(); } break; @@ -967,21 +977,21 @@ case NEBENPROBENNUMMER: enterOuterAlt(_localctx, 2); { - setState(302); + setState(303); pn(); } break; case MESS_DATUM_UHRZEIT: enterOuterAlt(_localctx, 3); { - setState(303); + setState(304); mess_datum_uhrzeit(); } break; case MESSZEIT_SEKUNDEN: enterOuterAlt(_localctx, 4); { - setState(304); + setState(305); messzeit_sekunden(); } break; @@ -989,43 +999,50 @@ case MESSMETHODE_S: enterOuterAlt(_localctx, 5); { - setState(305); + setState(306); mm(); } break; case BEARBEITUNGSSTATUS: enterOuterAlt(_localctx, 6); { - setState(306); + setState(307); bearbeitungsstatus(); } break; case PEP_FLAG: enterOuterAlt(_localctx, 7); { - setState(307); + setState(308); pep_flag(); } break; case ERFASSUNG_ABGESCHLOSSEN: enterOuterAlt(_localctx, 8); { - setState(308); + setState(309); erfassung_abgeschlossen(); } break; case MESSWERT: + case MESSWERT_S: + case MESSWERT_I: + case MESSWERT_G: + case MESSWERT_NWG: + case MESSWERT_NWG_S: + case MESSWERT_NWG_I: + case MESSWERT_NWG_G: enterOuterAlt(_localctx, 9); { - setState(309); - messwert(); + setState(310); + mw(); } break; case KOMMENTAR: case KOMMENTAR_T: enterOuterAlt(_localctx, 10); { - setState(310); + setState(311); mess_kommentar(); } break; @@ -1069,19 +1086,19 @@ DbContext _localctx = new DbContext(_ctx, getState()); enterRule(_localctx, 14, RULE_db); try { - setState(315); + setState(316); switch (_input.LA(1)) { case DATENBASIS: enterOuterAlt(_localctx, 1); { - setState(313); + setState(314); datenbasis(); } break; case DATENBASIS_S: enterOuterAlt(_localctx, 2); { - setState(314); + setState(315); datenbasis_s(); } break; @@ -1125,19 +1142,19 @@ MpContext _localctx = new MpContext(_ctx, getState()); enterRule(_localctx, 16, RULE_mp); try { - setState(319); + setState(320); switch (_input.LA(1)) { case MESSPROGRAMM_C: enterOuterAlt(_localctx, 1); { - setState(317); + setState(318); messprogramm_c(); } break; case MESSPROGRAMM_S: enterOuterAlt(_localctx, 2); { - setState(318); + setState(319); messprogramm_s(); } break; @@ -1181,19 +1198,19 @@ UbContext _localctx = new UbContext(_ctx, getState()); enterRule(_localctx, 18, RULE_ub); try { - setState(323); + setState(324); switch (_input.LA(1)) { case UMWELTBEREICH_C: enterOuterAlt(_localctx, 1); { - setState(321); + setState(322); umweltbereich_c(); } break; case UMWELTBEREICH_S: enterOuterAlt(_localctx, 2); { - setState(322); + setState(323); umweltbereich_s(); } break; @@ -1237,19 +1254,19 @@ ReiContext _localctx = new ReiContext(_ctx, getState()); enterRule(_localctx, 20, RULE_rei); try { - setState(327); + setState(328); switch (_input.LA(1)) { case REI_PROGRAMMPUNKT: enterOuterAlt(_localctx, 1); { - setState(325); + setState(326); rei_programmpunkt(); } break; case REI_PROGRAMMPUNKTGRUPPE: enterOuterAlt(_localctx, 2); { - setState(326); + setState(327); rei_programmpunktgruppe(); } break; @@ -1296,26 +1313,26 @@ PhContext _localctx = new PhContext(_ctx, getState()); enterRule(_localctx, 22, RULE_ph); try { - setState(332); + setState(333); switch (_input.LA(1)) { case P_HERKUNFTSLAND_LANG: enterOuterAlt(_localctx, 1); { - setState(329); + setState(330); p_herkunftsland_lang(); } break; case P_HERKUNFTSLAND_KURZ: enterOuterAlt(_localctx, 2); { - setState(330); + setState(331); p_herkunftsland_kurz(); } break; case P_HERKUNFTSLAND_S: enterOuterAlt(_localctx, 3); { - setState(331); + setState(332); p_herkunftsland_s(); } break; @@ -1359,19 +1376,19 @@ PgContext _localctx = new PgContext(_ctx, getState()); enterRule(_localctx, 24, RULE_pg); try { - setState(336); + setState(337); switch (_input.LA(1)) { case P_GEMEINDESCHLUESSEL: enterOuterAlt(_localctx, 1); { - setState(334); + setState(335); p_gemeindeschluessel(); } break; case P_GEMEINDENAME: enterOuterAlt(_localctx, 2); { - setState(335); + setState(336); p_gemeindename(); } break; @@ -1415,19 +1432,19 @@ PkContext _localctx = new PkContext(_ctx, getState()); enterRule(_localctx, 26, RULE_pk); try { - setState(340); + setState(341); switch (_input.LA(1)) { case P_KOORDINATEN: enterOuterAlt(_localctx, 1); { - setState(338); + setState(339); p_koordinaten(); } break; case P_KOORDINATEN_S: enterOuterAlt(_localctx, 2); { - setState(339); + setState(340); p_koordinaten_s(); } break; @@ -1471,19 +1488,19 @@ ZbContext _localctx = new ZbContext(_ctx, getState()); enterRule(_localctx, 28, RULE_zb); try { - setState(344); + setState(345); switch (_input.LA(1)) { case ZEITBASIS: enterOuterAlt(_localctx, 1); { - setState(342); + setState(343); zeitbasis(); } break; case ZEITBASIS_S: enterOuterAlt(_localctx, 2); { - setState(343); + setState(344); zeitbasis_s(); } break; @@ -1527,19 +1544,19 @@ PzbContext _localctx = new PzbContext(_ctx, getState()); enterRule(_localctx, 30, RULE_pzb); try { - setState(348); + setState(349); switch (_input.LA(1)) { case PROBENZUSATZBESCHREIBUNG: enterOuterAlt(_localctx, 1); { - setState(346); + setState(347); probenzusatzbeschreibung(); } break; case PZB_S: enterOuterAlt(_localctx, 2); { - setState(347); + setState(348); pzb_s(); } break; @@ -1583,19 +1600,19 @@ PkomContext _localctx = new PkomContext(_ctx, getState()); enterRule(_localctx, 32, RULE_pkom); try { - setState(352); + setState(353); switch (_input.LA(1)) { case PROBENKOMMENTAR: enterOuterAlt(_localctx, 1); { - setState(350); + setState(351); probenkommentar(); } break; case PROBENKOMMENTAR_T: enterOuterAlt(_localctx, 2); { - setState(351); + setState(352); probenkommentar_t(); } break; @@ -1642,26 +1659,26 @@ SdmContext _localctx = new SdmContext(_ctx, getState()); enterRule(_localctx, 34, RULE_sdm); try { - setState(357); + setState(358); switch (_input.LA(1)) { case STAAT_DER_MESSSTELLE_LANG: enterOuterAlt(_localctx, 1); { - setState(354); + setState(355); staat_der_messstelle_lang(); } break; case STAAT_DER_MESSSTELLE_KURZ: enterOuterAlt(_localctx, 2); { - setState(355); + setState(356); staat_der_messstelle_kurz(); } break; case STAAT_DER_MESSSTELLE_S: enterOuterAlt(_localctx, 3); { - setState(356); + setState(357); staat_der_messstelle_s(); } break; @@ -1705,19 +1722,19 @@ PnhContext _localctx = new PnhContext(_ctx, getState()); enterRule(_localctx, 36, RULE_pnh); try { - setState(361); + setState(362); switch (_input.LA(1)) { case PROBEN_NR: enterOuterAlt(_localctx, 1); { - setState(359); + setState(360); proben_nr(); } break; case HAUPTPROBENNUMMER: enterOuterAlt(_localctx, 2); { - setState(360); + setState(361); hauptprobennummer(); } break; @@ -1761,19 +1778,19 @@ MmContext _localctx = new MmContext(_ctx, getState()); enterRule(_localctx, 38, RULE_mm); try { - setState(365); + setState(366); switch (_input.LA(1)) { case MESSMETHODE_C: enterOuterAlt(_localctx, 1); { - setState(363); + setState(364); messmethode_c(); } break; case MESSMETHODE_S: enterOuterAlt(_localctx, 2); { - setState(364); + setState(365); messmethode_s(); } break; @@ -1835,61 +1852,61 @@ MwContext _localctx = new MwContext(_ctx, getState()); enterRule(_localctx, 40, RULE_mw); try { - setState(375); + setState(376); switch (_input.LA(1)) { case MESSWERT: enterOuterAlt(_localctx, 1); { - setState(367); + setState(368); messwert(); } break; case MESSWERT_S: enterOuterAlt(_localctx, 2); { - setState(368); + setState(369); messwert_s(); } break; case MESSWERT_I: enterOuterAlt(_localctx, 3); { - setState(369); + setState(370); messwert_i(); } break; case MESSWERT_G: enterOuterAlt(_localctx, 4); { - setState(370); + setState(371); messwert_g(); } break; case MESSWERT_NWG: enterOuterAlt(_localctx, 5); { - setState(371); + setState(372); messwert_nwg(); } break; case MESSWERT_NWG_S: enterOuterAlt(_localctx, 6); { - setState(372); + setState(373); messwert_nwg_s(); } break; case MESSWERT_NWG_I: enterOuterAlt(_localctx, 7); { - setState(373); + setState(374); messwert_nwg_i(); } break; case MESSWERT_NWG_G: enterOuterAlt(_localctx, 8); { - setState(374); + setState(375); messwert_nwg_g(); } break; @@ -1933,19 +1950,19 @@ Mess_kommentarContext _localctx = new Mess_kommentarContext(_ctx, getState()); enterRule(_localctx, 42, RULE_mess_kommentar); try { - setState(379); + setState(380); switch (_input.LA(1)) { case KOMMENTAR: enterOuterAlt(_localctx, 1); { - setState(377); + setState(378); kommentar(); } break; case KOMMENTAR_T: enterOuterAlt(_localctx, 2); { - setState(378); + setState(379); kommentar_t(); } break; @@ -1989,19 +2006,19 @@ PnContext _localctx = new PnContext(_ctx, getState()); enterRule(_localctx, 44, RULE_pn); try { - setState(383); + setState(384); switch (_input.LA(1)) { case PROBEN_NR: enterOuterAlt(_localctx, 1); { - setState(381); + setState(382); proben_nr(); } break; case NEBENPROBENNUMMER: enterOuterAlt(_localctx, 2); { - setState(382); + setState(383); nebenprobennummer(); } break; @@ -2048,19 +2065,19 @@ try { enterOuterAlt(_localctx, 1); { - setState(385); + setState(386); match(T__3); - setState(389); + setState(390); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << U_HERKUNFTSLAND_LANG) | (1L << U_HERKUNFTSLAND_KURZ) | (1L << U_HERKUNFTSLAND_S) | (1L << U_GEMEINDESCHLUESSEL) | (1L << U_GEMEINDENAME) | (1L << U_ORTS_ZUSATZKENNZAHL) | (1L << U_KOORDINATEN) | (1L << U_KOORDINATEN_S) | (1L << U_ORTS_ZUSATZCODE) | (1L << U_ORTS_ZUSATZTEXT) | (1L << U_NUTS_CODE))) != 0)) { { { - setState(386); + setState(387); ursprungsortdaten(); } } - setState(391); + setState(392); _errHandler.sync(this); _la = _input.LA(1); } @@ -2117,14 +2134,14 @@ UrsprungsortdatenContext _localctx = new UrsprungsortdatenContext(_ctx, getState()); enterRule(_localctx, 48, RULE_ursprungsortdaten); try { - setState(399); + setState(400); switch (_input.LA(1)) { case U_HERKUNFTSLAND_LANG: case U_HERKUNFTSLAND_KURZ: case U_HERKUNFTSLAND_S: enterOuterAlt(_localctx, 1); { - setState(392); + setState(393); uh(); } break; @@ -2132,14 +2149,14 @@ case U_GEMEINDENAME: enterOuterAlt(_localctx, 2); { - setState(393); + setState(394); ug(); } break; case U_ORTS_ZUSATZKENNZAHL: enterOuterAlt(_localctx, 3); { - setState(394); + setState(395); u_orts_zusatzkennzahl(); } break; @@ -2147,28 +2164,28 @@ case U_KOORDINATEN_S: enterOuterAlt(_localctx, 4); { - setState(395); + setState(396); uk(); } break; case U_ORTS_ZUSATZCODE: enterOuterAlt(_localctx, 5); { - setState(396); + setState(397); u_orts_zusatzcode(); } break; case U_ORTS_ZUSATZTEXT: enterOuterAlt(_localctx, 6); { - setState(397); + setState(398); u_orts_zusatztext(); } break; case U_NUTS_CODE: enterOuterAlt(_localctx, 7); { - setState(398); + setState(399); u_nuts_code(); } break; @@ -2215,26 +2232,26 @@ UhContext _localctx = new UhContext(_ctx, getState()); enterRule(_localctx, 50, RULE_uh); try { - setState(404); + setState(405); switch (_input.LA(1)) { case U_HERKUNFTSLAND_LANG: enterOuterAlt(_localctx, 1); { - setState(401); + setState(402); u_herkunftsland_lang(); } break; case U_HERKUNFTSLAND_KURZ: enterOuterAlt(_localctx, 2); { - setState(402); + setState(403); u_herkunftsland_kurz(); } break; case U_HERKUNFTSLAND_S: enterOuterAlt(_localctx, 3); { - setState(403); + setState(404); u_herkunftsland_s(); } break; @@ -2278,19 +2295,19 @@ UgContext _localctx = new UgContext(_ctx, getState()); enterRule(_localctx, 52, RULE_ug); try { - setState(408); + setState(409); switch (_input.LA(1)) { case U_GEMEINDESCHLUESSEL: enterOuterAlt(_localctx, 1); { - setState(406); + setState(407); u_gemeindeschluessel(); } break; case U_GEMEINDENAME: enterOuterAlt(_localctx, 2); { - setState(407); + setState(408); u_gemeindename(); } break; @@ -2334,19 +2351,19 @@ UkContext _localctx = new UkContext(_ctx, getState()); enterRule(_localctx, 54, RULE_uk); try { - setState(412); + setState(413); switch (_input.LA(1)) { case U_KOORDINATEN: enterOuterAlt(_localctx, 1); { - setState(410); + setState(411); u_koordinaten(); } break; case U_KOORDINATEN_S: enterOuterAlt(_localctx, 2); { - setState(411); + setState(412); u_koordinaten_s(); } break; @@ -2390,9 +2407,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(414); + setState(415); match(VERSION); - setState(415); + setState(416); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -2437,9 +2454,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(417); + setState(418); match(UEBERTRAGUNGSFORMAT); - setState(418); + setState(419); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -2484,9 +2501,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(420); + setState(421); match(DATENBASIS); - setState(421); + setState(422); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -2529,9 +2546,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(423); + setState(424); match(DATENBASIS_S); - setState(424); + setState(425); match(STRING); } } @@ -2571,9 +2588,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(426); + setState(427); match(NETZKENNUNG); - setState(427); + setState(428); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -2618,9 +2635,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(429); + setState(430); match(ERZEUGER); - setState(430); + setState(431); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -2665,9 +2682,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(432); + setState(433); match(STAAT_DER_MESSSTELLE_LANG); - setState(433); + setState(434); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -2712,9 +2729,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(435); + setState(436); match(STAAT_DER_MESSSTELLE_KURZ); - setState(436); + setState(437); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -2757,9 +2774,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(438); + setState(439); match(STAAT_DER_MESSSTELLE_S); - setState(439); + setState(440); match(STRING); } } @@ -2799,9 +2816,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(441); + setState(442); match(MESSSTELLE); - setState(442); + setState(443); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -2846,9 +2863,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(444); + setState(445); match(MESSLABOR); - setState(445); + setState(446); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -2893,9 +2910,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(447); + setState(448); match(PROBE_ID); - setState(448); + setState(449); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -2938,9 +2955,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(450); + setState(451); match(MESSUNGS_ID); - setState(451); + setState(452); match(STRING); } } @@ -2980,9 +2997,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(453); + setState(454); match(PROBEN_NR); - setState(454); + setState(455); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3027,9 +3044,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(456); + setState(457); match(HAUPTPROBENNUMMER); - setState(457); + setState(458); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3074,9 +3091,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(459); + setState(460); match(NEBENPROBENNUMMER); - setState(460); + setState(461); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3121,9 +3138,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(462); + setState(463); match(MESSPROGRAMM_C); - setState(463); + setState(464); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3168,9 +3185,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(465); + setState(466); match(MESSPROGRAMM_S); - setState(466); + setState(467); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3215,9 +3232,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(468); + setState(469); match(MESSPROGRAMM_LAND); - setState(469); + setState(470); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3262,9 +3279,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(471); + setState(472); match(PROBENAHMEINSTITUTION); - setState(472); + setState(473); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3309,9 +3326,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(474); + setState(475); match(PROBENART); - setState(475); + setState(476); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3356,9 +3373,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(477); + setState(478); match(ZEITBASIS); - setState(478); + setState(479); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3401,9 +3418,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(480); + setState(481); match(ZEITBASIS_S); - setState(481); + setState(482); match(STRING); } } @@ -3445,25 +3462,25 @@ try { enterOuterAlt(_localctx, 1); { - setState(483); + setState(484); match(SOLL_DATUM_UHRZEIT_A); - setState(484); + setState(485); match(STRING); - setState(488); + setState(489); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(485); + setState(486); match(T__4); } } - setState(490); + setState(491); _errHandler.sync(this); _la = _input.LA(1); } - setState(491); + setState(492); match(STRING); } } @@ -3505,25 +3522,25 @@ try { enterOuterAlt(_localctx, 1); { - setState(493); + setState(494); match(SOLL_DATUM_UHRZEIT_E); - setState(494); + setState(495); match(STRING); - setState(498); + setState(499); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(495); + setState(496); match(T__4); } } - setState(500); + setState(501); _errHandler.sync(this); _la = _input.LA(1); } - setState(501); + setState(502); match(STRING); } } @@ -3565,25 +3582,25 @@ try { enterOuterAlt(_localctx, 1); { - setState(503); + setState(504); match(URSPRUNGS_DATUM_UHRZEIT); - setState(504); + setState(505); match(STRING); - setState(508); + setState(509); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(505); + setState(506); match(T__4); } } - setState(510); + setState(511); _errHandler.sync(this); _la = _input.LA(1); } - setState(511); + setState(512); match(STRING); } } @@ -3625,25 +3642,25 @@ try { enterOuterAlt(_localctx, 1); { - setState(513); + setState(514); match(PROBENAHME_DATUM_UHRZEIT_A); - setState(514); + setState(515); match(STRING); - setState(518); + setState(519); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(515); + setState(516); match(T__4); } } - setState(520); + setState(521); _errHandler.sync(this); _la = _input.LA(1); } - setState(521); + setState(522); match(STRING); } } @@ -3685,25 +3702,25 @@ try { enterOuterAlt(_localctx, 1); { - setState(523); + setState(524); match(PROBENAHME_DATUM_UHRZEIT_E); - setState(524); + setState(525); match(STRING); - setState(528); + setState(529); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(525); + setState(526); match(T__4); } } - setState(530); + setState(531); _errHandler.sync(this); _la = _input.LA(1); } - setState(531); + setState(532); match(STRING); } } @@ -3743,9 +3760,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(533); + setState(534); match(UMWELTBEREICH_C); - setState(534); + setState(535); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3790,9 +3807,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(536); + setState(537); match(UMWELTBEREICH_S); - setState(537); + setState(538); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3837,9 +3854,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(539); + setState(540); match(DESKRIPTOREN); - setState(540); + setState(541); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3884,9 +3901,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(542); + setState(543); match(REI_PROGRAMMPUNKT); - setState(543); + setState(544); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3931,9 +3948,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(545); + setState(546); match(REI_PROGRAMMPUNKTGRUPPE); - setState(546); + setState(547); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -3980,25 +3997,25 @@ try { enterOuterAlt(_localctx, 1); { - setState(548); + setState(549); match(REFERENZ_DATUM_UHRZEIT); - setState(549); + setState(550); match(STRING); - setState(553); + setState(554); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(550); + setState(551); match(T__4); } } - setState(555); + setState(556); _errHandler.sync(this); _la = _input.LA(1); } - setState(556); + setState(557); match(STRING); } } @@ -4036,9 +4053,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(558); + setState(559); match(TESTDATEN); - setState(559); + setState(560); match(STRING); } } @@ -4078,9 +4095,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(561); + setState(562); match(SZENARIO); - setState(562); + setState(563); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -4125,9 +4142,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(564); + setState(565); match(SEK_DATENBASIS); - setState(565); + setState(566); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -4170,9 +4187,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(567); + setState(568); match(SEK_DATENBASIS_S); - setState(568); + setState(569); match(STRING); } } @@ -4212,9 +4229,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(570); + setState(571); match(U_HERKUNFTSLAND_LANG); - setState(571); + setState(572); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -4259,9 +4276,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(573); + setState(574); match(U_HERKUNFTSLAND_KURZ); - setState(574); + setState(575); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -4304,9 +4321,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(576); + setState(577); match(U_HERKUNFTSLAND_S); - setState(577); + setState(578); match(STRING); } } @@ -4344,9 +4361,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(579); + setState(580); match(U_GEMEINDESCHLUESSEL); - setState(580); + setState(581); match(STRING); } } @@ -4386,9 +4403,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(582); + setState(583); match(U_GEMEINDENAME); - setState(583); + setState(584); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -4431,9 +4448,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(585); + setState(586); match(U_ORTS_ZUSATZKENNZAHL); - setState(586); + setState(587); match(STRING); } } @@ -4479,51 +4496,51 @@ try { enterOuterAlt(_localctx, 1); { - setState(588); + setState(589); match(U_KOORDINATEN); - setState(589); + setState(590); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(593); + setState(594); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(590); + setState(591); match(T__4); } } - setState(595); + setState(596); _errHandler.sync(this); _la = _input.LA(1); } - setState(596); + setState(597); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(600); + setState(601); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(597); + setState(598); match(T__4); } } - setState(602); + setState(603); _errHandler.sync(this); _la = _input.LA(1); } - setState(603); + setState(604); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -4574,46 +4591,46 @@ try { enterOuterAlt(_localctx, 1); { - setState(605); + setState(606); match(U_KOORDINATEN_S); - setState(606); + setState(607); match(STRING); - setState(610); + setState(611); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(607); + setState(608); match(T__4); } } - setState(612); + setState(613); _errHandler.sync(this); _la = _input.LA(1); } - setState(613); + setState(614); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(617); + setState(618); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(614); + setState(615); match(T__4); } } - setState(619); + setState(620); _errHandler.sync(this); _la = _input.LA(1); } - setState(620); + setState(621); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -4658,9 +4675,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(622); + setState(623); match(U_ORTS_ZUSATZCODE); - setState(623); + setState(624); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -4705,9 +4722,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(625); + setState(626); match(U_ORTS_ZUSATZTEXT); - setState(626); + setState(627); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -4729,6 +4746,7 @@ public static class U_nuts_codeContext extends ParserRuleContext { public TerminalNode U_NUTS_CODE() { return getToken(LafParser.U_NUTS_CODE, 0); } + public TerminalNode STRING_ESC() { return getToken(LafParser.STRING_ESC, 0); } public TerminalNode STRING() { return getToken(LafParser.STRING, 0); } public U_nuts_codeContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -4747,13 +4765,19 @@ public final U_nuts_codeContext u_nuts_code() throws RecognitionException { U_nuts_codeContext _localctx = new U_nuts_codeContext(_ctx, getState()); enterRule(_localctx, 152, RULE_u_nuts_code); + int _la; try { enterOuterAlt(_localctx, 1); { - setState(628); + setState(629); match(U_NUTS_CODE); - setState(629); - match(STRING); + setState(630); + _la = _input.LA(1); + if ( !(_la==STRING_ESC || _la==STRING) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } } } catch (RecognitionException re) { @@ -4792,9 +4816,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(631); + setState(632); match(P_HERKUNFTSLAND_LANG); - setState(632); + setState(633); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -4839,9 +4863,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(634); + setState(635); match(P_HERKUNFTSLAND_KURZ); - setState(635); + setState(636); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -4884,9 +4908,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(637); + setState(638); match(P_HERKUNFTSLAND_S); - setState(638); + setState(639); match(STRING); } } @@ -4924,9 +4948,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(640); + setState(641); match(P_GEMEINDESCHLUESSEL); - setState(641); + setState(642); match(STRING); } } @@ -4966,9 +4990,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(643); + setState(644); match(P_GEMEINDENAME); - setState(644); + setState(645); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -5011,9 +5035,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(646); + setState(647); match(P_ORTS_ZUSATZKENNZAHL); - setState(647); + setState(648); match(STRING); } } @@ -5059,51 +5083,51 @@ try { enterOuterAlt(_localctx, 1); { - setState(649); + setState(650); match(P_KOORDINATEN); - setState(650); + setState(651); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(654); + setState(655); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(651); + setState(652); match(T__4); } } - setState(656); + setState(657); _errHandler.sync(this); _la = _input.LA(1); } - setState(657); + setState(658); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(661); + setState(662); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(658); + setState(659); match(T__4); } } - setState(663); + setState(664); _errHandler.sync(this); _la = _input.LA(1); } - setState(664); + setState(665); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -5154,46 +5178,46 @@ try { enterOuterAlt(_localctx, 1); { - setState(666); + setState(667); match(P_KOORDINATEN_S); - setState(667); + setState(668); match(STRING); - setState(671); + setState(672); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(668); + setState(669); match(T__4); } } - setState(673); + setState(674); _errHandler.sync(this); _la = _input.LA(1); } - setState(674); + setState(675); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(678); + setState(679); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(675); + setState(676); match(T__4); } } - setState(680); + setState(681); _errHandler.sync(this); _la = _input.LA(1); } - setState(681); + setState(682); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -5238,9 +5262,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(683); + setState(684); match(P_ORTS_ZUSATZCODE); - setState(684); + setState(685); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -5285,9 +5309,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(686); + setState(687); match(P_ORTS_ZUSATZTEXT); - setState(687); + setState(688); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -5309,6 +5333,7 @@ public static class P_nuts_codeContext extends ParserRuleContext { public TerminalNode P_NUTS_CODE() { return getToken(LafParser.P_NUTS_CODE, 0); } + public TerminalNode STRING_ESC() { return getToken(LafParser.STRING_ESC, 0); } public TerminalNode STRING() { return getToken(LafParser.STRING, 0); } public P_nuts_codeContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -5327,13 +5352,19 @@ public final P_nuts_codeContext p_nuts_code() throws RecognitionException { P_nuts_codeContext _localctx = new P_nuts_codeContext(_ctx, getState()); enterRule(_localctx, 174, RULE_p_nuts_code); + int _la; try { enterOuterAlt(_localctx, 1); { - setState(689); + setState(690); match(P_NUTS_CODE); - setState(690); - match(STRING); + setState(691); + _la = _input.LA(1); + if ( !(_la==STRING_ESC || _la==STRING) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } } } catch (RecognitionException re) { @@ -5372,9 +5403,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(692); + setState(693); match(P_SITE_ID); - setState(693); + setState(694); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -5419,9 +5450,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(695); + setState(696); match(P_SITE_NAME); - setState(696); + setState(697); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -5464,9 +5495,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(698); + setState(699); match(P_HOEHE_NN); - setState(699); + setState(700); match(STRING); } } @@ -5504,9 +5535,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(701); + setState(702); match(P_HOEHE_LAND); - setState(702); + setState(703); match(STRING); } } @@ -5546,9 +5577,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(704); + setState(705); match(MEHRZWECKFELD); - setState(705); + setState(706); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -5595,25 +5626,25 @@ try { enterOuterAlt(_localctx, 1); { - setState(707); + setState(708); match(MESS_DATUM_UHRZEIT); - setState(708); + setState(709); match(STRING); - setState(712); + setState(713); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(709); + setState(710); match(T__4); } } - setState(714); + setState(715); _errHandler.sync(this); _la = _input.LA(1); } - setState(715); + setState(716); match(STRING); } } @@ -5651,9 +5682,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(717); + setState(718); match(MESSZEIT_SEKUNDEN); - setState(718); + setState(719); match(STRING); } } @@ -5693,9 +5724,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(720); + setState(721); match(MESSMETHODE_C); - setState(721); + setState(722); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -5740,9 +5771,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(723); + setState(724); match(MESSMETHODE_S); - setState(724); + setState(725); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -5787,9 +5818,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(726); + setState(727); match(BEARBEITUNGSSTATUS); - setState(727); + setState(728); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -5832,9 +5863,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(729); + setState(730); match(PEP_FLAG); - setState(730); + setState(731); match(STRING); } } @@ -5872,9 +5903,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(732); + setState(733); match(ERFASSUNG_ABGESCHLOSSEN); - setState(733); + setState(734); match(STRING); } } @@ -5920,67 +5951,67 @@ try { enterOuterAlt(_localctx, 1); { - setState(735); + setState(736); match(PROBENZUSATZBESCHREIBUNG); - setState(736); + setState(737); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(740); + setState(741); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(737); + setState(738); match(T__4); } } - setState(742); + setState(743); _errHandler.sync(this); _la = _input.LA(1); } - setState(743); + setState(744); match(STRING); - setState(747); + setState(748); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(744); + setState(745); match(T__4); } } - setState(749); + setState(750); _errHandler.sync(this); _la = _input.LA(1); } - setState(750); + setState(751); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(754); + setState(755); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(751); + setState(752); match(T__4); } } - setState(756); + setState(757); _errHandler.sync(this); _la = _input.LA(1); } - setState(757); + setState(758); match(STRING); } } @@ -6023,62 +6054,62 @@ try { enterOuterAlt(_localctx, 1); { - setState(759); + setState(760); match(PZB_S); - setState(760); + setState(761); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(764); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==T__4) { - { - { - setState(761); - match(T__4); - } - } - setState(766); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(767); - match(STRING); - setState(771); + setState(765); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(768); + setState(762); match(T__4); } } - setState(773); + setState(767); _errHandler.sync(this); _la = _input.LA(1); } - setState(774); + setState(768); match(STRING); - setState(778); + setState(772); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(775); + setState(769); match(T__4); } } - setState(780); + setState(774); _errHandler.sync(this); _la = _input.LA(1); } - setState(781); + setState(775); + match(STRING); + setState(779); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__4) { + { + { + setState(776); + match(T__4); + } + } + setState(781); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(782); match(STRING); } } @@ -6124,71 +6155,71 @@ try { enterOuterAlt(_localctx, 1); { - setState(783); + setState(784); match(MESSWERT); - setState(784); + setState(785); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(788); + setState(789); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(785); + setState(786); match(T__4); } } - setState(790); + setState(791); _errHandler.sync(this); _la = _input.LA(1); } - setState(791); + setState(792); match(STRING); - setState(795); + setState(796); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(792); + setState(793); match(T__4); } } - setState(797); + setState(798); _errHandler.sync(this); _la = _input.LA(1); } - setState(798); + setState(799); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(802); + setState(803); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(799); + setState(800); match(T__4); } } - setState(804); + setState(805); _errHandler.sync(this); _la = _input.LA(1); } - setState(806); + setState(807); _la = _input.LA(1); if (_la==STRING) { { - setState(805); + setState(806); match(STRING); } } @@ -6233,61 +6264,61 @@ try { enterOuterAlt(_localctx, 1); { - setState(808); + setState(809); match(MESSWERT_S); - setState(809); + setState(810); match(STRING); - setState(813); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==T__4) { - { - { - setState(810); - match(T__4); - } - } - setState(815); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(816); - match(STRING); - setState(820); + setState(814); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(817); + setState(811); match(T__4); } } - setState(822); + setState(816); _errHandler.sync(this); _la = _input.LA(1); } - setState(823); + setState(817); match(STRING); - setState(827); + setState(821); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(824); + setState(818); match(T__4); } } - setState(829); + setState(823); _errHandler.sync(this); _la = _input.LA(1); } - setState(831); + setState(824); + match(STRING); + setState(828); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__4) { + { + { + setState(825); + match(T__4); + } + } + setState(830); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(832); _la = _input.LA(1); if (_la==STRING) { { - setState(830); + setState(831); match(STRING); } } @@ -6336,140 +6367,140 @@ try { enterOuterAlt(_localctx, 1); { - setState(833); - match(MESSWERT_I); setState(834); - _la = _input.LA(1); - if ( !(_la==STRING_ESC || _la==STRING) ) { - _errHandler.recoverInline(this); - } else { - consume(); - } - setState(838); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==T__4) { - { - { - setState(835); - match(T__4); - } - } - setState(840); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(841); - match(STRING); - setState(845); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==T__4) { - { - { - setState(842); - match(T__4); - } - } - setState(847); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(848); + match(MESSWERT_I); + setState(835); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(852); + setState(839); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(849); + setState(836); match(T__4); } } - setState(854); + setState(841); _errHandler.sync(this); _la = _input.LA(1); } - setState(862); + setState(842); + match(STRING); + setState(846); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__4) { + { + { + setState(843); + match(T__4); + } + } + setState(848); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(849); + _la = _input.LA(1); + if ( !(_la==STRING_ESC || _la==STRING) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } + setState(853); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__4) { + { + { + setState(850); + match(T__4); + } + } + setState(855); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(863); switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { case 1: { - setState(855); + setState(856); match(STRING); - setState(859); + setState(860); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(856); + setState(857); match(T__4); } } - setState(861); + setState(862); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(871); + setState(872); switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { case 1: { - setState(864); + setState(865); match(STRING); - setState(868); + setState(869); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(865); + setState(866); match(T__4); } } - setState(870); + setState(871); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(880); + setState(881); switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { case 1: { - setState(873); + setState(874); match(STRING); - setState(877); + setState(878); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(874); + setState(875); match(T__4); } } - setState(879); + setState(880); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(883); + setState(884); _la = _input.LA(1); if (_la==STRING_ESC || _la==STRING) { { - setState(882); + setState(883); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -6523,140 +6554,140 @@ try { enterOuterAlt(_localctx, 1); { - setState(885); - match(MESSWERT_G); setState(886); - _la = _input.LA(1); - if ( !(_la==STRING_ESC || _la==STRING) ) { - _errHandler.recoverInline(this); - } else { - consume(); - } - setState(890); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==T__4) { - { - { - setState(887); - match(T__4); - } - } - setState(892); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(893); - match(STRING); - setState(897); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==T__4) { - { - { - setState(894); - match(T__4); - } - } - setState(899); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(900); + match(MESSWERT_G); + setState(887); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(904); + setState(891); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(901); + setState(888); match(T__4); } } - setState(906); + setState(893); _errHandler.sync(this); _la = _input.LA(1); } - setState(914); + setState(894); + match(STRING); + setState(898); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__4) { + { + { + setState(895); + match(T__4); + } + } + setState(900); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(901); + _la = _input.LA(1); + if ( !(_la==STRING_ESC || _la==STRING) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } + setState(905); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__4) { + { + { + setState(902); + match(T__4); + } + } + setState(907); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(915); switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) { case 1: { - setState(907); + setState(908); match(STRING); - setState(911); + setState(912); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(908); + setState(909); match(T__4); } } - setState(913); + setState(914); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(923); + setState(924); switch ( getInterpreter().adaptivePredict(_input,73,_ctx) ) { case 1: { - setState(916); + setState(917); match(STRING); - setState(920); + setState(921); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(917); + setState(918); match(T__4); } } - setState(922); + setState(923); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(932); + setState(933); switch ( getInterpreter().adaptivePredict(_input,75,_ctx) ) { case 1: { - setState(925); + setState(926); match(STRING); - setState(929); + setState(930); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(926); + setState(927); match(T__4); } } - setState(931); + setState(932); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(935); + setState(936); _la = _input.LA(1); if (_la==STRING_ESC || _la==STRING) { { - setState(934); + setState(935); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -6710,94 +6741,94 @@ try { enterOuterAlt(_localctx, 1); { - setState(937); + setState(938); match(MESSWERT_NWG); - setState(938); + setState(939); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(942); + setState(943); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(939); + setState(940); match(T__4); } } - setState(944); + setState(945); _errHandler.sync(this); _la = _input.LA(1); } - setState(945); + setState(946); match(STRING); - setState(949); + setState(950); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(946); + setState(947); match(T__4); } } - setState(951); + setState(952); _errHandler.sync(this); _la = _input.LA(1); } - setState(952); + setState(953); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(956); + setState(957); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(953); + setState(954); match(T__4); } } - setState(958); + setState(959); _errHandler.sync(this); _la = _input.LA(1); } - setState(966); + setState(967); switch ( getInterpreter().adaptivePredict(_input,81,_ctx) ) { case 1: { - setState(959); + setState(960); match(STRING); - setState(963); + setState(964); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(960); + setState(961); match(T__4); } } - setState(965); + setState(966); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(969); + setState(970); _la = _input.LA(1); if (_la==STRING) { { - setState(968); + setState(969); match(STRING); } } @@ -6842,84 +6873,84 @@ try { enterOuterAlt(_localctx, 1); { - setState(971); + setState(972); match(MESSWERT_NWG_S); - setState(972); + setState(973); match(STRING); - setState(976); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==T__4) { - { - { - setState(973); - match(T__4); - } - } - setState(978); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(979); - match(STRING); - setState(983); + setState(977); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(980); + setState(974); match(T__4); } } - setState(985); + setState(979); _errHandler.sync(this); _la = _input.LA(1); } - setState(986); + setState(980); match(STRING); - setState(990); + setState(984); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(987); + setState(981); match(T__4); } } - setState(992); + setState(986); _errHandler.sync(this); _la = _input.LA(1); } - setState(1000); + setState(987); + match(STRING); + setState(991); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__4) { + { + { + setState(988); + match(T__4); + } + } + setState(993); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(1001); switch ( getInterpreter().adaptivePredict(_input,87,_ctx) ) { case 1: { - setState(993); + setState(994); match(STRING); - setState(997); + setState(998); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(994); + setState(995); match(T__4); } } - setState(999); + setState(1000); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(1003); + setState(1004); _la = _input.LA(1); if (_la==STRING) { { - setState(1002); + setState(1003); match(STRING); } } @@ -6968,159 +6999,159 @@ try { enterOuterAlt(_localctx, 1); { - setState(1005); + setState(1006); match(MESSWERT_NWG_I); - setState(1006); + setState(1007); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(1010); + setState(1011); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1007); + setState(1008); match(T__4); } } - setState(1012); + setState(1013); _errHandler.sync(this); _la = _input.LA(1); } - setState(1013); + setState(1014); match(STRING); - setState(1017); + setState(1018); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1014); + setState(1015); match(T__4); } } - setState(1019); + setState(1020); _errHandler.sync(this); _la = _input.LA(1); } - setState(1020); + setState(1021); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(1024); + setState(1025); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1021); + setState(1022); match(T__4); } } - setState(1026); + setState(1027); _errHandler.sync(this); _la = _input.LA(1); } - setState(1034); + setState(1035); switch ( getInterpreter().adaptivePredict(_input,93,_ctx) ) { case 1: { - setState(1027); + setState(1028); match(STRING); - setState(1031); + setState(1032); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1028); + setState(1029); match(T__4); } } - setState(1033); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - break; - } - setState(1043); - switch ( getInterpreter().adaptivePredict(_input,95,_ctx) ) { - case 1: - { - setState(1036); - match(STRING); - setState(1040); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==T__4) { - { - { - setState(1037); - match(T__4); - } - } - setState(1042); + setState(1034); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(1052); - switch ( getInterpreter().adaptivePredict(_input,97,_ctx) ) { + setState(1044); + switch ( getInterpreter().adaptivePredict(_input,95,_ctx) ) { case 1: { - setState(1045); + setState(1037); match(STRING); - setState(1049); + setState(1041); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1046); + setState(1038); match(T__4); } } - setState(1051); + setState(1043); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(1061); - switch ( getInterpreter().adaptivePredict(_input,99,_ctx) ) { + setState(1053); + switch ( getInterpreter().adaptivePredict(_input,97,_ctx) ) { case 1: { - setState(1054); + setState(1046); match(STRING); - setState(1058); + setState(1050); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1055); + setState(1047); match(T__4); } } - setState(1060); + setState(1052); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(1063); + setState(1062); + switch ( getInterpreter().adaptivePredict(_input,99,_ctx) ) { + case 1: + { + setState(1055); + match(STRING); + setState(1059); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__4) { + { + { + setState(1056); + match(T__4); + } + } + setState(1061); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + break; + } + setState(1064); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -7171,156 +7202,156 @@ try { enterOuterAlt(_localctx, 1); { - setState(1065); + setState(1066); match(MESSWERT_NWG_G); - setState(1066); + setState(1067); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(1070); + setState(1071); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1067); + setState(1068); match(T__4); } } - setState(1072); + setState(1073); _errHandler.sync(this); _la = _input.LA(1); } - setState(1073); + setState(1074); match(STRING); - setState(1077); + setState(1078); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1074); + setState(1075); match(T__4); } } - setState(1079); + setState(1080); _errHandler.sync(this); _la = _input.LA(1); } - setState(1080); + setState(1081); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(1084); + setState(1085); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1081); + setState(1082); match(T__4); } } - setState(1086); + setState(1087); _errHandler.sync(this); _la = _input.LA(1); } - setState(1094); + setState(1095); switch ( getInterpreter().adaptivePredict(_input,104,_ctx) ) { case 1: { - setState(1087); + setState(1088); match(STRING); - setState(1091); + setState(1092); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1088); + setState(1089); match(T__4); } } - setState(1093); + setState(1094); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(1096); + setState(1097); match(STRING); - setState(1100); + setState(1101); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1097); + setState(1098); match(T__4); } } - setState(1102); + setState(1103); _errHandler.sync(this); _la = _input.LA(1); } - setState(1110); + setState(1111); switch ( getInterpreter().adaptivePredict(_input,107,_ctx) ) { case 1: { - setState(1103); + setState(1104); match(STRING); - setState(1107); + setState(1108); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1104); + setState(1105); match(T__4); } } - setState(1109); + setState(1110); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(1119); + setState(1120); switch ( getInterpreter().adaptivePredict(_input,109,_ctx) ) { case 1: { - setState(1112); + setState(1113); match(STRING); - setState(1116); + setState(1117); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1113); + setState(1114); match(T__4); } } - setState(1118); + setState(1119); _errHandler.sync(this); _la = _input.LA(1); } } break; } - setState(1122); + setState(1123); _la = _input.LA(1); if (_la==STRING_ESC || _la==STRING) { { - setState(1121); + setState(1122); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -7374,62 +7405,62 @@ try { enterOuterAlt(_localctx, 1); { - setState(1124); + setState(1125); match(KOMMENTAR); - setState(1125); + setState(1126); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(1129); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==T__4) { - { - { - setState(1126); - match(T__4); - } - } - setState(1131); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(1132); - match(STRING); - setState(1136); + setState(1130); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1133); + setState(1127); match(T__4); } } - setState(1138); + setState(1132); _errHandler.sync(this); _la = _input.LA(1); } - setState(1139); + setState(1133); match(STRING); - setState(1143); + setState(1137); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1140); + setState(1134); match(T__4); } } - setState(1145); + setState(1139); _errHandler.sync(this); _la = _input.LA(1); } - setState(1146); + setState(1140); + match(STRING); + setState(1144); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__4) { + { + { + setState(1141); + match(T__4); + } + } + setState(1146); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(1147); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -7474,9 +7505,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(1148); + setState(1149); match(KOMMENTAR_T); - setState(1149); + setState(1150); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -7527,62 +7558,62 @@ try { enterOuterAlt(_localctx, 1); { - setState(1151); + setState(1152); match(PROBENKOMMENTAR); - setState(1152); + setState(1153); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); } else { consume(); } - setState(1156); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==T__4) { - { - { - setState(1153); - match(T__4); - } - } - setState(1158); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(1159); - match(STRING); - setState(1163); + setState(1157); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1160); + setState(1154); match(T__4); } } - setState(1165); + setState(1159); _errHandler.sync(this); _la = _input.LA(1); } - setState(1166); + setState(1160); match(STRING); - setState(1170); + setState(1164); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__4) { { { - setState(1167); + setState(1161); match(T__4); } } - setState(1172); + setState(1166); _errHandler.sync(this); _la = _input.LA(1); } - setState(1173); + setState(1167); + match(STRING); + setState(1171); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__4) { + { + { + setState(1168); + match(T__4); + } + } + setState(1173); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(1174); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -7627,9 +7658,9 @@ try { enterOuterAlt(_localctx, 1); { - setState(1175); + setState(1176); match(PROBENKOMMENTAR_T); - setState(1176); + setState(1177); _la = _input.LA(1); if ( !(_la==STRING_ESC || _la==STRING) ) { _errHandler.recoverInline(this); @@ -7650,7 +7681,7 @@ } public static final String _serializedATN = - "\3\u0430\ud6d1\u8206\uad2d\u4417\uaef1\u8d80\uaadd\3b\u049d\4\2\t\2\4"+ + "\3\u0430\ud6d1\u8206\uad2d\u4417\uaef1\u8d80\uaadd\3b\u049e\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"+ @@ -7666,429 +7697,430 @@ "\2\16\2\u00eb\13\2\3\2\5\2\u00ee\n\2\3\2\3\2\3\3\3\3\3\4\3\4\6\4\u00f6"+ "\n\4\r\4\16\4\u00f7\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\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"+ - "\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\u0124\n\5\3\6\5\6"+ - "\u0127\n\6\3\6\6\6\u012a\n\6\r\6\16\6\u012b\3\7\3\7\3\b\3\b\3\b\3\b\3"+ - "\b\3\b\3\b\3\b\3\b\3\b\5\b\u013a\n\b\3\t\3\t\5\t\u013e\n\t\3\n\3\n\5\n"+ - "\u0142\n\n\3\13\3\13\5\13\u0146\n\13\3\f\3\f\5\f\u014a\n\f\3\r\3\r\3\r"+ - "\5\r\u014f\n\r\3\16\3\16\5\16\u0153\n\16\3\17\3\17\5\17\u0157\n\17\3\20"+ - "\3\20\5\20\u015b\n\20\3\21\3\21\5\21\u015f\n\21\3\22\3\22\5\22\u0163\n"+ - "\22\3\23\3\23\3\23\5\23\u0168\n\23\3\24\3\24\5\24\u016c\n\24\3\25\3\25"+ - "\5\25\u0170\n\25\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\5\26\u017a\n"+ - "\26\3\27\3\27\5\27\u017e\n\27\3\30\3\30\5\30\u0182\n\30\3\31\3\31\7\31"+ - "\u0186\n\31\f\31\16\31\u0189\13\31\3\32\3\32\3\32\3\32\3\32\3\32\3\32"+ - "\5\32\u0192\n\32\3\33\3\33\3\33\5\33\u0197\n\33\3\34\3\34\5\34\u019b\n"+ - "\34\3\35\3\35\5\35\u019f\n\35\3\36\3\36\3\36\3\37\3\37\3\37\3 \3 \3 \3"+ - "!\3!\3!\3\"\3\"\3\"\3#\3#\3#\3$\3$\3$\3%\3%\3%\3&\3&\3&\3\'\3\'\3\'\3"+ - "(\3(\3(\3)\3)\3)\3*\3*\3*\3+\3+\3+\3,\3,\3,\3-\3-\3-\3.\3.\3.\3/\3/\3"+ - "/\3\60\3\60\3\60\3\61\3\61\3\61\3\62\3\62\3\62\3\63\3\63\3\63\3\64\3\64"+ - "\3\64\3\65\3\65\3\65\7\65\u01e9\n\65\f\65\16\65\u01ec\13\65\3\65\3\65"+ - "\3\66\3\66\3\66\7\66\u01f3\n\66\f\66\16\66\u01f6\13\66\3\66\3\66\3\67"+ - "\3\67\3\67\7\67\u01fd\n\67\f\67\16\67\u0200\13\67\3\67\3\67\38\38\38\7"+ - "8\u0207\n8\f8\168\u020a\138\38\38\39\39\39\79\u0211\n9\f9\169\u0214\13"+ - "9\39\39\3:\3:\3:\3;\3;\3;\3<\3<\3<\3=\3=\3=\3>\3>\3>\3?\3?\3?\7?\u022a"+ - "\n?\f?\16?\u022d\13?\3?\3?\3@\3@\3@\3A\3A\3A\3B\3B\3B\3C\3C\3C\3D\3D\3"+ - "D\3E\3E\3E\3F\3F\3F\3G\3G\3G\3H\3H\3H\3I\3I\3I\3J\3J\3J\7J\u0252\nJ\f"+ - "J\16J\u0255\13J\3J\3J\7J\u0259\nJ\fJ\16J\u025c\13J\3J\3J\3K\3K\3K\7K\u0263"+ - "\nK\fK\16K\u0266\13K\3K\3K\7K\u026a\nK\fK\16K\u026d\13K\3K\3K\3L\3L\3"+ + "\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\u0125\n\5\3\6"+ + "\5\6\u0128\n\6\3\6\6\6\u012b\n\6\r\6\16\6\u012c\3\7\3\7\3\b\3\b\3\b\3"+ + "\b\3\b\3\b\3\b\3\b\3\b\3\b\5\b\u013b\n\b\3\t\3\t\5\t\u013f\n\t\3\n\3\n"+ + "\5\n\u0143\n\n\3\13\3\13\5\13\u0147\n\13\3\f\3\f\5\f\u014b\n\f\3\r\3\r"+ + "\3\r\5\r\u0150\n\r\3\16\3\16\5\16\u0154\n\16\3\17\3\17\5\17\u0158\n\17"+ + "\3\20\3\20\5\20\u015c\n\20\3\21\3\21\5\21\u0160\n\21\3\22\3\22\5\22\u0164"+ + "\n\22\3\23\3\23\3\23\5\23\u0169\n\23\3\24\3\24\5\24\u016d\n\24\3\25\3"+ + "\25\5\25\u0171\n\25\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\5\26\u017b"+ + "\n\26\3\27\3\27\5\27\u017f\n\27\3\30\3\30\5\30\u0183\n\30\3\31\3\31\7"+ + "\31\u0187\n\31\f\31\16\31\u018a\13\31\3\32\3\32\3\32\3\32\3\32\3\32\3"+ + "\32\5\32\u0193\n\32\3\33\3\33\3\33\5\33\u0198\n\33\3\34\3\34\5\34\u019c"+ + "\n\34\3\35\3\35\5\35\u01a0\n\35\3\36\3\36\3\36\3\37\3\37\3\37\3 \3 \3"+ + " \3!\3!\3!\3\"\3\"\3\"\3#\3#\3#\3$\3$\3$\3%\3%\3%\3&\3&\3&\3\'\3\'\3\'"+ + "\3(\3(\3(\3)\3)\3)\3*\3*\3*\3+\3+\3+\3,\3,\3,\3-\3-\3-\3.\3.\3.\3/\3/"+ + "\3/\3\60\3\60\3\60\3\61\3\61\3\61\3\62\3\62\3\62\3\63\3\63\3\63\3\64\3"+ + "\64\3\64\3\65\3\65\3\65\7\65\u01ea\n\65\f\65\16\65\u01ed\13\65\3\65\3"+ + "\65\3\66\3\66\3\66\7\66\u01f4\n\66\f\66\16\66\u01f7\13\66\3\66\3\66\3"+ + "\67\3\67\3\67\7\67\u01fe\n\67\f\67\16\67\u0201\13\67\3\67\3\67\38\38\3"+ + "8\78\u0208\n8\f8\168\u020b\138\38\38\39\39\39\79\u0212\n9\f9\169\u0215"+ + "\139\39\39\3:\3:\3:\3;\3;\3;\3<\3<\3<\3=\3=\3=\3>\3>\3>\3?\3?\3?\7?\u022b"+ + "\n?\f?\16?\u022e\13?\3?\3?\3@\3@\3@\3A\3A\3A\3B\3B\3B\3C\3C\3C\3D\3D\3"+ + "D\3E\3E\3E\3F\3F\3F\3G\3G\3G\3H\3H\3H\3I\3I\3I\3J\3J\3J\7J\u0253\nJ\f"+ + "J\16J\u0256\13J\3J\3J\7J\u025a\nJ\fJ\16J\u025d\13J\3J\3J\3K\3K\3K\7K\u0264"+ + "\nK\fK\16K\u0267\13K\3K\3K\7K\u026b\nK\fK\16K\u026e\13K\3K\3K\3L\3L\3"+ "L\3M\3M\3M\3N\3N\3N\3O\3O\3O\3P\3P\3P\3Q\3Q\3Q\3R\3R\3R\3S\3S\3S\3T\3"+ - "T\3T\3U\3U\3U\7U\u028f\nU\fU\16U\u0292\13U\3U\3U\7U\u0296\nU\fU\16U\u0299"+ - "\13U\3U\3U\3V\3V\3V\7V\u02a0\nV\fV\16V\u02a3\13V\3V\3V\7V\u02a7\nV\fV"+ - "\16V\u02aa\13V\3V\3V\3W\3W\3W\3X\3X\3X\3Y\3Y\3Y\3Z\3Z\3Z\3[\3[\3[\3\\"+ - "\3\\\3\\\3]\3]\3]\3^\3^\3^\3_\3_\3_\7_\u02c9\n_\f_\16_\u02cc\13_\3_\3"+ - "_\3`\3`\3`\3a\3a\3a\3b\3b\3b\3c\3c\3c\3d\3d\3d\3e\3e\3e\3f\3f\3f\7f\u02e5"+ - "\nf\ff\16f\u02e8\13f\3f\3f\7f\u02ec\nf\ff\16f\u02ef\13f\3f\3f\7f\u02f3"+ - "\nf\ff\16f\u02f6\13f\3f\3f\3g\3g\3g\7g\u02fd\ng\fg\16g\u0300\13g\3g\3"+ - "g\7g\u0304\ng\fg\16g\u0307\13g\3g\3g\7g\u030b\ng\fg\16g\u030e\13g\3g\3"+ - "g\3h\3h\3h\7h\u0315\nh\fh\16h\u0318\13h\3h\3h\7h\u031c\nh\fh\16h\u031f"+ - "\13h\3h\3h\7h\u0323\nh\fh\16h\u0326\13h\3h\5h\u0329\nh\3i\3i\3i\7i\u032e"+ - "\ni\fi\16i\u0331\13i\3i\3i\7i\u0335\ni\fi\16i\u0338\13i\3i\3i\7i\u033c"+ - "\ni\fi\16i\u033f\13i\3i\5i\u0342\ni\3j\3j\3j\7j\u0347\nj\fj\16j\u034a"+ - "\13j\3j\3j\7j\u034e\nj\fj\16j\u0351\13j\3j\3j\7j\u0355\nj\fj\16j\u0358"+ - "\13j\3j\3j\7j\u035c\nj\fj\16j\u035f\13j\5j\u0361\nj\3j\3j\7j\u0365\nj"+ - "\fj\16j\u0368\13j\5j\u036a\nj\3j\3j\7j\u036e\nj\fj\16j\u0371\13j\5j\u0373"+ - "\nj\3j\5j\u0376\nj\3k\3k\3k\7k\u037b\nk\fk\16k\u037e\13k\3k\3k\7k\u0382"+ - "\nk\fk\16k\u0385\13k\3k\3k\7k\u0389\nk\fk\16k\u038c\13k\3k\3k\7k\u0390"+ - "\nk\fk\16k\u0393\13k\5k\u0395\nk\3k\3k\7k\u0399\nk\fk\16k\u039c\13k\5"+ - "k\u039e\nk\3k\3k\7k\u03a2\nk\fk\16k\u03a5\13k\5k\u03a7\nk\3k\5k\u03aa"+ - "\nk\3l\3l\3l\7l\u03af\nl\fl\16l\u03b2\13l\3l\3l\7l\u03b6\nl\fl\16l\u03b9"+ - "\13l\3l\3l\7l\u03bd\nl\fl\16l\u03c0\13l\3l\3l\7l\u03c4\nl\fl\16l\u03c7"+ - "\13l\5l\u03c9\nl\3l\5l\u03cc\nl\3m\3m\3m\7m\u03d1\nm\fm\16m\u03d4\13m"+ - "\3m\3m\7m\u03d8\nm\fm\16m\u03db\13m\3m\3m\7m\u03df\nm\fm\16m\u03e2\13"+ - "m\3m\3m\7m\u03e6\nm\fm\16m\u03e9\13m\5m\u03eb\nm\3m\5m\u03ee\nm\3n\3n"+ - "\3n\7n\u03f3\nn\fn\16n\u03f6\13n\3n\3n\7n\u03fa\nn\fn\16n\u03fd\13n\3"+ - "n\3n\7n\u0401\nn\fn\16n\u0404\13n\3n\3n\7n\u0408\nn\fn\16n\u040b\13n\5"+ - "n\u040d\nn\3n\3n\7n\u0411\nn\fn\16n\u0414\13n\5n\u0416\nn\3n\3n\7n\u041a"+ - "\nn\fn\16n\u041d\13n\5n\u041f\nn\3n\3n\7n\u0423\nn\fn\16n\u0426\13n\5"+ - "n\u0428\nn\3n\3n\3o\3o\3o\7o\u042f\no\fo\16o\u0432\13o\3o\3o\7o\u0436"+ - "\no\fo\16o\u0439\13o\3o\3o\7o\u043d\no\fo\16o\u0440\13o\3o\3o\7o\u0444"+ - "\no\fo\16o\u0447\13o\5o\u0449\no\3o\3o\7o\u044d\no\fo\16o\u0450\13o\3"+ - "o\3o\7o\u0454\no\fo\16o\u0457\13o\5o\u0459\no\3o\3o\7o\u045d\no\fo\16"+ - "o\u0460\13o\5o\u0462\no\3o\5o\u0465\no\3p\3p\3p\7p\u046a\np\fp\16p\u046d"+ - "\13p\3p\3p\7p\u0471\np\fp\16p\u0474\13p\3p\3p\7p\u0478\np\fp\16p\u047b"+ - "\13p\3p\3p\3q\3q\3q\3r\3r\3r\7r\u0485\nr\fr\16r\u0488\13r\3r\3r\7r\u048c"+ - "\nr\fr\16r\u048f\13r\3r\3r\7r\u0493\nr\fr\16r\u0496\13r\3r\3r\3s\3s\3"+ + "T\3T\3U\3U\3U\7U\u0290\nU\fU\16U\u0293\13U\3U\3U\7U\u0297\nU\fU\16U\u029a"+ + "\13U\3U\3U\3V\3V\3V\7V\u02a1\nV\fV\16V\u02a4\13V\3V\3V\7V\u02a8\nV\fV"+ + "\16V\u02ab\13V\3V\3V\3W\3W\3W\3X\3X\3X\3Y\3Y\3Y\3Z\3Z\3Z\3[\3[\3[\3\\"+ + "\3\\\3\\\3]\3]\3]\3^\3^\3^\3_\3_\3_\7_\u02ca\n_\f_\16_\u02cd\13_\3_\3"+ + "_\3`\3`\3`\3a\3a\3a\3b\3b\3b\3c\3c\3c\3d\3d\3d\3e\3e\3e\3f\3f\3f\7f\u02e6"+ + "\nf\ff\16f\u02e9\13f\3f\3f\7f\u02ed\nf\ff\16f\u02f0\13f\3f\3f\7f\u02f4"+ + "\nf\ff\16f\u02f7\13f\3f\3f\3g\3g\3g\7g\u02fe\ng\fg\16g\u0301\13g\3g\3"+ + "g\7g\u0305\ng\fg\16g\u0308\13g\3g\3g\7g\u030c\ng\fg\16g\u030f\13g\3g\3"+ + "g\3h\3h\3h\7h\u0316\nh\fh\16h\u0319\13h\3h\3h\7h\u031d\nh\fh\16h\u0320"+ + "\13h\3h\3h\7h\u0324\nh\fh\16h\u0327\13h\3h\5h\u032a\nh\3i\3i\3i\7i\u032f"+ + "\ni\fi\16i\u0332\13i\3i\3i\7i\u0336\ni\fi\16i\u0339\13i\3i\3i\7i\u033d"+ + "\ni\fi\16i\u0340\13i\3i\5i\u0343\ni\3j\3j\3j\7j\u0348\nj\fj\16j\u034b"+ + "\13j\3j\3j\7j\u034f\nj\fj\16j\u0352\13j\3j\3j\7j\u0356\nj\fj\16j\u0359"+ + "\13j\3j\3j\7j\u035d\nj\fj\16j\u0360\13j\5j\u0362\nj\3j\3j\7j\u0366\nj"+ + "\fj\16j\u0369\13j\5j\u036b\nj\3j\3j\7j\u036f\nj\fj\16j\u0372\13j\5j\u0374"+ + "\nj\3j\5j\u0377\nj\3k\3k\3k\7k\u037c\nk\fk\16k\u037f\13k\3k\3k\7k\u0383"+ + "\nk\fk\16k\u0386\13k\3k\3k\7k\u038a\nk\fk\16k\u038d\13k\3k\3k\7k\u0391"+ + "\nk\fk\16k\u0394\13k\5k\u0396\nk\3k\3k\7k\u039a\nk\fk\16k\u039d\13k\5"+ + "k\u039f\nk\3k\3k\7k\u03a3\nk\fk\16k\u03a6\13k\5k\u03a8\nk\3k\5k\u03ab"+ + "\nk\3l\3l\3l\7l\u03b0\nl\fl\16l\u03b3\13l\3l\3l\7l\u03b7\nl\fl\16l\u03ba"+ + "\13l\3l\3l\7l\u03be\nl\fl\16l\u03c1\13l\3l\3l\7l\u03c5\nl\fl\16l\u03c8"+ + "\13l\5l\u03ca\nl\3l\5l\u03cd\nl\3m\3m\3m\7m\u03d2\nm\fm\16m\u03d5\13m"+ + "\3m\3m\7m\u03d9\nm\fm\16m\u03dc\13m\3m\3m\7m\u03e0\nm\fm\16m\u03e3\13"+ + "m\3m\3m\7m\u03e7\nm\fm\16m\u03ea\13m\5m\u03ec\nm\3m\5m\u03ef\nm\3n\3n"+ + "\3n\7n\u03f4\nn\fn\16n\u03f7\13n\3n\3n\7n\u03fb\nn\fn\16n\u03fe\13n\3"+ + "n\3n\7n\u0402\nn\fn\16n\u0405\13n\3n\3n\7n\u0409\nn\fn\16n\u040c\13n\5"+ + "n\u040e\nn\3n\3n\7n\u0412\nn\fn\16n\u0415\13n\5n\u0417\nn\3n\3n\7n\u041b"+ + "\nn\fn\16n\u041e\13n\5n\u0420\nn\3n\3n\7n\u0424\nn\fn\16n\u0427\13n\5"+ + "n\u0429\nn\3n\3n\3o\3o\3o\7o\u0430\no\fo\16o\u0433\13o\3o\3o\7o\u0437"+ + "\no\fo\16o\u043a\13o\3o\3o\7o\u043e\no\fo\16o\u0441\13o\3o\3o\7o\u0445"+ + "\no\fo\16o\u0448\13o\5o\u044a\no\3o\3o\7o\u044e\no\fo\16o\u0451\13o\3"+ + "o\3o\7o\u0455\no\fo\16o\u0458\13o\5o\u045a\no\3o\3o\7o\u045e\no\fo\16"+ + "o\u0461\13o\5o\u0463\no\3o\5o\u0466\no\3p\3p\3p\7p\u046b\np\fp\16p\u046e"+ + "\13p\3p\3p\7p\u0472\np\fp\16p\u0475\13p\3p\3p\7p\u0479\np\fp\16p\u047c"+ + "\13p\3p\3p\3q\3q\3q\3r\3r\3r\7r\u0486\nr\fr\16r\u0489\13r\3r\3r\7r\u048d"+ + "\nr\fr\16r\u0490\13r\3r\3r\7r\u0494\nr\fr\16r\u0497\13r\3r\3r\3s\3s\3"+ "s\3s\2\2t\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\66"+ "8:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a"+ "\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e\u00a0\u00a2"+ "\u00a4\u00a6\u00a8\u00aa\u00ac\u00ae\u00b0\u00b2\u00b4\u00b6\u00b8\u00ba"+ "\u00bc\u00be\u00c0\u00c2\u00c4\u00c6\u00c8\u00ca\u00cc\u00ce\u00d0\u00d2"+ - "\u00d4\u00d6\u00d8\u00da\u00dc\u00de\u00e0\u00e2\u00e4\2\3\3\2`a\u04dd"+ - "\2\u00e9\3\2\2\2\4\u00f1\3\2\2\2\6\u00f3\3\2\2\2\b\u0123\3\2\2\2\n\u0126"+ - "\3\2\2\2\f\u012d\3\2\2\2\16\u0139\3\2\2\2\20\u013d\3\2\2\2\22\u0141\3"+ - "\2\2\2\24\u0145\3\2\2\2\26\u0149\3\2\2\2\30\u014e\3\2\2\2\32\u0152\3\2"+ - "\2\2\34\u0156\3\2\2\2\36\u015a\3\2\2\2 \u015e\3\2\2\2\"\u0162\3\2\2\2"+ - "$\u0167\3\2\2\2&\u016b\3\2\2\2(\u016f\3\2\2\2*\u0179\3\2\2\2,\u017d\3"+ - "\2\2\2.\u0181\3\2\2\2\60\u0183\3\2\2\2\62\u0191\3\2\2\2\64\u0196\3\2\2"+ - "\2\66\u019a\3\2\2\28\u019e\3\2\2\2:\u01a0\3\2\2\2<\u01a3\3\2\2\2>\u01a6"+ - "\3\2\2\2@\u01a9\3\2\2\2B\u01ac\3\2\2\2D\u01af\3\2\2\2F\u01b2\3\2\2\2H"+ - "\u01b5\3\2\2\2J\u01b8\3\2\2\2L\u01bb\3\2\2\2N\u01be\3\2\2\2P\u01c1\3\2"+ - "\2\2R\u01c4\3\2\2\2T\u01c7\3\2\2\2V\u01ca\3\2\2\2X\u01cd\3\2\2\2Z\u01d0"+ - "\3\2\2\2\\\u01d3\3\2\2\2^\u01d6\3\2\2\2`\u01d9\3\2\2\2b\u01dc\3\2\2\2"+ - "d\u01df\3\2\2\2f\u01e2\3\2\2\2h\u01e5\3\2\2\2j\u01ef\3\2\2\2l\u01f9\3"+ - "\2\2\2n\u0203\3\2\2\2p\u020d\3\2\2\2r\u0217\3\2\2\2t\u021a\3\2\2\2v\u021d"+ - "\3\2\2\2x\u0220\3\2\2\2z\u0223\3\2\2\2|\u0226\3\2\2\2~\u0230\3\2\2\2\u0080"+ - "\u0233\3\2\2\2\u0082\u0236\3\2\2\2\u0084\u0239\3\2\2\2\u0086\u023c\3\2"+ - "\2\2\u0088\u023f\3\2\2\2\u008a\u0242\3\2\2\2\u008c\u0245\3\2\2\2\u008e"+ - "\u0248\3\2\2\2\u0090\u024b\3\2\2\2\u0092\u024e\3\2\2\2\u0094\u025f\3\2"+ - "\2\2\u0096\u0270\3\2\2\2\u0098\u0273\3\2\2\2\u009a\u0276\3\2\2\2\u009c"+ - "\u0279\3\2\2\2\u009e\u027c\3\2\2\2\u00a0\u027f\3\2\2\2\u00a2\u0282\3\2"+ - "\2\2\u00a4\u0285\3\2\2\2\u00a6\u0288\3\2\2\2\u00a8\u028b\3\2\2\2\u00aa"+ - "\u029c\3\2\2\2\u00ac\u02ad\3\2\2\2\u00ae\u02b0\3\2\2\2\u00b0\u02b3\3\2"+ - "\2\2\u00b2\u02b6\3\2\2\2\u00b4\u02b9\3\2\2\2\u00b6\u02bc\3\2\2\2\u00b8"+ - "\u02bf\3\2\2\2\u00ba\u02c2\3\2\2\2\u00bc\u02c5\3\2\2\2\u00be\u02cf\3\2"+ - "\2\2\u00c0\u02d2\3\2\2\2\u00c2\u02d5\3\2\2\2\u00c4\u02d8\3\2\2\2\u00c6"+ - "\u02db\3\2\2\2\u00c8\u02de\3\2\2\2\u00ca\u02e1\3\2\2\2\u00cc\u02f9\3\2"+ - "\2\2\u00ce\u0311\3\2\2\2\u00d0\u032a\3\2\2\2\u00d2\u0343\3\2\2\2\u00d4"+ - "\u0377\3\2\2\2\u00d6\u03ab\3\2\2\2\u00d8\u03cd\3\2\2\2\u00da\u03ef\3\2"+ - "\2\2\u00dc\u042b\3\2\2\2\u00de\u0466\3\2\2\2\u00e0\u047e\3\2\2\2\u00e2"+ - "\u0481\3\2\2\2\u00e4\u0499\3\2\2\2\u00e6\u00e8\5\6\4\2\u00e7\u00e6\3\2"+ + "\u00d4\u00d6\u00d8\u00da\u00dc\u00de\u00e0\u00e2\u00e4\2\3\3\2`a\u04df"+ + "\2\u00e9\3\2\2\2\4\u00f1\3\2\2\2\6\u00f3\3\2\2\2\b\u0124\3\2\2\2\n\u0127"+ + "\3\2\2\2\f\u012e\3\2\2\2\16\u013a\3\2\2\2\20\u013e\3\2\2\2\22\u0142\3"+ + "\2\2\2\24\u0146\3\2\2\2\26\u014a\3\2\2\2\30\u014f\3\2\2\2\32\u0153\3\2"+ + "\2\2\34\u0157\3\2\2\2\36\u015b\3\2\2\2 \u015f\3\2\2\2\"\u0163\3\2\2\2"+ + "$\u0168\3\2\2\2&\u016c\3\2\2\2(\u0170\3\2\2\2*\u017a\3\2\2\2,\u017e\3"+ + "\2\2\2.\u0182\3\2\2\2\60\u0184\3\2\2\2\62\u0192\3\2\2\2\64\u0197\3\2\2"+ + "\2\66\u019b\3\2\2\28\u019f\3\2\2\2:\u01a1\3\2\2\2<\u01a4\3\2\2\2>\u01a7"+ + "\3\2\2\2@\u01aa\3\2\2\2B\u01ad\3\2\2\2D\u01b0\3\2\2\2F\u01b3\3\2\2\2H"+ + "\u01b6\3\2\2\2J\u01b9\3\2\2\2L\u01bc\3\2\2\2N\u01bf\3\2\2\2P\u01c2\3\2"+ + "\2\2R\u01c5\3\2\2\2T\u01c8\3\2\2\2V\u01cb\3\2\2\2X\u01ce\3\2\2\2Z\u01d1"+ + "\3\2\2\2\\\u01d4\3\2\2\2^\u01d7\3\2\2\2`\u01da\3\2\2\2b\u01dd\3\2\2\2"+ + "d\u01e0\3\2\2\2f\u01e3\3\2\2\2h\u01e6\3\2\2\2j\u01f0\3\2\2\2l\u01fa\3"+ + "\2\2\2n\u0204\3\2\2\2p\u020e\3\2\2\2r\u0218\3\2\2\2t\u021b\3\2\2\2v\u021e"+ + "\3\2\2\2x\u0221\3\2\2\2z\u0224\3\2\2\2|\u0227\3\2\2\2~\u0231\3\2\2\2\u0080"+ + "\u0234\3\2\2\2\u0082\u0237\3\2\2\2\u0084\u023a\3\2\2\2\u0086\u023d\3\2"+ + "\2\2\u0088\u0240\3\2\2\2\u008a\u0243\3\2\2\2\u008c\u0246\3\2\2\2\u008e"+ + "\u0249\3\2\2\2\u0090\u024c\3\2\2\2\u0092\u024f\3\2\2\2\u0094\u0260\3\2"+ + "\2\2\u0096\u0271\3\2\2\2\u0098\u0274\3\2\2\2\u009a\u0277\3\2\2\2\u009c"+ + "\u027a\3\2\2\2\u009e\u027d\3\2\2\2\u00a0\u0280\3\2\2\2\u00a2\u0283\3\2"+ + "\2\2\u00a4\u0286\3\2\2\2\u00a6\u0289\3\2\2\2\u00a8\u028c\3\2\2\2\u00aa"+ + "\u029d\3\2\2\2\u00ac\u02ae\3\2\2\2\u00ae\u02b1\3\2\2\2\u00b0\u02b4\3\2"+ + "\2\2\u00b2\u02b7\3\2\2\2\u00b4\u02ba\3\2\2\2\u00b6\u02bd\3\2\2\2\u00b8"+ + "\u02c0\3\2\2\2\u00ba\u02c3\3\2\2\2\u00bc\u02c6\3\2\2\2\u00be\u02d0\3\2"+ + "\2\2\u00c0\u02d3\3\2\2\2\u00c2\u02d6\3\2\2\2\u00c4\u02d9\3\2\2\2\u00c6"+ + "\u02dc\3\2\2\2\u00c8\u02df\3\2\2\2\u00ca\u02e2\3\2\2\2\u00cc\u02fa\3\2"+ + "\2\2\u00ce\u0312\3\2\2\2\u00d0\u032b\3\2\2\2\u00d2\u0344\3\2\2\2\u00d4"+ + "\u0378\3\2\2\2\u00d6\u03ac\3\2\2\2\u00d8\u03ce\3\2\2\2\u00da\u03f0\3\2"+ + "\2\2\u00dc\u042c\3\2\2\2\u00de\u0467\3\2\2\2\u00e0\u047f\3\2\2\2\u00e2"+ + "\u0482\3\2\2\2\u00e4\u049a\3\2\2\2\u00e6\u00e8\5\6\4\2\u00e7\u00e6\3\2"+ "\2\2\u00e8\u00eb\3\2\2\2\u00e9\u00e7\3\2\2\2\u00e9\u00ea\3\2\2\2\u00ea"+ "\u00ed\3\2\2\2\u00eb\u00e9\3\2\2\2\u00ec\u00ee\5\4\3\2\u00ed\u00ec\3\2"+ "\2\2\u00ed\u00ee\3\2\2\2\u00ee\u00ef\3\2\2\2\u00ef\u00f0\7\2\2\3\u00f0"+ "\3\3\2\2\2\u00f1\u00f2\7\3\2\2\u00f2\5\3\2\2\2\u00f3\u00f5\7\4\2\2\u00f4"+ "\u00f6\5\b\5\2\u00f5\u00f4\3\2\2\2\u00f6\u00f7\3\2\2\2\u00f7\u00f5\3\2"+ - "\2\2\u00f7\u00f8\3\2\2\2\u00f8\7\3\2\2\2\u00f9\u0124\5\20\t\2\u00fa\u0124"+ - "\5:\36\2\u00fb\u0124\5<\37\2\u00fc\u0124\5B\"\2\u00fd\u0124\5D#\2\u00fe"+ - "\u0124\5$\23\2\u00ff\u0124\5L\'\2\u0100\u0124\5N(\2\u0101\u0124\5P)\2"+ - "\u0102\u0124\5&\24\2\u0103\u0124\5\22\n\2\u0104\u0124\5^\60\2\u0105\u0124"+ - "\5`\61\2\u0106\u0124\5b\62\2\u0107\u0124\5\36\20\2\u0108\u0124\5n8\2\u0109"+ - "\u0124\5p9\2\u010a\u0124\5h\65\2\u010b\u0124\5j\66\2\u010c\u0124\5\24"+ - "\13\2\u010d\u0124\5v<\2\u010e\u0124\5\26\f\2\u010f\u0124\5|?\2\u0110\u0124"+ - "\5~@\2\u0111\u0124\5\u0080A\2\u0112\u0124\5\u0082B\2\u0113\u0124\5\60"+ - "\31\2\u0114\u0124\5\30\r\2\u0115\u0124\5\32\16\2\u0116\u0124\5\u00a6T"+ - "\2\u0117\u0124\5\34\17\2\u0118\u0124\5\u00acW\2\u0119\u0124\5\u00aeX\2"+ - "\u011a\u0124\5\u00b0Y\2\u011b\u0124\5\u00b2Z\2\u011c\u0124\5\u00b4[\2"+ - "\u011d\u0124\5\u00b6\\\2\u011e\u0124\5\u00b8]\2\u011f\u0124\5\u00ba^\2"+ - "\u0120\u0124\5\n\6\2\u0121\u0124\5 \21\2\u0122\u0124\5\"\22\2\u0123\u00f9"+ - "\3\2\2\2\u0123\u00fa\3\2\2\2\u0123\u00fb\3\2\2\2\u0123\u00fc\3\2\2\2\u0123"+ - "\u00fd\3\2\2\2\u0123\u00fe\3\2\2\2\u0123\u00ff\3\2\2\2\u0123\u0100\3\2"+ - "\2\2\u0123\u0101\3\2\2\2\u0123\u0102\3\2\2\2\u0123\u0103\3\2\2\2\u0123"+ - "\u0104\3\2\2\2\u0123\u0105\3\2\2\2\u0123\u0106\3\2\2\2\u0123\u0107\3\2"+ - "\2\2\u0123\u0108\3\2\2\2\u0123\u0109\3\2\2\2\u0123\u010a\3\2\2\2\u0123"+ - "\u010b\3\2\2\2\u0123\u010c\3\2\2\2\u0123\u010d\3\2\2\2\u0123\u010e\3\2"+ - "\2\2\u0123\u010f\3\2\2\2\u0123\u0110\3\2\2\2\u0123\u0111\3\2\2\2\u0123"+ - "\u0112\3\2\2\2\u0123\u0113\3\2\2\2\u0123\u0114\3\2\2\2\u0123\u0115\3\2"+ - "\2\2\u0123\u0116\3\2\2\2\u0123\u0117\3\2\2\2\u0123\u0118\3\2\2\2\u0123"+ - "\u0119\3\2\2\2\u0123\u011a\3\2\2\2\u0123\u011b\3\2\2\2\u0123\u011c\3\2"+ - "\2\2\u0123\u011d\3\2\2\2\u0123\u011e\3\2\2\2\u0123\u011f\3\2\2\2\u0123"+ - "\u0120\3\2\2\2\u0123\u0121\3\2\2\2\u0123\u0122\3\2\2\2\u0124\t\3\2\2\2"+ - "\u0125\u0127\5\f\7\2\u0126\u0125\3\2\2\2\u0126\u0127\3\2\2\2\u0127\u0129"+ - "\3\2\2\2\u0128\u012a\5\16\b\2\u0129\u0128\3\2\2\2\u012a\u012b\3\2\2\2"+ - "\u012b\u0129\3\2\2\2\u012b\u012c\3\2\2\2\u012c\13\3\2\2\2\u012d\u012e"+ - "\7\5\2\2\u012e\r\3\2\2\2\u012f\u013a\5R*\2\u0130\u013a\5.\30\2\u0131\u013a"+ - "\5\u00bc_\2\u0132\u013a\5\u00be`\2\u0133\u013a\5(\25\2\u0134\u013a\5\u00c4"+ - "c\2\u0135\u013a\5\u00c6d\2\u0136\u013a\5\u00c8e\2\u0137\u013a\5\u00ce"+ - "h\2\u0138\u013a\5,\27\2\u0139\u012f\3\2\2\2\u0139\u0130\3\2\2\2\u0139"+ - "\u0131\3\2\2\2\u0139\u0132\3\2\2\2\u0139\u0133\3\2\2\2\u0139\u0134\3\2"+ - "\2\2\u0139\u0135\3\2\2\2\u0139\u0136\3\2\2\2\u0139\u0137\3\2\2\2\u0139"+ - "\u0138\3\2\2\2\u013a\17\3\2\2\2\u013b\u013e\5> \2\u013c\u013e\5@!\2\u013d"+ - "\u013b\3\2\2\2\u013d\u013c\3\2\2\2\u013e\21\3\2\2\2\u013f\u0142\5Z.\2"+ - "\u0140\u0142\5\\/\2\u0141\u013f\3\2\2\2\u0141\u0140\3\2\2\2\u0142\23\3"+ - "\2\2\2\u0143\u0146\5r:\2\u0144\u0146\5t;\2\u0145\u0143\3\2\2\2\u0145\u0144"+ - "\3\2\2\2\u0146\25\3\2\2\2\u0147\u014a\5x=\2\u0148\u014a\5z>\2\u0149\u0147"+ - "\3\2\2\2\u0149\u0148\3\2\2\2\u014a\27\3\2\2\2\u014b\u014f\5\u009cO\2\u014c"+ - "\u014f\5\u009eP\2\u014d\u014f\5\u00a0Q\2\u014e\u014b\3\2\2\2\u014e\u014c"+ - "\3\2\2\2\u014e\u014d\3\2\2\2\u014f\31\3\2\2\2\u0150\u0153\5\u00a2R\2\u0151"+ - "\u0153\5\u00a4S\2\u0152\u0150\3\2\2\2\u0152\u0151\3\2\2\2\u0153\33\3\2"+ - "\2\2\u0154\u0157\5\u00a8U\2\u0155\u0157\5\u00aaV\2\u0156\u0154\3\2\2\2"+ - "\u0156\u0155\3\2\2\2\u0157\35\3\2\2\2\u0158\u015b\5d\63\2\u0159\u015b"+ - "\5f\64\2\u015a\u0158\3\2\2\2\u015a\u0159\3\2\2\2\u015b\37\3\2\2\2\u015c"+ - "\u015f\5\u00caf\2\u015d\u015f\5\u00ccg\2\u015e\u015c\3\2\2\2\u015e\u015d"+ - "\3\2\2\2\u015f!\3\2\2\2\u0160\u0163\5\u00e2r\2\u0161\u0163\5\u00e4s\2"+ - "\u0162\u0160\3\2\2\2\u0162\u0161\3\2\2\2\u0163#\3\2\2\2\u0164\u0168\5"+ - "F$\2\u0165\u0168\5H%\2\u0166\u0168\5J&\2\u0167\u0164\3\2\2\2\u0167\u0165"+ - "\3\2\2\2\u0167\u0166\3\2\2\2\u0168%\3\2\2\2\u0169\u016c\5T+\2\u016a\u016c"+ - "\5V,\2\u016b\u0169\3\2\2\2\u016b\u016a\3\2\2\2\u016c\'\3\2\2\2\u016d\u0170"+ - "\5\u00c0a\2\u016e\u0170\5\u00c2b\2\u016f\u016d\3\2\2\2\u016f\u016e\3\2"+ - "\2\2\u0170)\3\2\2\2\u0171\u017a\5\u00ceh\2\u0172\u017a\5\u00d0i\2\u0173"+ - "\u017a\5\u00d2j\2\u0174\u017a\5\u00d4k\2\u0175\u017a\5\u00d6l\2\u0176"+ - "\u017a\5\u00d8m\2\u0177\u017a\5\u00dan\2\u0178\u017a\5\u00dco\2\u0179"+ - "\u0171\3\2\2\2\u0179\u0172\3\2\2\2\u0179\u0173\3\2\2\2\u0179\u0174\3\2"+ - "\2\2\u0179\u0175\3\2\2\2\u0179\u0176\3\2\2\2\u0179\u0177\3\2\2\2\u0179"+ - "\u0178\3\2\2\2\u017a+\3\2\2\2\u017b\u017e\5\u00dep\2\u017c\u017e\5\u00e0"+ - "q\2\u017d\u017b\3\2\2\2\u017d\u017c\3\2\2\2\u017e-\3\2\2\2\u017f\u0182"+ - "\5T+\2\u0180\u0182\5X-\2\u0181\u017f\3\2\2\2\u0181\u0180\3\2\2\2\u0182"+ - "/\3\2\2\2\u0183\u0187\7\6\2\2\u0184\u0186\5\62\32\2\u0185\u0184\3\2\2"+ - "\2\u0186\u0189\3\2\2\2\u0187\u0185\3\2\2\2\u0187\u0188\3\2\2\2\u0188\61"+ - "\3\2\2\2\u0189\u0187\3\2\2\2\u018a\u0192\5\64\33\2\u018b\u0192\5\66\34"+ - "\2\u018c\u0192\5\u0090I\2\u018d\u0192\58\35\2\u018e\u0192\5\u0096L\2\u018f"+ - "\u0192\5\u0098M\2\u0190\u0192\5\u009aN\2\u0191\u018a\3\2\2\2\u0191\u018b"+ - "\3\2\2\2\u0191\u018c\3\2\2\2\u0191\u018d\3\2\2\2\u0191\u018e\3\2\2\2\u0191"+ - "\u018f\3\2\2\2\u0191\u0190\3\2\2\2\u0192\63\3\2\2\2\u0193\u0197\5\u0086"+ - "D\2\u0194\u0197\5\u0088E\2\u0195\u0197\5\u008aF\2\u0196\u0193\3\2\2\2"+ - "\u0196\u0194\3\2\2\2\u0196\u0195\3\2\2\2\u0197\65\3\2\2\2\u0198\u019b"+ - "\5\u008cG\2\u0199\u019b\5\u008eH\2\u019a\u0198\3\2\2\2\u019a\u0199\3\2"+ - "\2\2\u019b\67\3\2\2\2\u019c\u019f\5\u0092J\2\u019d\u019f\5\u0094K\2\u019e"+ - "\u019c\3\2\2\2\u019e\u019d\3\2\2\2\u019f9\3\2\2\2\u01a0\u01a1\7\b\2\2"+ - "\u01a1\u01a2\t\2\2\2\u01a2;\3\2\2\2\u01a3\u01a4\7\t\2\2\u01a4\u01a5\t"+ - "\2\2\2\u01a5=\3\2\2\2\u01a6\u01a7\7\n\2\2\u01a7\u01a8\t\2\2\2\u01a8?\3"+ - "\2\2\2\u01a9\u01aa\7\13\2\2\u01aa\u01ab\7a\2\2\u01abA\3\2\2\2\u01ac\u01ad"+ - "\7\f\2\2\u01ad\u01ae\t\2\2\2\u01aeC\3\2\2\2\u01af\u01b0\7\r\2\2\u01b0"+ - "\u01b1\t\2\2\2\u01b1E\3\2\2\2\u01b2\u01b3\7\16\2\2\u01b3\u01b4\t\2\2\2"+ - "\u01b4G\3\2\2\2\u01b5\u01b6\7\17\2\2\u01b6\u01b7\t\2\2\2\u01b7I\3\2\2"+ - "\2\u01b8\u01b9\7\20\2\2\u01b9\u01ba\7a\2\2\u01baK\3\2\2\2\u01bb\u01bc"+ - "\7\21\2\2\u01bc\u01bd\t\2\2\2\u01bdM\3\2\2\2\u01be\u01bf\7\22\2\2\u01bf"+ - "\u01c0\t\2\2\2\u01c0O\3\2\2\2\u01c1\u01c2\7\23\2\2\u01c2\u01c3\t\2\2\2"+ - "\u01c3Q\3\2\2\2\u01c4\u01c5\7\24\2\2\u01c5\u01c6\7a\2\2\u01c6S\3\2\2\2"+ - "\u01c7\u01c8\7\25\2\2\u01c8\u01c9\t\2\2\2\u01c9U\3\2\2\2\u01ca\u01cb\7"+ - "\26\2\2\u01cb\u01cc\t\2\2\2\u01ccW\3\2\2\2\u01cd\u01ce\7\27\2\2\u01ce"+ - "\u01cf\t\2\2\2\u01cfY\3\2\2\2\u01d0\u01d1\7\30\2\2\u01d1\u01d2\t\2\2\2"+ - "\u01d2[\3\2\2\2\u01d3\u01d4\7\31\2\2\u01d4\u01d5\t\2\2\2\u01d5]\3\2\2"+ - "\2\u01d6\u01d7\7\32\2\2\u01d7\u01d8\t\2\2\2\u01d8_\3\2\2\2\u01d9\u01da"+ - "\7\33\2\2\u01da\u01db\t\2\2\2\u01dba\3\2\2\2\u01dc\u01dd\7\34\2\2\u01dd"+ - "\u01de\t\2\2\2\u01dec\3\2\2\2\u01df\u01e0\7\35\2\2\u01e0\u01e1\t\2\2\2"+ - "\u01e1e\3\2\2\2\u01e2\u01e3\7\36\2\2\u01e3\u01e4\7a\2\2\u01e4g\3\2\2\2"+ - "\u01e5\u01e6\7\37\2\2\u01e6\u01ea\7a\2\2\u01e7\u01e9\7\7\2\2\u01e8\u01e7"+ - "\3\2\2\2\u01e9\u01ec\3\2\2\2\u01ea\u01e8\3\2\2\2\u01ea\u01eb\3\2\2\2\u01eb"+ - "\u01ed\3\2\2\2\u01ec\u01ea\3\2\2\2\u01ed\u01ee\7a\2\2\u01eei\3\2\2\2\u01ef"+ - "\u01f0\7 \2\2\u01f0\u01f4\7a\2\2\u01f1\u01f3\7\7\2\2\u01f2\u01f1\3\2\2"+ - "\2\u01f3\u01f6\3\2\2\2\u01f4\u01f2\3\2\2\2\u01f4\u01f5\3\2\2\2\u01f5\u01f7"+ - "\3\2\2\2\u01f6\u01f4\3\2\2\2\u01f7\u01f8\7a\2\2\u01f8k\3\2\2\2\u01f9\u01fa"+ - "\7!\2\2\u01fa\u01fe\7a\2\2\u01fb\u01fd\7\7\2\2\u01fc\u01fb\3\2\2\2\u01fd"+ - "\u0200\3\2\2\2\u01fe\u01fc\3\2\2\2\u01fe\u01ff\3\2\2\2\u01ff\u0201\3\2"+ - "\2\2\u0200\u01fe\3\2\2\2\u0201\u0202\7a\2\2\u0202m\3\2\2\2\u0203\u0204"+ - "\7\"\2\2\u0204\u0208\7a\2\2\u0205\u0207\7\7\2\2\u0206\u0205\3\2\2\2\u0207"+ - "\u020a\3\2\2\2\u0208\u0206\3\2\2\2\u0208\u0209\3\2\2\2\u0209\u020b\3\2"+ - "\2\2\u020a\u0208\3\2\2\2\u020b\u020c\7a\2\2\u020co\3\2\2\2\u020d\u020e"+ - "\7#\2\2\u020e\u0212\7a\2\2\u020f\u0211\7\7\2\2\u0210\u020f\3\2\2\2\u0211"+ - "\u0214\3\2\2\2\u0212\u0210\3\2\2\2\u0212\u0213\3\2\2\2\u0213\u0215\3\2"+ - "\2\2\u0214\u0212\3\2\2\2\u0215\u0216\7a\2\2\u0216q\3\2\2\2\u0217\u0218"+ - "\7$\2\2\u0218\u0219\t\2\2\2\u0219s\3\2\2\2\u021a\u021b\7%\2\2\u021b\u021c"+ - "\t\2\2\2\u021cu\3\2\2\2\u021d\u021e\7&\2\2\u021e\u021f\t\2\2\2\u021fw"+ - "\3\2\2\2\u0220\u0221\7\'\2\2\u0221\u0222\t\2\2\2\u0222y\3\2\2\2\u0223"+ - "\u0224\7(\2\2\u0224\u0225\t\2\2\2\u0225{\3\2\2\2\u0226\u0227\7)\2\2\u0227"+ - "\u022b\7a\2\2\u0228\u022a\7\7\2\2\u0229\u0228\3\2\2\2\u022a\u022d\3\2"+ - "\2\2\u022b\u0229\3\2\2\2\u022b\u022c\3\2\2\2\u022c\u022e\3\2\2\2\u022d"+ - "\u022b\3\2\2\2\u022e\u022f\7a\2\2\u022f}\3\2\2\2\u0230\u0231\7*\2\2\u0231"+ - "\u0232\7a\2\2\u0232\177\3\2\2\2\u0233\u0234\7+\2\2\u0234\u0235\t\2\2\2"+ - "\u0235\u0081\3\2\2\2\u0236\u0237\7,\2\2\u0237\u0238\t\2\2\2\u0238\u0083"+ - "\3\2\2\2\u0239\u023a\7-\2\2\u023a\u023b\7a\2\2\u023b\u0085\3\2\2\2\u023c"+ - "\u023d\7.\2\2\u023d\u023e\t\2\2\2\u023e\u0087\3\2\2\2\u023f\u0240\7/\2"+ - "\2\u0240\u0241\t\2\2\2\u0241\u0089\3\2\2\2\u0242\u0243\7\60\2\2\u0243"+ - "\u0244\7a\2\2\u0244\u008b\3\2\2\2\u0245\u0246\7\61\2\2\u0246\u0247\7a"+ - "\2\2\u0247\u008d\3\2\2\2\u0248\u0249\7\62\2\2\u0249\u024a\t\2\2\2\u024a"+ - "\u008f\3\2\2\2\u024b\u024c\7\63\2\2\u024c\u024d\7a\2\2\u024d\u0091\3\2"+ - "\2\2\u024e\u024f\7\64\2\2\u024f\u0253\t\2\2\2\u0250\u0252\7\7\2\2\u0251"+ - "\u0250\3\2\2\2\u0252\u0255\3\2\2\2\u0253\u0251\3\2\2\2\u0253\u0254\3\2"+ - "\2\2\u0254\u0256\3\2\2\2\u0255\u0253\3\2\2\2\u0256\u025a\t\2\2\2\u0257"+ - "\u0259\7\7\2\2\u0258\u0257\3\2\2\2\u0259\u025c\3\2\2\2\u025a\u0258\3\2"+ - "\2\2\u025a\u025b\3\2\2\2\u025b\u025d\3\2\2\2\u025c\u025a\3\2\2\2\u025d"+ - "\u025e\t\2\2\2\u025e\u0093\3\2\2\2\u025f\u0260\7\65\2\2\u0260\u0264\7"+ - "a\2\2\u0261\u0263\7\7\2\2\u0262\u0261\3\2\2\2\u0263\u0266\3\2\2\2\u0264"+ - "\u0262\3\2\2\2\u0264\u0265\3\2\2\2\u0265\u0267\3\2\2\2\u0266\u0264\3\2"+ - "\2\2\u0267\u026b\t\2\2\2\u0268\u026a\7\7\2\2\u0269\u0268\3\2\2\2\u026a"+ - "\u026d\3\2\2\2\u026b\u0269\3\2\2\2\u026b\u026c\3\2\2\2\u026c\u026e\3\2"+ - "\2\2\u026d\u026b\3\2\2\2\u026e\u026f\t\2\2\2\u026f\u0095\3\2\2\2\u0270"+ - "\u0271\7\66\2\2\u0271\u0272\t\2\2\2\u0272\u0097\3\2\2\2\u0273\u0274\7"+ - "\67\2\2\u0274\u0275\t\2\2\2\u0275\u0099\3\2\2\2\u0276\u0277\78\2\2\u0277"+ - "\u0278\7a\2\2\u0278\u009b\3\2\2\2\u0279\u027a\79\2\2\u027a\u027b\t\2\2"+ - "\2\u027b\u009d\3\2\2\2\u027c\u027d\7:\2\2\u027d\u027e\t\2\2\2\u027e\u009f"+ - "\3\2\2\2\u027f\u0280\7;\2\2\u0280\u0281\7a\2\2\u0281\u00a1\3\2\2\2\u0282"+ - "\u0283\7<\2\2\u0283\u0284\7a\2\2\u0284\u00a3\3\2\2\2\u0285\u0286\7=\2"+ - "\2\u0286\u0287\t\2\2\2\u0287\u00a5\3\2\2\2\u0288\u0289\7>\2\2\u0289\u028a"+ - "\7a\2\2\u028a\u00a7\3\2\2\2\u028b\u028c\7?\2\2\u028c\u0290\t\2\2\2\u028d"+ - "\u028f\7\7\2\2\u028e\u028d\3\2\2\2\u028f\u0292\3\2\2\2\u0290\u028e\3\2"+ - "\2\2\u0290\u0291\3\2\2\2\u0291\u0293\3\2\2\2\u0292\u0290\3\2\2\2\u0293"+ - "\u0297\t\2\2\2\u0294\u0296\7\7\2\2\u0295\u0294\3\2\2\2\u0296\u0299\3\2"+ - "\2\2\u0297\u0295\3\2\2\2\u0297\u0298\3\2\2\2\u0298\u029a\3\2\2\2\u0299"+ - "\u0297\3\2\2\2\u029a\u029b\t\2\2\2\u029b\u00a9\3\2\2\2\u029c\u029d\7@"+ - "\2\2\u029d\u02a1\7a\2\2\u029e\u02a0\7\7\2\2\u029f\u029e\3\2\2\2\u02a0"+ - "\u02a3\3\2\2\2\u02a1\u029f\3\2\2\2\u02a1\u02a2\3\2\2\2\u02a2\u02a4\3\2"+ - "\2\2\u02a3\u02a1\3\2\2\2\u02a4\u02a8\t\2\2\2\u02a5\u02a7\7\7\2\2\u02a6"+ - "\u02a5\3\2\2\2\u02a7\u02aa\3\2\2\2\u02a8\u02a6\3\2\2\2\u02a8\u02a9\3\2"+ - "\2\2\u02a9\u02ab\3\2\2\2\u02aa\u02a8\3\2\2\2\u02ab\u02ac\t\2\2\2\u02ac"+ - "\u00ab\3\2\2\2\u02ad\u02ae\7A\2\2\u02ae\u02af\t\2\2\2\u02af\u00ad\3\2"+ - "\2\2\u02b0\u02b1\7B\2\2\u02b1\u02b2\t\2\2\2\u02b2\u00af\3\2\2\2\u02b3"+ - "\u02b4\7C\2\2\u02b4\u02b5\7a\2\2\u02b5\u00b1\3\2\2\2\u02b6\u02b7\7D\2"+ - "\2\u02b7\u02b8\t\2\2\2\u02b8\u00b3\3\2\2\2\u02b9\u02ba\7E\2\2\u02ba\u02bb"+ - "\t\2\2\2\u02bb\u00b5\3\2\2\2\u02bc\u02bd\7F\2\2\u02bd\u02be\7a\2\2\u02be"+ - "\u00b7\3\2\2\2\u02bf\u02c0\7G\2\2\u02c0\u02c1\7a\2\2\u02c1\u00b9\3\2\2"+ - "\2\u02c2\u02c3\7H\2\2\u02c3\u02c4\t\2\2\2\u02c4\u00bb\3\2\2\2\u02c5\u02c6"+ - "\7I\2\2\u02c6\u02ca\7a\2\2\u02c7\u02c9\7\7\2\2\u02c8\u02c7\3\2\2\2\u02c9"+ - "\u02cc\3\2\2\2\u02ca\u02c8\3\2\2\2\u02ca\u02cb\3\2\2\2\u02cb\u02cd\3\2"+ - "\2\2\u02cc\u02ca\3\2\2\2\u02cd\u02ce\7a\2\2\u02ce\u00bd\3\2\2\2\u02cf"+ - "\u02d0\7J\2\2\u02d0\u02d1\7a\2\2\u02d1\u00bf\3\2\2\2\u02d2\u02d3\7K\2"+ - "\2\u02d3\u02d4\t\2\2\2\u02d4\u00c1\3\2\2\2\u02d5\u02d6\7L\2\2\u02d6\u02d7"+ - "\t\2\2\2\u02d7\u00c3\3\2\2\2\u02d8\u02d9\7M\2\2\u02d9\u02da\t\2\2\2\u02da"+ - "\u00c5\3\2\2\2\u02db\u02dc\7N\2\2\u02dc\u02dd\7a\2\2\u02dd\u00c7\3\2\2"+ - "\2\u02de\u02df\7O\2\2\u02df\u02e0\7a\2\2\u02e0\u00c9\3\2\2\2\u02e1\u02e2"+ - "\7P\2\2\u02e2\u02e6\t\2\2\2\u02e3\u02e5\7\7\2\2\u02e4\u02e3\3\2\2\2\u02e5"+ - "\u02e8\3\2\2\2\u02e6\u02e4\3\2\2\2\u02e6\u02e7\3\2\2\2\u02e7\u02e9\3\2"+ - "\2\2\u02e8\u02e6\3\2\2\2\u02e9\u02ed\7a\2\2\u02ea\u02ec\7\7\2\2\u02eb"+ - "\u02ea\3\2\2\2\u02ec\u02ef\3\2\2\2\u02ed\u02eb\3\2\2\2\u02ed\u02ee\3\2"+ - "\2\2\u02ee\u02f0\3\2\2\2\u02ef\u02ed\3\2\2\2\u02f0\u02f4\t\2\2\2\u02f1"+ - "\u02f3\7\7\2\2\u02f2\u02f1\3\2\2\2\u02f3\u02f6\3\2\2\2\u02f4\u02f2\3\2"+ - "\2\2\u02f4\u02f5\3\2\2\2\u02f5\u02f7\3\2\2\2\u02f6\u02f4\3\2\2\2\u02f7"+ - "\u02f8\7a\2\2\u02f8\u00cb\3\2\2\2\u02f9\u02fa\7Q\2\2\u02fa\u02fe\t\2\2"+ - "\2\u02fb\u02fd\7\7\2\2\u02fc\u02fb\3\2\2\2\u02fd\u0300\3\2\2\2\u02fe\u02fc"+ - "\3\2\2\2\u02fe\u02ff\3\2\2\2\u02ff\u0301\3\2\2\2\u0300\u02fe\3\2\2\2\u0301"+ - "\u0305\7a\2\2\u0302\u0304\7\7\2\2\u0303\u0302\3\2\2\2\u0304\u0307\3\2"+ - "\2\2\u0305\u0303\3\2\2\2\u0305\u0306\3\2\2\2\u0306\u0308\3\2\2\2\u0307"+ - "\u0305\3\2\2\2\u0308\u030c\7a\2\2\u0309\u030b\7\7\2\2\u030a\u0309\3\2"+ - "\2\2\u030b\u030e\3\2\2\2\u030c\u030a\3\2\2\2\u030c\u030d\3\2\2\2\u030d"+ - "\u030f\3\2\2\2\u030e\u030c\3\2\2\2\u030f\u0310\7a\2\2\u0310\u00cd\3\2"+ - "\2\2\u0311\u0312\7R\2\2\u0312\u0316\t\2\2\2\u0313\u0315\7\7\2\2\u0314"+ - "\u0313\3\2\2\2\u0315\u0318\3\2\2\2\u0316\u0314\3\2\2\2\u0316\u0317\3\2"+ - "\2\2\u0317\u0319\3\2\2\2\u0318\u0316\3\2\2\2\u0319\u031d\7a\2\2\u031a"+ - "\u031c\7\7\2\2\u031b\u031a\3\2\2\2\u031c\u031f\3\2\2\2\u031d\u031b\3\2"+ - "\2\2\u031d\u031e\3\2\2\2\u031e\u0320\3\2\2\2\u031f\u031d\3\2\2\2\u0320"+ - "\u0324\t\2\2\2\u0321\u0323\7\7\2\2\u0322\u0321\3\2\2\2\u0323\u0326\3\2"+ - "\2\2\u0324\u0322\3\2\2\2\u0324\u0325\3\2\2\2\u0325\u0328\3\2\2\2\u0326"+ - "\u0324\3\2\2\2\u0327\u0329\7a\2\2\u0328\u0327\3\2\2\2\u0328\u0329\3\2"+ - "\2\2\u0329\u00cf\3\2\2\2\u032a\u032b\7S\2\2\u032b\u032f\7a\2\2\u032c\u032e"+ - "\7\7\2\2\u032d\u032c\3\2\2\2\u032e\u0331\3\2\2\2\u032f\u032d\3\2\2\2\u032f"+ - "\u0330\3\2\2\2\u0330\u0332\3\2\2\2\u0331\u032f\3\2\2\2\u0332\u0336\7a"+ - "\2\2\u0333\u0335\7\7\2\2\u0334\u0333\3\2\2\2\u0335\u0338\3\2\2\2\u0336"+ - "\u0334\3\2\2\2\u0336\u0337\3\2\2\2\u0337\u0339\3\2\2\2\u0338\u0336\3\2"+ - "\2\2\u0339\u033d\7a\2\2\u033a\u033c\7\7\2\2\u033b\u033a\3\2\2\2\u033c"+ - "\u033f\3\2\2\2\u033d\u033b\3\2\2\2\u033d\u033e\3\2\2\2\u033e\u0341\3\2"+ - "\2\2\u033f\u033d\3\2\2\2\u0340\u0342\7a\2\2\u0341\u0340\3\2\2\2\u0341"+ - "\u0342\3\2\2\2\u0342\u00d1\3\2\2\2\u0343\u0344\7T\2\2\u0344\u0348\t\2"+ - "\2\2\u0345\u0347\7\7\2\2\u0346\u0345\3\2\2\2\u0347\u034a\3\2\2\2\u0348"+ - "\u0346\3\2\2\2\u0348\u0349\3\2\2\2\u0349\u034b\3\2\2\2\u034a\u0348\3\2"+ - "\2\2\u034b\u034f\7a\2\2\u034c\u034e\7\7\2\2\u034d\u034c\3\2\2\2\u034e"+ - "\u0351\3\2\2\2\u034f\u034d\3\2\2\2\u034f\u0350\3\2\2\2\u0350\u0352\3\2"+ - "\2\2\u0351\u034f\3\2\2\2\u0352\u0356\t\2\2\2\u0353\u0355\7\7\2\2\u0354"+ - "\u0353\3\2\2\2\u0355\u0358\3\2\2\2\u0356\u0354\3\2\2\2\u0356\u0357\3\2"+ - "\2\2\u0357\u0360\3\2\2\2\u0358\u0356\3\2\2\2\u0359\u035d\7a\2\2\u035a"+ - "\u035c\7\7\2\2\u035b\u035a\3\2\2\2\u035c\u035f\3\2\2\2\u035d\u035b\3\2"+ - "\2\2\u035d\u035e\3\2\2\2\u035e\u0361\3\2\2\2\u035f\u035d\3\2\2\2\u0360"+ - "\u0359\3\2\2\2\u0360\u0361\3\2\2\2\u0361\u0369\3\2\2\2\u0362\u0366\7a"+ - "\2\2\u0363\u0365\7\7\2\2\u0364\u0363\3\2\2\2\u0365\u0368\3\2\2\2\u0366"+ - "\u0364\3\2\2\2\u0366\u0367\3\2\2\2\u0367\u036a\3\2\2\2\u0368\u0366\3\2"+ - "\2\2\u0369\u0362\3\2\2\2\u0369\u036a\3\2\2\2\u036a\u0372\3\2\2\2\u036b"+ - "\u036f\7a\2\2\u036c\u036e\7\7\2\2\u036d\u036c\3\2\2\2\u036e\u0371\3\2"+ - "\2\2\u036f\u036d\3\2\2\2\u036f\u0370\3\2\2\2\u0370\u0373\3\2\2\2\u0371"+ - "\u036f\3\2\2\2\u0372\u036b\3\2\2\2\u0372\u0373\3\2\2\2\u0373\u0375\3\2"+ - "\2\2\u0374\u0376\t\2\2\2\u0375\u0374\3\2\2\2\u0375\u0376\3\2\2\2\u0376"+ - "\u00d3\3\2\2\2\u0377\u0378\7U\2\2\u0378\u037c\t\2\2\2\u0379\u037b\7\7"+ - "\2\2\u037a\u0379\3\2\2\2\u037b\u037e\3\2\2\2\u037c\u037a\3\2\2\2\u037c"+ - "\u037d\3\2\2\2\u037d\u037f\3\2\2\2\u037e\u037c\3\2\2\2\u037f\u0383\7a"+ - "\2\2\u0380\u0382\7\7\2\2\u0381\u0380\3\2\2\2\u0382\u0385\3\2\2\2\u0383"+ - "\u0381\3\2\2\2\u0383\u0384\3\2\2\2\u0384\u0386\3\2\2\2\u0385\u0383\3\2"+ - "\2\2\u0386\u038a\t\2\2\2\u0387\u0389\7\7\2\2\u0388\u0387\3\2\2\2\u0389"+ - "\u038c\3\2\2\2\u038a\u0388\3\2\2\2\u038a\u038b\3\2\2\2\u038b\u0394\3\2"+ - "\2\2\u038c\u038a\3\2\2\2\u038d\u0391\7a\2\2\u038e\u0390\7\7\2\2\u038f"+ - "\u038e\3\2\2\2\u0390\u0393\3\2\2\2\u0391\u038f\3\2\2\2\u0391\u0392\3\2"+ - "\2\2\u0392\u0395\3\2\2\2\u0393\u0391\3\2\2\2\u0394\u038d\3\2\2\2\u0394"+ - "\u0395\3\2\2\2\u0395\u039d\3\2\2\2\u0396\u039a\7a\2\2\u0397\u0399\7\7"+ - "\2\2\u0398\u0397\3\2\2\2\u0399\u039c\3\2\2\2\u039a\u0398\3\2\2\2\u039a"+ - "\u039b\3\2\2\2\u039b\u039e\3\2\2\2\u039c\u039a\3\2\2\2\u039d\u0396\3\2"+ - "\2\2\u039d\u039e\3\2\2\2\u039e\u03a6\3\2\2\2\u039f\u03a3\7a\2\2\u03a0"+ - "\u03a2\7\7\2\2\u03a1\u03a0\3\2\2\2\u03a2\u03a5\3\2\2\2\u03a3\u03a1\3\2"+ - "\2\2\u03a3\u03a4\3\2\2\2\u03a4\u03a7\3\2\2\2\u03a5\u03a3\3\2\2\2\u03a6"+ - "\u039f\3\2\2\2\u03a6\u03a7\3\2\2\2\u03a7\u03a9\3\2\2\2\u03a8\u03aa\t\2"+ - "\2\2\u03a9\u03a8\3\2\2\2\u03a9\u03aa\3\2\2\2\u03aa\u00d5\3\2\2\2\u03ab"+ - "\u03ac\7V\2\2\u03ac\u03b0\t\2\2\2\u03ad\u03af\7\7\2\2\u03ae\u03ad\3\2"+ - "\2\2\u03af\u03b2\3\2\2\2\u03b0\u03ae\3\2\2\2\u03b0\u03b1\3\2\2\2\u03b1"+ - "\u03b3\3\2\2\2\u03b2\u03b0\3\2\2\2\u03b3\u03b7\7a\2\2\u03b4\u03b6\7\7"+ - "\2\2\u03b5\u03b4\3\2\2\2\u03b6\u03b9\3\2\2\2\u03b7\u03b5\3\2\2\2\u03b7"+ - "\u03b8\3\2\2\2\u03b8\u03ba\3\2\2\2\u03b9\u03b7\3\2\2\2\u03ba\u03be\t\2"+ - "\2\2\u03bb\u03bd\7\7\2\2\u03bc\u03bb\3\2\2\2\u03bd\u03c0\3\2\2\2\u03be"+ - "\u03bc\3\2\2\2\u03be\u03bf\3\2\2\2\u03bf\u03c8\3\2\2\2\u03c0\u03be\3\2"+ - "\2\2\u03c1\u03c5\7a\2\2\u03c2\u03c4\7\7\2\2\u03c3\u03c2\3\2\2\2\u03c4"+ - "\u03c7\3\2\2\2\u03c5\u03c3\3\2\2\2\u03c5\u03c6\3\2\2\2\u03c6\u03c9\3\2"+ - "\2\2\u03c7\u03c5\3\2\2\2\u03c8\u03c1\3\2\2\2\u03c8\u03c9\3\2\2\2\u03c9"+ - "\u03cb\3\2\2\2\u03ca\u03cc\7a\2\2\u03cb\u03ca\3\2\2\2\u03cb\u03cc\3\2"+ - "\2\2\u03cc\u00d7\3\2\2\2\u03cd\u03ce\7W\2\2\u03ce\u03d2\7a\2\2\u03cf\u03d1"+ - "\7\7\2\2\u03d0\u03cf\3\2\2\2\u03d1\u03d4\3\2\2\2\u03d2\u03d0\3\2\2\2\u03d2"+ - "\u03d3\3\2\2\2\u03d3\u03d5\3\2\2\2\u03d4\u03d2\3\2\2\2\u03d5\u03d9\7a"+ - "\2\2\u03d6\u03d8\7\7\2\2\u03d7\u03d6\3\2\2\2\u03d8\u03db\3\2\2\2\u03d9"+ - "\u03d7\3\2\2\2\u03d9\u03da\3\2\2\2\u03da\u03dc\3\2\2\2\u03db\u03d9\3\2"+ - "\2\2\u03dc\u03e0\7a\2\2\u03dd\u03df\7\7\2\2\u03de\u03dd\3\2\2\2\u03df"+ - "\u03e2\3\2\2\2\u03e0\u03de\3\2\2\2\u03e0\u03e1\3\2\2\2\u03e1\u03ea\3\2"+ - "\2\2\u03e2\u03e0\3\2\2\2\u03e3\u03e7\7a\2\2\u03e4\u03e6\7\7\2\2\u03e5"+ - "\u03e4\3\2\2\2\u03e6\u03e9\3\2\2\2\u03e7\u03e5\3\2\2\2\u03e7\u03e8\3\2"+ - "\2\2\u03e8\u03eb\3\2\2\2\u03e9\u03e7\3\2\2\2\u03ea\u03e3\3\2\2\2\u03ea"+ - "\u03eb\3\2\2\2\u03eb\u03ed\3\2\2\2\u03ec\u03ee\7a\2\2\u03ed\u03ec\3\2"+ - "\2\2\u03ed\u03ee\3\2\2\2\u03ee\u00d9\3\2\2\2\u03ef\u03f0\7X\2\2\u03f0"+ - "\u03f4\t\2\2\2\u03f1\u03f3\7\7\2\2\u03f2\u03f1\3\2\2\2\u03f3\u03f6\3\2"+ - "\2\2\u03f4\u03f2\3\2\2\2\u03f4\u03f5\3\2\2\2\u03f5\u03f7\3\2\2\2\u03f6"+ - "\u03f4\3\2\2\2\u03f7\u03fb\7a\2\2\u03f8\u03fa\7\7\2\2\u03f9\u03f8\3\2"+ - "\2\2\u03fa\u03fd\3\2\2\2\u03fb\u03f9\3\2\2\2\u03fb\u03fc\3\2\2\2\u03fc"+ - "\u03fe\3\2\2\2\u03fd\u03fb\3\2\2\2\u03fe\u0402\t\2\2\2\u03ff\u0401\7\7"+ - "\2\2\u0400\u03ff\3\2\2\2\u0401\u0404\3\2\2\2\u0402\u0400\3\2\2\2\u0402"+ - "\u0403\3\2\2\2\u0403\u040c\3\2\2\2\u0404\u0402\3\2\2\2\u0405\u0409\7a"+ - "\2\2\u0406\u0408\7\7\2\2\u0407\u0406\3\2\2\2\u0408\u040b\3\2\2\2\u0409"+ - "\u0407\3\2\2\2\u0409\u040a\3\2\2\2\u040a\u040d\3\2\2\2\u040b\u0409\3\2"+ - "\2\2\u040c\u0405\3\2\2\2\u040c\u040d\3\2\2\2\u040d\u0415\3\2\2\2\u040e"+ - "\u0412\7a\2\2\u040f\u0411\7\7\2\2\u0410\u040f\3\2\2\2\u0411\u0414\3\2"+ - "\2\2\u0412\u0410\3\2\2\2\u0412\u0413\3\2\2\2\u0413\u0416\3\2\2\2\u0414"+ - "\u0412\3\2\2\2\u0415\u040e\3\2\2\2\u0415\u0416\3\2\2\2\u0416\u041e\3\2"+ - "\2\2\u0417\u041b\7a\2\2\u0418\u041a\7\7\2\2\u0419\u0418\3\2\2\2\u041a"+ - "\u041d\3\2\2\2\u041b\u0419\3\2\2\2\u041b\u041c\3\2\2\2\u041c\u041f\3\2"+ - "\2\2\u041d\u041b\3\2\2\2\u041e\u0417\3\2\2\2\u041e\u041f\3\2\2\2\u041f"+ - "\u0427\3\2\2\2\u0420\u0424\7a\2\2\u0421\u0423\7\7\2\2\u0422\u0421\3\2"+ - "\2\2\u0423\u0426\3\2\2\2\u0424\u0422\3\2\2\2\u0424\u0425\3\2\2\2\u0425"+ - "\u0428\3\2\2\2\u0426\u0424\3\2\2\2\u0427\u0420\3\2\2\2\u0427\u0428\3\2"+ - "\2\2\u0428\u0429\3\2\2\2\u0429\u042a\t\2\2\2\u042a\u00db\3\2\2\2\u042b"+ - "\u042c\7Y\2\2\u042c\u0430\t\2\2\2\u042d\u042f\7\7\2\2\u042e\u042d\3\2"+ - "\2\2\u042f\u0432\3\2\2\2\u0430\u042e\3\2\2\2\u0430\u0431\3\2\2\2\u0431"+ - "\u0433\3\2\2\2\u0432\u0430\3\2\2\2\u0433\u0437\7a\2\2\u0434\u0436\7\7"+ - "\2\2\u0435\u0434\3\2\2\2\u0436\u0439\3\2\2\2\u0437\u0435\3\2\2\2\u0437"+ - "\u0438\3\2\2\2\u0438\u043a\3\2\2\2\u0439\u0437\3\2\2\2\u043a\u043e\t\2"+ - "\2\2\u043b\u043d\7\7\2\2\u043c\u043b\3\2\2\2\u043d\u0440\3\2\2\2\u043e"+ - "\u043c\3\2\2\2\u043e\u043f\3\2\2\2\u043f\u0448\3\2\2\2\u0440\u043e\3\2"+ - "\2\2\u0441\u0445\7a\2\2\u0442\u0444\7\7\2\2\u0443\u0442\3\2\2\2\u0444"+ - "\u0447\3\2\2\2\u0445\u0443\3\2\2\2\u0445\u0446\3\2\2\2\u0446\u0449\3\2"+ - "\2\2\u0447\u0445\3\2\2\2\u0448\u0441\3\2\2\2\u0448\u0449\3\2\2\2\u0449"+ - "\u044a\3\2\2\2\u044a\u044e\7a\2\2\u044b\u044d\7\7\2\2\u044c\u044b\3\2"+ - "\2\2\u044d\u0450\3\2\2\2\u044e\u044c\3\2\2\2\u044e\u044f\3\2\2\2\u044f"+ - "\u0458\3\2\2\2\u0450\u044e\3\2\2\2\u0451\u0455\7a\2\2\u0452\u0454\7\7"+ - "\2\2\u0453\u0452\3\2\2\2\u0454\u0457\3\2\2\2\u0455\u0453\3\2\2\2\u0455"+ - "\u0456\3\2\2\2\u0456\u0459\3\2\2\2\u0457\u0455\3\2\2\2\u0458\u0451\3\2"+ - "\2\2\u0458\u0459\3\2\2\2\u0459\u0461\3\2\2\2\u045a\u045e\7a\2\2\u045b"+ - "\u045d\7\7\2\2\u045c\u045b\3\2\2\2\u045d\u0460\3\2\2\2\u045e\u045c\3\2"+ - "\2\2\u045e\u045f\3\2\2\2\u045f\u0462\3\2\2\2\u0460\u045e\3\2\2\2\u0461"+ - "\u045a\3\2\2\2\u0461\u0462\3\2\2\2\u0462\u0464\3\2\2\2\u0463\u0465\t\2"+ - "\2\2\u0464\u0463\3\2\2\2\u0464\u0465\3\2\2\2\u0465\u00dd\3\2\2\2\u0466"+ - "\u0467\7Z\2\2\u0467\u046b\t\2\2\2\u0468\u046a\7\7\2\2\u0469\u0468\3\2"+ - "\2\2\u046a\u046d\3\2\2\2\u046b\u0469\3\2\2\2\u046b\u046c\3\2\2\2\u046c"+ - "\u046e\3\2\2\2\u046d\u046b\3\2\2\2\u046e\u0472\7a\2\2\u046f\u0471\7\7"+ - "\2\2\u0470\u046f\3\2\2\2\u0471\u0474\3\2\2\2\u0472\u0470\3\2\2\2\u0472"+ - "\u0473\3\2\2\2\u0473\u0475\3\2\2\2\u0474\u0472\3\2\2\2\u0475\u0479\7a"+ - "\2\2\u0476\u0478\7\7\2\2\u0477\u0476\3\2\2\2\u0478\u047b\3\2\2\2\u0479"+ - "\u0477\3\2\2\2\u0479\u047a\3\2\2\2\u047a\u047c\3\2\2\2\u047b\u0479\3\2"+ - "\2\2\u047c\u047d\t\2\2\2\u047d\u00df\3\2\2\2\u047e\u047f\7[\2\2\u047f"+ - "\u0480\t\2\2\2\u0480\u00e1\3\2\2\2\u0481\u0482\7\\\2\2\u0482\u0486\t\2"+ - "\2\2\u0483\u0485\7\7\2\2\u0484\u0483\3\2\2\2\u0485\u0488\3\2\2\2\u0486"+ - "\u0484\3\2\2\2\u0486\u0487\3\2\2\2\u0487\u0489\3\2\2\2\u0488\u0486\3\2"+ - "\2\2\u0489\u048d\7a\2\2\u048a\u048c\7\7\2\2\u048b\u048a\3\2\2\2\u048c"+ - "\u048f\3\2\2\2\u048d\u048b\3\2\2\2\u048d\u048e\3\2\2\2\u048e\u0490\3\2"+ - "\2\2\u048f\u048d\3\2\2\2\u0490\u0494\7a\2\2\u0491\u0493\7\7\2\2\u0492"+ - "\u0491\3\2\2\2\u0493\u0496\3\2\2\2\u0494\u0492\3\2\2\2\u0494\u0495\3\2"+ - "\2\2\u0495\u0497\3\2\2\2\u0496\u0494\3\2\2\2\u0497\u0498\t\2\2\2\u0498"+ - "\u00e3\3\2\2\2\u0499\u049a\7]\2\2\u049a\u049b\t\2\2\2\u049b\u00e5\3\2"+ - "\2\2w\u00e9\u00ed\u00f7\u0123\u0126\u012b\u0139\u013d\u0141\u0145\u0149"+ - "\u014e\u0152\u0156\u015a\u015e\u0162\u0167\u016b\u016f\u0179\u017d\u0181"+ - "\u0187\u0191\u0196\u019a\u019e\u01ea\u01f4\u01fe\u0208\u0212\u022b\u0253"+ - "\u025a\u0264\u026b\u0290\u0297\u02a1\u02a8\u02ca\u02e6\u02ed\u02f4\u02fe"+ - "\u0305\u030c\u0316\u031d\u0324\u0328\u032f\u0336\u033d\u0341\u0348\u034f"+ - "\u0356\u035d\u0360\u0366\u0369\u036f\u0372\u0375\u037c\u0383\u038a\u0391"+ - "\u0394\u039a\u039d\u03a3\u03a6\u03a9\u03b0\u03b7\u03be\u03c5\u03c8\u03cb"+ - "\u03d2\u03d9\u03e0\u03e7\u03ea\u03ed\u03f4\u03fb\u0402\u0409\u040c\u0412"+ - "\u0415\u041b\u041e\u0424\u0427\u0430\u0437\u043e\u0445\u0448\u044e\u0455"+ - "\u0458\u045e\u0461\u0464\u046b\u0472\u0479\u0486\u048d\u0494"; + "\2\2\u00f7\u00f8\3\2\2\2\u00f8\7\3\2\2\2\u00f9\u0125\5\20\t\2\u00fa\u0125"+ + "\5:\36\2\u00fb\u0125\5<\37\2\u00fc\u0125\5B\"\2\u00fd\u0125\5D#\2\u00fe"+ + "\u0125\5$\23\2\u00ff\u0125\5L\'\2\u0100\u0125\5N(\2\u0101\u0125\5P)\2"+ + "\u0102\u0125\5&\24\2\u0103\u0125\5\22\n\2\u0104\u0125\5^\60\2\u0105\u0125"+ + "\5`\61\2\u0106\u0125\5b\62\2\u0107\u0125\5\36\20\2\u0108\u0125\5n8\2\u0109"+ + "\u0125\5p9\2\u010a\u0125\5h\65\2\u010b\u0125\5j\66\2\u010c\u0125\5\24"+ + "\13\2\u010d\u0125\5v<\2\u010e\u0125\5\26\f\2\u010f\u0125\5|?\2\u0110\u0125"+ + "\5~@\2\u0111\u0125\5\u0080A\2\u0112\u0125\5\u0082B\2\u0113\u0125\5\u0084"+ + "C\2\u0114\u0125\5\60\31\2\u0115\u0125\5\30\r\2\u0116\u0125\5\32\16\2\u0117"+ + "\u0125\5\u00a6T\2\u0118\u0125\5\34\17\2\u0119\u0125\5\u00acW\2\u011a\u0125"+ + "\5\u00aeX\2\u011b\u0125\5\u00b0Y\2\u011c\u0125\5\u00b2Z\2\u011d\u0125"+ + "\5\u00b4[\2\u011e\u0125\5\u00b6\\\2\u011f\u0125\5\u00b8]\2\u0120\u0125"+ + "\5\u00ba^\2\u0121\u0125\5\n\6\2\u0122\u0125\5 \21\2\u0123\u0125\5\"\22"+ + "\2\u0124\u00f9\3\2\2\2\u0124\u00fa\3\2\2\2\u0124\u00fb\3\2\2\2\u0124\u00fc"+ + "\3\2\2\2\u0124\u00fd\3\2\2\2\u0124\u00fe\3\2\2\2\u0124\u00ff\3\2\2\2\u0124"+ + "\u0100\3\2\2\2\u0124\u0101\3\2\2\2\u0124\u0102\3\2\2\2\u0124\u0103\3\2"+ + "\2\2\u0124\u0104\3\2\2\2\u0124\u0105\3\2\2\2\u0124\u0106\3\2\2\2\u0124"+ + "\u0107\3\2\2\2\u0124\u0108\3\2\2\2\u0124\u0109\3\2\2\2\u0124\u010a\3\2"+ + "\2\2\u0124\u010b\3\2\2\2\u0124\u010c\3\2\2\2\u0124\u010d\3\2\2\2\u0124"+ + "\u010e\3\2\2\2\u0124\u010f\3\2\2\2\u0124\u0110\3\2\2\2\u0124\u0111\3\2"+ + "\2\2\u0124\u0112\3\2\2\2\u0124\u0113\3\2\2\2\u0124\u0114\3\2\2\2\u0124"+ + "\u0115\3\2\2\2\u0124\u0116\3\2\2\2\u0124\u0117\3\2\2\2\u0124\u0118\3\2"+ + "\2\2\u0124\u0119\3\2\2\2\u0124\u011a\3\2\2\2\u0124\u011b\3\2\2\2\u0124"+ + "\u011c\3\2\2\2\u0124\u011d\3\2\2\2\u0124\u011e\3\2\2\2\u0124\u011f\3\2"+ + "\2\2\u0124\u0120\3\2\2\2\u0124\u0121\3\2\2\2\u0124\u0122\3\2\2\2\u0124"+ + "\u0123\3\2\2\2\u0125\t\3\2\2\2\u0126\u0128\5\f\7\2\u0127\u0126\3\2\2\2"+ + "\u0127\u0128\3\2\2\2\u0128\u012a\3\2\2\2\u0129\u012b\5\16\b\2\u012a\u0129"+ + "\3\2\2\2\u012b\u012c\3\2\2\2\u012c\u012a\3\2\2\2\u012c\u012d\3\2\2\2\u012d"+ + "\13\3\2\2\2\u012e\u012f\7\5\2\2\u012f\r\3\2\2\2\u0130\u013b\5R*\2\u0131"+ + "\u013b\5.\30\2\u0132\u013b\5\u00bc_\2\u0133\u013b\5\u00be`\2\u0134\u013b"+ + "\5(\25\2\u0135\u013b\5\u00c4c\2\u0136\u013b\5\u00c6d\2\u0137\u013b\5\u00c8"+ + "e\2\u0138\u013b\5*\26\2\u0139\u013b\5,\27\2\u013a\u0130\3\2\2\2\u013a"+ + "\u0131\3\2\2\2\u013a\u0132\3\2\2\2\u013a\u0133\3\2\2\2\u013a\u0134\3\2"+ + "\2\2\u013a\u0135\3\2\2\2\u013a\u0136\3\2\2\2\u013a\u0137\3\2\2\2\u013a"+ + "\u0138\3\2\2\2\u013a\u0139\3\2\2\2\u013b\17\3\2\2\2\u013c\u013f\5> \2"+ + "\u013d\u013f\5@!\2\u013e\u013c\3\2\2\2\u013e\u013d\3\2\2\2\u013f\21\3"+ + "\2\2\2\u0140\u0143\5Z.\2\u0141\u0143\5\\/\2\u0142\u0140\3\2\2\2\u0142"+ + "\u0141\3\2\2\2\u0143\23\3\2\2\2\u0144\u0147\5r:\2\u0145\u0147\5t;\2\u0146"+ + "\u0144\3\2\2\2\u0146\u0145\3\2\2\2\u0147\25\3\2\2\2\u0148\u014b\5x=\2"+ + "\u0149\u014b\5z>\2\u014a\u0148\3\2\2\2\u014a\u0149\3\2\2\2\u014b\27\3"+ + "\2\2\2\u014c\u0150\5\u009cO\2\u014d\u0150\5\u009eP\2\u014e\u0150\5\u00a0"+ + "Q\2\u014f\u014c\3\2\2\2\u014f\u014d\3\2\2\2\u014f\u014e\3\2\2\2\u0150"+ + "\31\3\2\2\2\u0151\u0154\5\u00a2R\2\u0152\u0154\5\u00a4S\2\u0153\u0151"+ + "\3\2\2\2\u0153\u0152\3\2\2\2\u0154\33\3\2\2\2\u0155\u0158\5\u00a8U\2\u0156"+ + "\u0158\5\u00aaV\2\u0157\u0155\3\2\2\2\u0157\u0156\3\2\2\2\u0158\35\3\2"+ + "\2\2\u0159\u015c\5d\63\2\u015a\u015c\5f\64\2\u015b\u0159\3\2\2\2\u015b"+ + "\u015a\3\2\2\2\u015c\37\3\2\2\2\u015d\u0160\5\u00caf\2\u015e\u0160\5\u00cc"+ + "g\2\u015f\u015d\3\2\2\2\u015f\u015e\3\2\2\2\u0160!\3\2\2\2\u0161\u0164"+ + "\5\u00e2r\2\u0162\u0164\5\u00e4s\2\u0163\u0161\3\2\2\2\u0163\u0162\3\2"+ + "\2\2\u0164#\3\2\2\2\u0165\u0169\5F$\2\u0166\u0169\5H%\2\u0167\u0169\5"+ + "J&\2\u0168\u0165\3\2\2\2\u0168\u0166\3\2\2\2\u0168\u0167\3\2\2\2\u0169"+ + "%\3\2\2\2\u016a\u016d\5T+\2\u016b\u016d\5V,\2\u016c\u016a\3\2\2\2\u016c"+ + "\u016b\3\2\2\2\u016d\'\3\2\2\2\u016e\u0171\5\u00c0a\2\u016f\u0171\5\u00c2"+ + "b\2\u0170\u016e\3\2\2\2\u0170\u016f\3\2\2\2\u0171)\3\2\2\2\u0172\u017b"+ + "\5\u00ceh\2\u0173\u017b\5\u00d0i\2\u0174\u017b\5\u00d2j\2\u0175\u017b"+ + "\5\u00d4k\2\u0176\u017b\5\u00d6l\2\u0177\u017b\5\u00d8m\2\u0178\u017b"+ + "\5\u00dan\2\u0179\u017b\5\u00dco\2\u017a\u0172\3\2\2\2\u017a\u0173\3\2"+ + "\2\2\u017a\u0174\3\2\2\2\u017a\u0175\3\2\2\2\u017a\u0176\3\2\2\2\u017a"+ + "\u0177\3\2\2\2\u017a\u0178\3\2\2\2\u017a\u0179\3\2\2\2\u017b+\3\2\2\2"+ + "\u017c\u017f\5\u00dep\2\u017d\u017f\5\u00e0q\2\u017e\u017c\3\2\2\2\u017e"+ + "\u017d\3\2\2\2\u017f-\3\2\2\2\u0180\u0183\5T+\2\u0181\u0183\5X-\2\u0182"+ + "\u0180\3\2\2\2\u0182\u0181\3\2\2\2\u0183/\3\2\2\2\u0184\u0188\7\6\2\2"+ + "\u0185\u0187\5\62\32\2\u0186\u0185\3\2\2\2\u0187\u018a\3\2\2\2\u0188\u0186"+ + "\3\2\2\2\u0188\u0189\3\2\2\2\u0189\61\3\2\2\2\u018a\u0188\3\2\2\2\u018b"+ + "\u0193\5\64\33\2\u018c\u0193\5\66\34\2\u018d\u0193\5\u0090I\2\u018e\u0193"+ + "\58\35\2\u018f\u0193\5\u0096L\2\u0190\u0193\5\u0098M\2\u0191\u0193\5\u009a"+ + "N\2\u0192\u018b\3\2\2\2\u0192\u018c\3\2\2\2\u0192\u018d\3\2\2\2\u0192"+ + "\u018e\3\2\2\2\u0192\u018f\3\2\2\2\u0192\u0190\3\2\2\2\u0192\u0191\3\2"+ + "\2\2\u0193\63\3\2\2\2\u0194\u0198\5\u0086D\2\u0195\u0198\5\u0088E\2\u0196"+ + "\u0198\5\u008aF\2\u0197\u0194\3\2\2\2\u0197\u0195\3\2\2\2\u0197\u0196"+ + "\3\2\2\2\u0198\65\3\2\2\2\u0199\u019c\5\u008cG\2\u019a\u019c\5\u008eH"+ + "\2\u019b\u0199\3\2\2\2\u019b\u019a\3\2\2\2\u019c\67\3\2\2\2\u019d\u01a0"+ + "\5\u0092J\2\u019e\u01a0\5\u0094K\2\u019f\u019d\3\2\2\2\u019f\u019e\3\2"+ + "\2\2\u01a09\3\2\2\2\u01a1\u01a2\7\b\2\2\u01a2\u01a3\t\2\2\2\u01a3;\3\2"+ + "\2\2\u01a4\u01a5\7\t\2\2\u01a5\u01a6\t\2\2\2\u01a6=\3\2\2\2\u01a7\u01a8"+ + "\7\n\2\2\u01a8\u01a9\t\2\2\2\u01a9?\3\2\2\2\u01aa\u01ab\7\13\2\2\u01ab"+ + "\u01ac\7a\2\2\u01acA\3\2\2\2\u01ad\u01ae\7\f\2\2\u01ae\u01af\t\2\2\2\u01af"+ + "C\3\2\2\2\u01b0\u01b1\7\r\2\2\u01b1\u01b2\t\2\2\2\u01b2E\3\2\2\2\u01b3"+ + "\u01b4\7\16\2\2\u01b4\u01b5\t\2\2\2\u01b5G\3\2\2\2\u01b6\u01b7\7\17\2"+ + "\2\u01b7\u01b8\t\2\2\2\u01b8I\3\2\2\2\u01b9\u01ba\7\20\2\2\u01ba\u01bb"+ + "\7a\2\2\u01bbK\3\2\2\2\u01bc\u01bd\7\21\2\2\u01bd\u01be\t\2\2\2\u01be"+ + "M\3\2\2\2\u01bf\u01c0\7\22\2\2\u01c0\u01c1\t\2\2\2\u01c1O\3\2\2\2\u01c2"+ + "\u01c3\7\23\2\2\u01c3\u01c4\t\2\2\2\u01c4Q\3\2\2\2\u01c5\u01c6\7\24\2"+ + "\2\u01c6\u01c7\7a\2\2\u01c7S\3\2\2\2\u01c8\u01c9\7\25\2\2\u01c9\u01ca"+ + "\t\2\2\2\u01caU\3\2\2\2\u01cb\u01cc\7\26\2\2\u01cc\u01cd\t\2\2\2\u01cd"+ + "W\3\2\2\2\u01ce\u01cf\7\27\2\2\u01cf\u01d0\t\2\2\2\u01d0Y\3\2\2\2\u01d1"+ + "\u01d2\7\30\2\2\u01d2\u01d3\t\2\2\2\u01d3[\3\2\2\2\u01d4\u01d5\7\31\2"+ + "\2\u01d5\u01d6\t\2\2\2\u01d6]\3\2\2\2\u01d7\u01d8\7\32\2\2\u01d8\u01d9"+ + "\t\2\2\2\u01d9_\3\2\2\2\u01da\u01db\7\33\2\2\u01db\u01dc\t\2\2\2\u01dc"+ + "a\3\2\2\2\u01dd\u01de\7\34\2\2\u01de\u01df\t\2\2\2\u01dfc\3\2\2\2\u01e0"+ + "\u01e1\7\35\2\2\u01e1\u01e2\t\2\2\2\u01e2e\3\2\2\2\u01e3\u01e4\7\36\2"+ + "\2\u01e4\u01e5\7a\2\2\u01e5g\3\2\2\2\u01e6\u01e7\7\37\2\2\u01e7\u01eb"+ + "\7a\2\2\u01e8\u01ea\7\7\2\2\u01e9\u01e8\3\2\2\2\u01ea\u01ed\3\2\2\2\u01eb"+ + "\u01e9\3\2\2\2\u01eb\u01ec\3\2\2\2\u01ec\u01ee\3\2\2\2\u01ed\u01eb\3\2"+ + "\2\2\u01ee\u01ef\7a\2\2\u01efi\3\2\2\2\u01f0\u01f1\7 \2\2\u01f1\u01f5"+ + "\7a\2\2\u01f2\u01f4\7\7\2\2\u01f3\u01f2\3\2\2\2\u01f4\u01f7\3\2\2\2\u01f5"+ + "\u01f3\3\2\2\2\u01f5\u01f6\3\2\2\2\u01f6\u01f8\3\2\2\2\u01f7\u01f5\3\2"+ + "\2\2\u01f8\u01f9\7a\2\2\u01f9k\3\2\2\2\u01fa\u01fb\7!\2\2\u01fb\u01ff"+ + "\7a\2\2\u01fc\u01fe\7\7\2\2\u01fd\u01fc\3\2\2\2\u01fe\u0201\3\2\2\2\u01ff"+ + "\u01fd\3\2\2\2\u01ff\u0200\3\2\2\2\u0200\u0202\3\2\2\2\u0201\u01ff\3\2"+ + "\2\2\u0202\u0203\7a\2\2\u0203m\3\2\2\2\u0204\u0205\7\"\2\2\u0205\u0209"+ + "\7a\2\2\u0206\u0208\7\7\2\2\u0207\u0206\3\2\2\2\u0208\u020b\3\2\2\2\u0209"+ + "\u0207\3\2\2\2\u0209\u020a\3\2\2\2\u020a\u020c\3\2\2\2\u020b\u0209\3\2"+ + "\2\2\u020c\u020d\7a\2\2\u020do\3\2\2\2\u020e\u020f\7#\2\2\u020f\u0213"+ + "\7a\2\2\u0210\u0212\7\7\2\2\u0211\u0210\3\2\2\2\u0212\u0215\3\2\2\2\u0213"+ + "\u0211\3\2\2\2\u0213\u0214\3\2\2\2\u0214\u0216\3\2\2\2\u0215\u0213\3\2"+ + "\2\2\u0216\u0217\7a\2\2\u0217q\3\2\2\2\u0218\u0219\7$\2\2\u0219\u021a"+ + "\t\2\2\2\u021as\3\2\2\2\u021b\u021c\7%\2\2\u021c\u021d\t\2\2\2\u021du"+ + "\3\2\2\2\u021e\u021f\7&\2\2\u021f\u0220\t\2\2\2\u0220w\3\2\2\2\u0221\u0222"+ + "\7\'\2\2\u0222\u0223\t\2\2\2\u0223y\3\2\2\2\u0224\u0225\7(\2\2\u0225\u0226"+ + "\t\2\2\2\u0226{\3\2\2\2\u0227\u0228\7)\2\2\u0228\u022c\7a\2\2\u0229\u022b"+ + "\7\7\2\2\u022a\u0229\3\2\2\2\u022b\u022e\3\2\2\2\u022c\u022a\3\2\2\2\u022c"+ + "\u022d\3\2\2\2\u022d\u022f\3\2\2\2\u022e\u022c\3\2\2\2\u022f\u0230\7a"+ + "\2\2\u0230}\3\2\2\2\u0231\u0232\7*\2\2\u0232\u0233\7a\2\2\u0233\177\3"+ + "\2\2\2\u0234\u0235\7+\2\2\u0235\u0236\t\2\2\2\u0236\u0081\3\2\2\2\u0237"+ + "\u0238\7,\2\2\u0238\u0239\t\2\2\2\u0239\u0083\3\2\2\2\u023a\u023b\7-\2"+ + "\2\u023b\u023c\7a\2\2\u023c\u0085\3\2\2\2\u023d\u023e\7.\2\2\u023e\u023f"+ + "\t\2\2\2\u023f\u0087\3\2\2\2\u0240\u0241\7/\2\2\u0241\u0242\t\2\2\2\u0242"+ + "\u0089\3\2\2\2\u0243\u0244\7\60\2\2\u0244\u0245\7a\2\2\u0245\u008b\3\2"+ + "\2\2\u0246\u0247\7\61\2\2\u0247\u0248\7a\2\2\u0248\u008d\3\2\2\2\u0249"+ + "\u024a\7\62\2\2\u024a\u024b\t\2\2\2\u024b\u008f\3\2\2\2\u024c\u024d\7"+ + "\63\2\2\u024d\u024e\7a\2\2\u024e\u0091\3\2\2\2\u024f\u0250\7\64\2\2\u0250"+ + "\u0254\t\2\2\2\u0251\u0253\7\7\2\2\u0252\u0251\3\2\2\2\u0253\u0256\3\2"+ + "\2\2\u0254\u0252\3\2\2\2\u0254\u0255\3\2\2\2\u0255\u0257\3\2\2\2\u0256"+ + "\u0254\3\2\2\2\u0257\u025b\t\2\2\2\u0258\u025a\7\7\2\2\u0259\u0258\3\2"+ + "\2\2\u025a\u025d\3\2\2\2\u025b\u0259\3\2\2\2\u025b\u025c\3\2\2\2\u025c"+ + "\u025e\3\2\2\2\u025d\u025b\3\2\2\2\u025e\u025f\t\2\2\2\u025f\u0093\3\2"+ + "\2\2\u0260\u0261\7\65\2\2\u0261\u0265\7a\2\2\u0262\u0264\7\7\2\2\u0263"+ + "\u0262\3\2\2\2\u0264\u0267\3\2\2\2\u0265\u0263\3\2\2\2\u0265\u0266\3\2"+ + "\2\2\u0266\u0268\3\2\2\2\u0267\u0265\3\2\2\2\u0268\u026c\t\2\2\2\u0269"+ + "\u026b\7\7\2\2\u026a\u0269\3\2\2\2\u026b\u026e\3\2\2\2\u026c\u026a\3\2"+ + "\2\2\u026c\u026d\3\2\2\2\u026d\u026f\3\2\2\2\u026e\u026c\3\2\2\2\u026f"+ + "\u0270\t\2\2\2\u0270\u0095\3\2\2\2\u0271\u0272\7\66\2\2\u0272\u0273\t"+ + "\2\2\2\u0273\u0097\3\2\2\2\u0274\u0275\7\67\2\2\u0275\u0276\t\2\2\2\u0276"+ + "\u0099\3\2\2\2\u0277\u0278\78\2\2\u0278\u0279\t\2\2\2\u0279\u009b\3\2"+ + "\2\2\u027a\u027b\79\2\2\u027b\u027c\t\2\2\2\u027c\u009d\3\2\2\2\u027d"+ + "\u027e\7:\2\2\u027e\u027f\t\2\2\2\u027f\u009f\3\2\2\2\u0280\u0281\7;\2"+ + "\2\u0281\u0282\7a\2\2\u0282\u00a1\3\2\2\2\u0283\u0284\7<\2\2\u0284\u0285"+ + "\7a\2\2\u0285\u00a3\3\2\2\2\u0286\u0287\7=\2\2\u0287\u0288\t\2\2\2\u0288"+ + "\u00a5\3\2\2\2\u0289\u028a\7>\2\2\u028a\u028b\7a\2\2\u028b\u00a7\3\2\2"+ + "\2\u028c\u028d\7?\2\2\u028d\u0291\t\2\2\2\u028e\u0290\7\7\2\2\u028f\u028e"+ + "\3\2\2\2\u0290\u0293\3\2\2\2\u0291\u028f\3\2\2\2\u0291\u0292\3\2\2\2\u0292"+ + "\u0294\3\2\2\2\u0293\u0291\3\2\2\2\u0294\u0298\t\2\2\2\u0295\u0297\7\7"+ + "\2\2\u0296\u0295\3\2\2\2\u0297\u029a\3\2\2\2\u0298\u0296\3\2\2\2\u0298"+ + "\u0299\3\2\2\2\u0299\u029b\3\2\2\2\u029a\u0298\3\2\2\2\u029b\u029c\t\2"+ + "\2\2\u029c\u00a9\3\2\2\2\u029d\u029e\7@\2\2\u029e\u02a2\7a\2\2\u029f\u02a1"+ + "\7\7\2\2\u02a0\u029f\3\2\2\2\u02a1\u02a4\3\2\2\2\u02a2\u02a0\3\2\2\2\u02a2"+ + "\u02a3\3\2\2\2\u02a3\u02a5\3\2\2\2\u02a4\u02a2\3\2\2\2\u02a5\u02a9\t\2"+ + "\2\2\u02a6\u02a8\7\7\2\2\u02a7\u02a6\3\2\2\2\u02a8\u02ab\3\2\2\2\u02a9"+ + "\u02a7\3\2\2\2\u02a9\u02aa\3\2\2\2\u02aa\u02ac\3\2\2\2\u02ab\u02a9\3\2"+ + "\2\2\u02ac\u02ad\t\2\2\2\u02ad\u00ab\3\2\2\2\u02ae\u02af\7A\2\2\u02af"+ + "\u02b0\t\2\2\2\u02b0\u00ad\3\2\2\2\u02b1\u02b2\7B\2\2\u02b2\u02b3\t\2"+ + "\2\2\u02b3\u00af\3\2\2\2\u02b4\u02b5\7C\2\2\u02b5\u02b6\t\2\2\2\u02b6"+ + "\u00b1\3\2\2\2\u02b7\u02b8\7D\2\2\u02b8\u02b9\t\2\2\2\u02b9\u00b3\3\2"+ + "\2\2\u02ba\u02bb\7E\2\2\u02bb\u02bc\t\2\2\2\u02bc\u00b5\3\2\2\2\u02bd"+ + "\u02be\7F\2\2\u02be\u02bf\7a\2\2\u02bf\u00b7\3\2\2\2\u02c0\u02c1\7G\2"+ + "\2\u02c1\u02c2\7a\2\2\u02c2\u00b9\3\2\2\2\u02c3\u02c4\7H\2\2\u02c4\u02c5"+ + "\t\2\2\2\u02c5\u00bb\3\2\2\2\u02c6\u02c7\7I\2\2\u02c7\u02cb\7a\2\2\u02c8"+ + "\u02ca\7\7\2\2\u02c9\u02c8\3\2\2\2\u02ca\u02cd\3\2\2\2\u02cb\u02c9\3\2"+ + "\2\2\u02cb\u02cc\3\2\2\2\u02cc\u02ce\3\2\2\2\u02cd\u02cb\3\2\2\2\u02ce"+ + "\u02cf\7a\2\2\u02cf\u00bd\3\2\2\2\u02d0\u02d1\7J\2\2\u02d1\u02d2\7a\2"+ + "\2\u02d2\u00bf\3\2\2\2\u02d3\u02d4\7K\2\2\u02d4\u02d5\t\2\2\2\u02d5\u00c1"+ + "\3\2\2\2\u02d6\u02d7\7L\2\2\u02d7\u02d8\t\2\2\2\u02d8\u00c3\3\2\2\2\u02d9"+ + "\u02da\7M\2\2\u02da\u02db\t\2\2\2\u02db\u00c5\3\2\2\2\u02dc\u02dd\7N\2"+ + "\2\u02dd\u02de\7a\2\2\u02de\u00c7\3\2\2\2\u02df\u02e0\7O\2\2\u02e0\u02e1"+ + "\7a\2\2\u02e1\u00c9\3\2\2\2\u02e2\u02e3\7P\2\2\u02e3\u02e7\t\2\2\2\u02e4"+ + "\u02e6\7\7\2\2\u02e5\u02e4\3\2\2\2\u02e6\u02e9\3\2\2\2\u02e7\u02e5\3\2"+ + "\2\2\u02e7\u02e8\3\2\2\2\u02e8\u02ea\3\2\2\2\u02e9\u02e7\3\2\2\2\u02ea"+ + "\u02ee\7a\2\2\u02eb\u02ed\7\7\2\2\u02ec\u02eb\3\2\2\2\u02ed\u02f0\3\2"+ + "\2\2\u02ee\u02ec\3\2\2\2\u02ee\u02ef\3\2\2\2\u02ef\u02f1\3\2\2\2\u02f0"+ + "\u02ee\3\2\2\2\u02f1\u02f5\t\2\2\2\u02f2\u02f4\7\7\2\2\u02f3\u02f2\3\2"+ + "\2\2\u02f4\u02f7\3\2\2\2\u02f5\u02f3\3\2\2\2\u02f5\u02f6\3\2\2\2\u02f6"+ + "\u02f8\3\2\2\2\u02f7\u02f5\3\2\2\2\u02f8\u02f9\7a\2\2\u02f9\u00cb\3\2"+ + "\2\2\u02fa\u02fb\7Q\2\2\u02fb\u02ff\t\2\2\2\u02fc\u02fe\7\7\2\2\u02fd"+ + "\u02fc\3\2\2\2\u02fe\u0301\3\2\2\2\u02ff\u02fd\3\2\2\2\u02ff\u0300\3\2"+ + "\2\2\u0300\u0302\3\2\2\2\u0301\u02ff\3\2\2\2\u0302\u0306\7a\2\2\u0303"+ + "\u0305\7\7\2\2\u0304\u0303\3\2\2\2\u0305\u0308\3\2\2\2\u0306\u0304\3\2"+ + "\2\2\u0306\u0307\3\2\2\2\u0307\u0309\3\2\2\2\u0308\u0306\3\2\2\2\u0309"+ + "\u030d\7a\2\2\u030a\u030c\7\7\2\2\u030b\u030a\3\2\2\2\u030c\u030f\3\2"+ + "\2\2\u030d\u030b\3\2\2\2\u030d\u030e\3\2\2\2\u030e\u0310\3\2\2\2\u030f"+ + "\u030d\3\2\2\2\u0310\u0311\7a\2\2\u0311\u00cd\3\2\2\2\u0312\u0313\7R\2"+ + "\2\u0313\u0317\t\2\2\2\u0314\u0316\7\7\2\2\u0315\u0314\3\2\2\2\u0316\u0319"+ + "\3\2\2\2\u0317\u0315\3\2\2\2\u0317\u0318\3\2\2\2\u0318\u031a\3\2\2\2\u0319"+ + "\u0317\3\2\2\2\u031a\u031e\7a\2\2\u031b\u031d\7\7\2\2\u031c\u031b\3\2"+ + "\2\2\u031d\u0320\3\2\2\2\u031e\u031c\3\2\2\2\u031e\u031f\3\2\2\2\u031f"+ + "\u0321\3\2\2\2\u0320\u031e\3\2\2\2\u0321\u0325\t\2\2\2\u0322\u0324\7\7"+ + "\2\2\u0323\u0322\3\2\2\2\u0324\u0327\3\2\2\2\u0325\u0323\3\2\2\2\u0325"+ + "\u0326\3\2\2\2\u0326\u0329\3\2\2\2\u0327\u0325\3\2\2\2\u0328\u032a\7a"+ + "\2\2\u0329\u0328\3\2\2\2\u0329\u032a\3\2\2\2\u032a\u00cf\3\2\2\2\u032b"+ + "\u032c\7S\2\2\u032c\u0330\7a\2\2\u032d\u032f\7\7\2\2\u032e\u032d\3\2\2"+ + "\2\u032f\u0332\3\2\2\2\u0330\u032e\3\2\2\2\u0330\u0331\3\2\2\2\u0331\u0333"+ + "\3\2\2\2\u0332\u0330\3\2\2\2\u0333\u0337\7a\2\2\u0334\u0336\7\7\2\2\u0335"+ + "\u0334\3\2\2\2\u0336\u0339\3\2\2\2\u0337\u0335\3\2\2\2\u0337\u0338\3\2"+ + "\2\2\u0338\u033a\3\2\2\2\u0339\u0337\3\2\2\2\u033a\u033e\7a\2\2\u033b"+ + "\u033d\7\7\2\2\u033c\u033b\3\2\2\2\u033d\u0340\3\2\2\2\u033e\u033c\3\2"+ + "\2\2\u033e\u033f\3\2\2\2\u033f\u0342\3\2\2\2\u0340\u033e\3\2\2\2\u0341"+ + "\u0343\7a\2\2\u0342\u0341\3\2\2\2\u0342\u0343\3\2\2\2\u0343\u00d1\3\2"+ + "\2\2\u0344\u0345\7T\2\2\u0345\u0349\t\2\2\2\u0346\u0348\7\7\2\2\u0347"+ + "\u0346\3\2\2\2\u0348\u034b\3\2\2\2\u0349\u0347\3\2\2\2\u0349\u034a\3\2"+ + "\2\2\u034a\u034c\3\2\2\2\u034b\u0349\3\2\2\2\u034c\u0350\7a\2\2\u034d"+ + "\u034f\7\7\2\2\u034e\u034d\3\2\2\2\u034f\u0352\3\2\2\2\u0350\u034e\3\2"+ + "\2\2\u0350\u0351\3\2\2\2\u0351\u0353\3\2\2\2\u0352\u0350\3\2\2\2\u0353"+ + "\u0357\t\2\2\2\u0354\u0356\7\7\2\2\u0355\u0354\3\2\2\2\u0356\u0359\3\2"+ + "\2\2\u0357\u0355\3\2\2\2\u0357\u0358\3\2\2\2\u0358\u0361\3\2\2\2\u0359"+ + "\u0357\3\2\2\2\u035a\u035e\7a\2\2\u035b\u035d\7\7\2\2\u035c\u035b\3\2"+ + "\2\2\u035d\u0360\3\2\2\2\u035e\u035c\3\2\2\2\u035e\u035f\3\2\2\2\u035f"+ + "\u0362\3\2\2\2\u0360\u035e\3\2\2\2\u0361\u035a\3\2\2\2\u0361\u0362\3\2"+ + "\2\2\u0362\u036a\3\2\2\2\u0363\u0367\7a\2\2\u0364\u0366\7\7\2\2\u0365"+ + "\u0364\3\2\2\2\u0366\u0369\3\2\2\2\u0367\u0365\3\2\2\2\u0367\u0368\3\2"+ + "\2\2\u0368\u036b\3\2\2\2\u0369\u0367\3\2\2\2\u036a\u0363\3\2\2\2\u036a"+ + "\u036b\3\2\2\2\u036b\u0373\3\2\2\2\u036c\u0370\7a\2\2\u036d\u036f\7\7"+ + "\2\2\u036e\u036d\3\2\2\2\u036f\u0372\3\2\2\2\u0370\u036e\3\2\2\2\u0370"+ + "\u0371\3\2\2\2\u0371\u0374\3\2\2\2\u0372\u0370\3\2\2\2\u0373\u036c\3\2"+ + "\2\2\u0373\u0374\3\2\2\2\u0374\u0376\3\2\2\2\u0375\u0377\t\2\2\2\u0376"+ + "\u0375\3\2\2\2\u0376\u0377\3\2\2\2\u0377\u00d3\3\2\2\2\u0378\u0379\7U"+ + "\2\2\u0379\u037d\t\2\2\2\u037a\u037c\7\7\2\2\u037b\u037a\3\2\2\2\u037c"+ + "\u037f\3\2\2\2\u037d\u037b\3\2\2\2\u037d\u037e\3\2\2\2\u037e\u0380\3\2"+ + "\2\2\u037f\u037d\3\2\2\2\u0380\u0384\7a\2\2\u0381\u0383\7\7\2\2\u0382"+ + "\u0381\3\2\2\2\u0383\u0386\3\2\2\2\u0384\u0382\3\2\2\2\u0384\u0385\3\2"+ + "\2\2\u0385\u0387\3\2\2\2\u0386\u0384\3\2\2\2\u0387\u038b\t\2\2\2\u0388"+ + "\u038a\7\7\2\2\u0389\u0388\3\2\2\2\u038a\u038d\3\2\2\2\u038b\u0389\3\2"+ + "\2\2\u038b\u038c\3\2\2\2\u038c\u0395\3\2\2\2\u038d\u038b\3\2\2\2\u038e"+ + "\u0392\7a\2\2\u038f\u0391\7\7\2\2\u0390\u038f\3\2\2\2\u0391\u0394\3\2"+ + "\2\2\u0392\u0390\3\2\2\2\u0392\u0393\3\2\2\2\u0393\u0396\3\2\2\2\u0394"+ + "\u0392\3\2\2\2\u0395\u038e\3\2\2\2\u0395\u0396\3\2\2\2\u0396\u039e\3\2"+ + "\2\2\u0397\u039b\7a\2\2\u0398\u039a\7\7\2\2\u0399\u0398\3\2\2\2\u039a"+ + "\u039d\3\2\2\2\u039b\u0399\3\2\2\2\u039b\u039c\3\2\2\2\u039c\u039f\3\2"+ + "\2\2\u039d\u039b\3\2\2\2\u039e\u0397\3\2\2\2\u039e\u039f\3\2\2\2\u039f"+ + "\u03a7\3\2\2\2\u03a0\u03a4\7a\2\2\u03a1\u03a3\7\7\2\2\u03a2\u03a1\3\2"+ + "\2\2\u03a3\u03a6\3\2\2\2\u03a4\u03a2\3\2\2\2\u03a4\u03a5\3\2\2\2\u03a5"+ + "\u03a8\3\2\2\2\u03a6\u03a4\3\2\2\2\u03a7\u03a0\3\2\2\2\u03a7\u03a8\3\2"+ + "\2\2\u03a8\u03aa\3\2\2\2\u03a9\u03ab\t\2\2\2\u03aa\u03a9\3\2\2\2\u03aa"+ + "\u03ab\3\2\2\2\u03ab\u00d5\3\2\2\2\u03ac\u03ad\7V\2\2\u03ad\u03b1\t\2"+ + "\2\2\u03ae\u03b0\7\7\2\2\u03af\u03ae\3\2\2\2\u03b0\u03b3\3\2\2\2\u03b1"+ + "\u03af\3\2\2\2\u03b1\u03b2\3\2\2\2\u03b2\u03b4\3\2\2\2\u03b3\u03b1\3\2"+ + "\2\2\u03b4\u03b8\7a\2\2\u03b5\u03b7\7\7\2\2\u03b6\u03b5\3\2\2\2\u03b7"+ + "\u03ba\3\2\2\2\u03b8\u03b6\3\2\2\2\u03b8\u03b9\3\2\2\2\u03b9\u03bb\3\2"+ + "\2\2\u03ba\u03b8\3\2\2\2\u03bb\u03bf\t\2\2\2\u03bc\u03be\7\7\2\2\u03bd"+ + "\u03bc\3\2\2\2\u03be\u03c1\3\2\2\2\u03bf\u03bd\3\2\2\2\u03bf\u03c0\3\2"+ + "\2\2\u03c0\u03c9\3\2\2\2\u03c1\u03bf\3\2\2\2\u03c2\u03c6\7a\2\2\u03c3"+ + "\u03c5\7\7\2\2\u03c4\u03c3\3\2\2\2\u03c5\u03c8\3\2\2\2\u03c6\u03c4\3\2"+ + "\2\2\u03c6\u03c7\3\2\2\2\u03c7\u03ca\3\2\2\2\u03c8\u03c6\3\2\2\2\u03c9"+ + "\u03c2\3\2\2\2\u03c9\u03ca\3\2\2\2\u03ca\u03cc\3\2\2\2\u03cb\u03cd\7a"+ + "\2\2\u03cc\u03cb\3\2\2\2\u03cc\u03cd\3\2\2\2\u03cd\u00d7\3\2\2\2\u03ce"+ + "\u03cf\7W\2\2\u03cf\u03d3\7a\2\2\u03d0\u03d2\7\7\2\2\u03d1\u03d0\3\2\2"+ + "\2\u03d2\u03d5\3\2\2\2\u03d3\u03d1\3\2\2\2\u03d3\u03d4\3\2\2\2\u03d4\u03d6"+ + "\3\2\2\2\u03d5\u03d3\3\2\2\2\u03d6\u03da\7a\2\2\u03d7\u03d9\7\7\2\2\u03d8"+ + "\u03d7\3\2\2\2\u03d9\u03dc\3\2\2\2\u03da\u03d8\3\2\2\2\u03da\u03db\3\2"+ + "\2\2\u03db\u03dd\3\2\2\2\u03dc\u03da\3\2\2\2\u03dd\u03e1\7a\2\2\u03de"+ + "\u03e0\7\7\2\2\u03df\u03de\3\2\2\2\u03e0\u03e3\3\2\2\2\u03e1\u03df\3\2"+ + "\2\2\u03e1\u03e2\3\2\2\2\u03e2\u03eb\3\2\2\2\u03e3\u03e1\3\2\2\2\u03e4"+ + "\u03e8\7a\2\2\u03e5\u03e7\7\7\2\2\u03e6\u03e5\3\2\2\2\u03e7\u03ea\3\2"+ + "\2\2\u03e8\u03e6\3\2\2\2\u03e8\u03e9\3\2\2\2\u03e9\u03ec\3\2\2\2\u03ea"+ + "\u03e8\3\2\2\2\u03eb\u03e4\3\2\2\2\u03eb\u03ec\3\2\2\2\u03ec\u03ee\3\2"+ + "\2\2\u03ed\u03ef\7a\2\2\u03ee\u03ed\3\2\2\2\u03ee\u03ef\3\2\2\2\u03ef"+ + "\u00d9\3\2\2\2\u03f0\u03f1\7X\2\2\u03f1\u03f5\t\2\2\2\u03f2\u03f4\7\7"+ + "\2\2\u03f3\u03f2\3\2\2\2\u03f4\u03f7\3\2\2\2\u03f5\u03f3\3\2\2\2\u03f5"+ + "\u03f6\3\2\2\2\u03f6\u03f8\3\2\2\2\u03f7\u03f5\3\2\2\2\u03f8\u03fc\7a"+ + "\2\2\u03f9\u03fb\7\7\2\2\u03fa\u03f9\3\2\2\2\u03fb\u03fe\3\2\2\2\u03fc"+ + "\u03fa\3\2\2\2\u03fc\u03fd\3\2\2\2\u03fd\u03ff\3\2\2\2\u03fe\u03fc\3\2"+ + "\2\2\u03ff\u0403\t\2\2\2\u0400\u0402\7\7\2\2\u0401\u0400\3\2\2\2\u0402"+ + "\u0405\3\2\2\2\u0403\u0401\3\2\2\2\u0403\u0404\3\2\2\2\u0404\u040d\3\2"+ + "\2\2\u0405\u0403\3\2\2\2\u0406\u040a\7a\2\2\u0407\u0409\7\7\2\2\u0408"+ + "\u0407\3\2\2\2\u0409\u040c\3\2\2\2\u040a\u0408\3\2\2\2\u040a\u040b\3\2"+ + "\2\2\u040b\u040e\3\2\2\2\u040c\u040a\3\2\2\2\u040d\u0406\3\2\2\2\u040d"+ + "\u040e\3\2\2\2\u040e\u0416\3\2\2\2\u040f\u0413\7a\2\2\u0410\u0412\7\7"+ + "\2\2\u0411\u0410\3\2\2\2\u0412\u0415\3\2\2\2\u0413\u0411\3\2\2\2\u0413"+ + "\u0414\3\2\2\2\u0414\u0417\3\2\2\2\u0415\u0413\3\2\2\2\u0416\u040f\3\2"+ + "\2\2\u0416\u0417\3\2\2\2\u0417\u041f\3\2\2\2\u0418\u041c\7a\2\2\u0419"+ + "\u041b\7\7\2\2\u041a\u0419\3\2\2\2\u041b\u041e\3\2\2\2\u041c\u041a\3\2"+ + "\2\2\u041c\u041d\3\2\2\2\u041d\u0420\3\2\2\2\u041e\u041c\3\2\2\2\u041f"+ + "\u0418\3\2\2\2\u041f\u0420\3\2\2\2\u0420\u0428\3\2\2\2\u0421\u0425\7a"+ + "\2\2\u0422\u0424\7\7\2\2\u0423\u0422\3\2\2\2\u0424\u0427\3\2\2\2\u0425"+ + "\u0423\3\2\2\2\u0425\u0426\3\2\2\2\u0426\u0429\3\2\2\2\u0427\u0425\3\2"+ + "\2\2\u0428\u0421\3\2\2\2\u0428\u0429\3\2\2\2\u0429\u042a\3\2\2\2\u042a"+ + "\u042b\t\2\2\2\u042b\u00db\3\2\2\2\u042c\u042d\7Y\2\2\u042d\u0431\t\2"+ + "\2\2\u042e\u0430\7\7\2\2\u042f\u042e\3\2\2\2\u0430\u0433\3\2\2\2\u0431"+ + "\u042f\3\2\2\2\u0431\u0432\3\2\2\2\u0432\u0434\3\2\2\2\u0433\u0431\3\2"+ + "\2\2\u0434\u0438\7a\2\2\u0435\u0437\7\7\2\2\u0436\u0435\3\2\2\2\u0437"+ + "\u043a\3\2\2\2\u0438\u0436\3\2\2\2\u0438\u0439\3\2\2\2\u0439\u043b\3\2"+ + "\2\2\u043a\u0438\3\2\2\2\u043b\u043f\t\2\2\2\u043c\u043e\7\7\2\2\u043d"+ + "\u043c\3\2\2\2\u043e\u0441\3\2\2\2\u043f\u043d\3\2\2\2\u043f\u0440\3\2"+ + "\2\2\u0440\u0449\3\2\2\2\u0441\u043f\3\2\2\2\u0442\u0446\7a\2\2\u0443"+ + "\u0445\7\7\2\2\u0444\u0443\3\2\2\2\u0445\u0448\3\2\2\2\u0446\u0444\3\2"+ + "\2\2\u0446\u0447\3\2\2\2\u0447\u044a\3\2\2\2\u0448\u0446\3\2\2\2\u0449"+ + "\u0442\3\2\2\2\u0449\u044a\3\2\2\2\u044a\u044b\3\2\2\2\u044b\u044f\7a"+ + "\2\2\u044c\u044e\7\7\2\2\u044d\u044c\3\2\2\2\u044e\u0451\3\2\2\2\u044f"+ + "\u044d\3\2\2\2\u044f\u0450\3\2\2\2\u0450\u0459\3\2\2\2\u0451\u044f\3\2"+ + "\2\2\u0452\u0456\7a\2\2\u0453\u0455\7\7\2\2\u0454\u0453\3\2\2\2\u0455"+ + "\u0458\3\2\2\2\u0456\u0454\3\2\2\2\u0456\u0457\3\2\2\2\u0457\u045a\3\2"+ + "\2\2\u0458\u0456\3\2\2\2\u0459\u0452\3\2\2\2\u0459\u045a\3\2\2\2\u045a"+ + "\u0462\3\2\2\2\u045b\u045f\7a\2\2\u045c\u045e\7\7\2\2\u045d\u045c\3\2"+ + "\2\2\u045e\u0461\3\2\2\2\u045f\u045d\3\2\2\2\u045f\u0460\3\2\2\2\u0460"+ + "\u0463\3\2\2\2\u0461\u045f\3\2\2\2\u0462\u045b\3\2\2\2\u0462\u0463\3\2"+ + "\2\2\u0463\u0465\3\2\2\2\u0464\u0466\t\2\2\2\u0465\u0464\3\2\2\2\u0465"+ + "\u0466\3\2\2\2\u0466\u00dd\3\2\2\2\u0467\u0468\7Z\2\2\u0468\u046c\t\2"+ + "\2\2\u0469\u046b\7\7\2\2\u046a\u0469\3\2\2\2\u046b\u046e\3\2\2\2\u046c"+ + "\u046a\3\2\2\2\u046c\u046d\3\2\2\2\u046d\u046f\3\2\2\2\u046e\u046c\3\2"+ + "\2\2\u046f\u0473\7a\2\2\u0470\u0472\7\7\2\2\u0471\u0470\3\2\2\2\u0472"+ + "\u0475\3\2\2\2\u0473\u0471\3\2\2\2\u0473\u0474\3\2\2\2\u0474\u0476\3\2"+ + "\2\2\u0475\u0473\3\2\2\2\u0476\u047a\7a\2\2\u0477\u0479\7\7\2\2\u0478"+ + "\u0477\3\2\2\2\u0479\u047c\3\2\2\2\u047a\u0478\3\2\2\2\u047a\u047b\3\2"+ + "\2\2\u047b\u047d\3\2\2\2\u047c\u047a\3\2\2\2\u047d\u047e\t\2\2\2\u047e"+ + "\u00df\3\2\2\2\u047f\u0480\7[\2\2\u0480\u0481\t\2\2\2\u0481\u00e1\3\2"+ + "\2\2\u0482\u0483\7\\\2\2\u0483\u0487\t\2\2\2\u0484\u0486\7\7\2\2\u0485"+ + "\u0484\3\2\2\2\u0486\u0489\3\2\2\2\u0487\u0485\3\2\2\2\u0487\u0488\3\2"+ + "\2\2\u0488\u048a\3\2\2\2\u0489\u0487\3\2\2\2\u048a\u048e\7a\2\2\u048b"+ + "\u048d\7\7\2\2\u048c\u048b\3\2\2\2\u048d\u0490\3\2\2\2\u048e\u048c\3\2"+ + "\2\2\u048e\u048f\3\2\2\2\u048f\u0491\3\2\2\2\u0490\u048e\3\2\2\2\u0491"+ + "\u0495\7a\2\2\u0492\u0494\7\7\2\2\u0493\u0492\3\2\2\2\u0494\u0497\3\2"+ + "\2\2\u0495\u0493\3\2\2\2\u0495\u0496\3\2\2\2\u0496\u0498\3\2\2\2\u0497"+ + "\u0495\3\2\2\2\u0498\u0499\t\2\2\2\u0499\u00e3\3\2\2\2\u049a\u049b\7]"+ + "\2\2\u049b\u049c\t\2\2\2\u049c\u00e5\3\2\2\2w\u00e9\u00ed\u00f7\u0124"+ + "\u0127\u012c\u013a\u013e\u0142\u0146\u014a\u014f\u0153\u0157\u015b\u015f"+ + "\u0163\u0168\u016c\u0170\u017a\u017e\u0182\u0188\u0192\u0197\u019b\u019f"+ + "\u01eb\u01f5\u01ff\u0209\u0213\u022c\u0254\u025b\u0265\u026c\u0291\u0298"+ + "\u02a2\u02a9\u02cb\u02e7\u02ee\u02f5\u02ff\u0306\u030d\u0317\u031e\u0325"+ + "\u0329\u0330\u0337\u033e\u0342\u0349\u0350\u0357\u035e\u0361\u0367\u036a"+ + "\u0370\u0373\u0376\u037d\u0384\u038b\u0392\u0395\u039b\u039e\u03a4\u03a7"+ + "\u03aa\u03b1\u03b8\u03bf\u03c6\u03c9\u03cc\u03d3\u03da\u03e1\u03e8\u03eb"+ + "\u03ee\u03f5\u03fc\u0403\u040a\u040d\u0413\u0416\u041c\u041f\u0425\u0428"+ + "\u0431\u0438\u043f\u0446\u0449\u044f\u0456\u0459\u045f\u0462\u0465\u046c"+ + "\u0473\u047a\u0487\u048e\u0495"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff -r 46df70a27767 -r 7683c4162746 src/main/java/de/intevation/lada/importer/laf/LafRawData.java --- a/src/main/java/de/intevation/lada/importer/laf/LafRawData.java Mon Oct 24 11:47:55 2016 +0200 +++ b/src/main/java/de/intevation/lada/importer/laf/LafRawData.java Mon Oct 24 11:52:17 2016 +0200 @@ -99,6 +99,10 @@ public void addKommentar(Map kommentar) { this.kommentar.add(kommentar); } + + public List> getKommentare() { + return this.kommentar; + } } public void addProbe(LafRawData.Probe probe) { diff -r 46df70a27767 -r 7683c4162746 src/main/java/de/intevation/lada/rest/importer/LafImportService.java --- a/src/main/java/de/intevation/lada/rest/importer/LafImportService.java Mon Oct 24 11:47:55 2016 +0200 +++ b/src/main/java/de/intevation/lada/rest/importer/LafImportService.java Mon Oct 24 11:52:17 2016 +0200 @@ -8,7 +8,9 @@ package de.intevation.lada.rest.importer; import java.util.HashMap; +import java.util.List; import java.util.Map; +import java.util.Map.Entry; import javax.enterprise.context.RequestScoped; import javax.inject.Inject; @@ -20,9 +22,12 @@ import javax.ws.rs.core.Context; import javax.ws.rs.core.MediaType; +import org.apache.log4j.Logger; + import de.intevation.lada.importer.ImportConfig; import de.intevation.lada.importer.ImportFormat; import de.intevation.lada.importer.Importer; +import de.intevation.lada.importer.ReportItem; import de.intevation.lada.util.annotation.AuthorizationConfig; import de.intevation.lada.util.auth.Authorization; import de.intevation.lada.util.auth.AuthorizationType; @@ -38,6 +43,9 @@ @RequestScoped public class LafImportService { + @Inject + private Logger logger; + /** * The importer */ @@ -71,11 +79,22 @@ importer.doImport(content, userInfo); Map respData = new HashMap(); - respData.put("errors", importer.getErrors()); - respData.put("warnings", importer.getWarnings()); + if (!importer.getErrors().isEmpty()) { + logger.debug("errs: " + importer.getErrors().size()); + for (Entry> entry : importer.getErrors().entrySet()) { + logger.debug(entry.getKey()); + for (ReportItem item : entry.getValue()) { + logger.debug(item.getKey() + " - " + item.getValue() + ": " + item.getCode()); + } + } + respData.put("errors", importer.getErrors()); + } + if (!importer.getWarnings().isEmpty()) { + logger.debug("warns: " + importer.getWarnings().size()); + respData.put("warnings", importer.getWarnings()); + } int code = 200; Response response = new Response(importer.getErrors().isEmpty(), code, respData); - importer.reset(); return response; } } diff -r 46df70a27767 -r 7683c4162746 src/main/java/de/intevation/lada/util/data/DataTransaction.java --- a/src/main/java/de/intevation/lada/util/data/DataTransaction.java Mon Oct 24 11:47:55 2016 +0200 +++ b/src/main/java/de/intevation/lada/util/data/DataTransaction.java Mon Oct 24 11:52:17 2016 +0200 @@ -91,6 +91,7 @@ em.remove( em.contains(object) ? object : em.merge(object)); + em.flush(); } public Query queryFromString(String sql, String dataSource) { diff -r 46df70a27767 -r 7683c4162746 src/test/java/de/intevation/lada/ImporterTest.java --- a/src/test/java/de/intevation/lada/ImporterTest.java Mon Oct 24 11:47:55 2016 +0200 +++ b/src/test/java/de/intevation/lada/ImporterTest.java Mon Oct 24 11:52:17 2016 +0200 @@ -532,7 +532,7 @@ kommentare.add(komm1); kommentare.add(komm2); - merger.mergeKommentare(messung, kommentare); + merger.mergeMessungKommentare(messung, kommentare); Assert.assertEquals(2, kommentare.size()); protocol.setPassed(true);