Added getTermRelationJSON() as a set based view on collections
diff --git a/CHANGES b/CHANGES
index d7f2e12..272a764 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+0.30.8 2014-04-10
+        - Added getTermRelationJSON() to KorapCollection (diewald)
+	  This is likely to get deprecated!
+
 0.30.7 2014-04-09
         - Moved JSON interpretation from BooleanFilter to KorapFilter (diewald)
 	- Added 'or' and group nesting to KorapFilter (diewald)
diff --git a/pom.xml b/pom.xml
index cd866c8..04b3b93 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,7 +11,7 @@
 -->
   <groupId>KorAP-modules</groupId>
   <artifactId>KorAP-lucene-index</artifactId>
-  <version>0.30.7</version>
+  <version>0.30.8</version>
   <packaging>jar</packaging>
 
   <name>KorAP-lucene-index</name>
diff --git a/src/main/java/de/ids_mannheim/korap/KorapCollection.java b/src/main/java/de/ids_mannheim/korap/KorapCollection.java
index 29545e7..fdb0ff3 100644
--- a/src/main/java/de/ids_mannheim/korap/KorapCollection.java
+++ b/src/main/java/de/ids_mannheim/korap/KorapCollection.java
@@ -26,6 +26,8 @@
 import com.fasterxml.jackson.databind.ObjectMapper;
 import com.fasterxml.jackson.databind.JsonNode;
 
+import java.io.StringWriter;
+
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -57,6 +59,7 @@
     public KorapCollection (String jsonString) {
 	this.filter = new ArrayList<FilterOperation>(5);
 	ObjectMapper mapper = new ObjectMapper();
+
 	try {
 	    JsonNode json = mapper.readValue(jsonString, JsonNode.class);
 	    if (json.has("collections")) {
@@ -150,7 +153,7 @@
 
 
     public String toString () {
-	StringBuffer sb = new StringBuffer();
+	StringBuilder sb = new StringBuilder();
 	for (FilterOperation fo : this.filter) {
 	    sb.append(fo.toString()).append("; ");
 	};
@@ -172,7 +175,7 @@
 	FixedBitSet bitset;
 
 	if (this.filterCount > 0) {
-	    bitset = new FixedBitSet(atomic.reader().numDocs());
+	    bitset = new FixedBitSet(atomic.reader().maxDoc());
 
 	    ArrayList<FilterOperation> filters = (ArrayList<FilterOperation>) this.filter.clone();
 
@@ -202,6 +205,8 @@
 		    if (filterIter == null) {
 			// There must be a better way ...
 			if (kc.isFilter()) {
+			    // TODO: Check if this is really correct!
+			    // Maybe here is the bug
 			    bitset.clear(0, bitset.length());
 			    noDoc = true;
 			}
@@ -254,9 +259,75 @@
 	return this.index.numberOf(this, "tokens", type);
     };
 
+    // This is only for testing purposes!
+    public HashMap getTermRelation(String field) throws Exception {
+	if (this.index == null) {
+	    HashMap<String,Long> map = new HashMap<>(1);
+	    map.put("-docs", (long) 0);
+	    return map;
+	};
+
+	return this.index.getTermRelation(this, field);
+    };
+
+    public String getTermRelationJSON(String field) throws IOException {
+	ObjectMapper mapper = new ObjectMapper();
+	StringWriter sw = new StringWriter();
+	sw.append("{\"field\":");
+	mapper.writeValue(sw,field);
+	sw.append(",");
+
+	try {
+	    HashMap<String, Long> map = this.getTermRelation(field);
+
+	    sw.append("\"documents\":");
+	    mapper.writeValue(sw,map.remove("-docs"));
+	    sw.append(",");
+
+	    String[] keys = map.keySet().toArray(new String[map.size()]);
+
+	    HashMap<String,Integer> setHash = new HashMap<>(20);
+	    ArrayList<HashMap<String,Long>> set = new ArrayList<>(20);
+	    ArrayList<Long[]> overlap = new ArrayList<>(100);
+	    
+	    int count = 0;
+	    for (String key : keys) {
+		if (!key.startsWith("#__")) {
+		    HashMap<String,Long> simpleMap = new HashMap<>();
+		    simpleMap.put(key, map.remove(key));
+		    set.add(simpleMap);
+		    setHash.put(key, count++);
+		};
+	    };
+
+	    keys = map.keySet().toArray(new String[map.size()]);
+	    for (String key : keys) {
+		String[] comb = key.substring(3).split(":###:");
+		Long[] l = new Long[3];
+		l[0] = (long) setHash.get(comb[0]);
+		l[1] = (long) setHash.get(comb[1]);
+		l[2] = map.remove(key);
+		overlap.add(l);
+	    };
+
+	    
+	    sw.append("\"sets\":");
+	    mapper.writeValue(sw, (Object) set);
+	    sw.append(",\"overlaps\":");
+	    mapper.writeValue(sw, (Object) overlap);
+	    sw.append(",\"error\":null");
+
+	}
+	catch (Exception e) {
+	    sw.append("\"error\":");
+	    mapper.writeValue(sw,e.getMessage());
+	};
+
+	sw.append("}");
+	return sw.getBuffer().toString();
+    };
+    
     public String getError () {
 	return this.error;
     };
-
-    // implement "till" with rangefilter
 };
diff --git a/src/main/java/de/ids_mannheim/korap/KorapIndex.java b/src/main/java/de/ids_mannheim/korap/KorapIndex.java
index 11ddadf..4a01774 100644
--- a/src/main/java/de/ids_mannheim/korap/KorapIndex.java
+++ b/src/main/java/de/ids_mannheim/korap/KorapIndex.java
@@ -119,6 +119,7 @@
     private ObjectMapper mapper = new ObjectMapper();
     private String version;
 
+    private int maxTermRelations = 33;
 
     private static ByteBuffer bb       = ByteBuffer.allocate(4),
 	                      bbOffset = ByteBuffer.allocate(8),
@@ -784,6 +785,102 @@
     };
 
 
+    public HashMap getTermRelation (String field) throws Exception {
+	return this.getTermRelation(new KorapCollection(this), field);
+    };
+
+
+    public HashMap getTermRelation (KorapCollection kc, String field) throws Exception {
+	HashMap<String,Long> map = new HashMap<>(100);
+	long docNumber = 0, checkNumber = 0;
+
+	try {
+	    if (kc.getCount() <= 0) {
+		checkNumber = (long) this.reader().numDocs();
+	    };
+
+	    for (AtomicReaderContext atomic : this.reader().leaves()) {
+
+		HashMap<String,FixedBitSet> termVector = new HashMap<>(20);
+
+		FixedBitSet docvec = kc.bits(atomic);
+		if (docvec != null) {
+		    docNumber += docvec.cardinality();		    
+		};
+
+		Terms terms = atomic.reader().fields().terms(field);
+
+		if (terms == null) {
+		    continue;
+		};
+		
+		int docLength = atomic.reader().maxDoc();
+		FixedBitSet bitset = new FixedBitSet(docLength);
+
+		// Iterate over all tokens in this field
+		TermsEnum termsEnum = terms.iterator(null);
+
+		while (termsEnum.next() != null) {
+
+		    String termString = termsEnum.term().utf8ToString();
+
+		    // System.err.println("Current term is " + termString);
+		    bitset.clear(0,docLength);
+	    
+		    // Get frequency
+		    bitset.or((DocIdSetIterator) termsEnum.docs((Bits) docvec, null));
+
+		    long value = 0;
+		    if (map.containsKey(termString)) {
+			value = map.get(termString);
+			// System.err.println(termString + " has " + value + " occurrences");
+
+		    };
+		    map.put(termString, value + bitset.cardinality());
+		    // System.err.println(termString + " adds " + bitset.cardinality());
+
+		    termVector.put(termString, bitset.clone());
+		};
+
+		int keySize = termVector.size();
+		String[] keys = termVector.keySet().toArray(new String[keySize]);
+		java.util.Arrays.sort(keys);
+
+
+		if (keySize > maxTermRelations) {
+		    throw new Exception(
+		      "termRelations are limited to a " + maxTermRelations + " sets"
+		    );
+		};
+		
+		for (int i = 0; i < keySize; i++) {
+		    for (int j = i+1; j < keySize; j++) {
+			FixedBitSet comby = termVector.get(keys[i]).clone();
+			comby.and(termVector.get(keys[j]));
+
+			StringBuilder sb = new StringBuilder();
+			sb.append("#__").append(keys[i]).append(":###:").append(keys[j]);
+			String combString = sb.toString();
+
+			long cap = (long) comby.cardinality();
+			if (map.containsKey(combString)) {
+			    cap += map.get(combString);
+			};
+			map.put(combString, cap);
+		    };
+		};
+	    };
+
+	    map.put("-docs", checkNumber != 0 ? checkNumber : docNumber);
+
+	}
+	catch (IOException e) {
+	    log.warn(e.getMessage());	    
+	};
+	return map;
+    };
+
+    
     /**
      * Search in the index.
      */
diff --git a/src/test/java/de/ids_mannheim/korap/index/TestKorapIndex.java b/src/test/java/de/ids_mannheim/korap/index/TestKorapIndex.java
index 86eaf8d..9ce5175 100644
--- a/src/test/java/de/ids_mannheim/korap/index/TestKorapIndex.java
+++ b/src/test/java/de/ids_mannheim/korap/index/TestKorapIndex.java
@@ -70,7 +70,6 @@
 	assertEquals(3, ki.numberOf("base", "documents"));
 	assertEquals(10, ki.numberOf("base", "sentences"));
 
-
 	// KorapQuery kq = new KorapQuery("text");
 	// ki.search();
     };
diff --git a/src/test/java/de/ids_mannheim/korap/search/TestKorapSearch.java b/src/test/java/de/ids_mannheim/korap/search/TestKorapSearch.java
index ecbf426..91a1717 100644
--- a/src/test/java/de/ids_mannheim/korap/search/TestKorapSearch.java
+++ b/src/test/java/de/ids_mannheim/korap/search/TestKorapSearch.java
@@ -4,8 +4,10 @@
 import java.io.*;
 
 import de.ids_mannheim.korap.KorapSearch;
+import de.ids_mannheim.korap.KorapCollection;
 import de.ids_mannheim.korap.KorapQuery;
 import de.ids_mannheim.korap.KorapIndex;
+import de.ids_mannheim.korap.index.FieldDocument;
 import de.ids_mannheim.korap.KorapFilter;
 import de.ids_mannheim.korap.KorapResult;
 import java.nio.file.Files;
@@ -339,9 +341,170 @@
 	assertEquals(119, kr.getTotalResults());
 	assertEquals(0, kr.getStartIndex());
 	assertEquals(10, kr.getItemsPerPage());
-
     };
 
+    @Test
+    public void getFoundryDistribution () throws Exception {
+
+	// Construct index
+	KorapIndex ki = new KorapIndex();
+	// Indexing test files
+	for (String i : new String[] {"00001", "00002", "00003", "00004", "00005", "00006", "02439"}) {
+	    ki.addDocFile(
+	      getClass().getResource("/wiki/" + i + ".json.gz").getFile(), true
+            );
+	};
+	ki.commit();
+
+	KorapCollection kc = new KorapCollection(ki);
+
+	assertEquals(7, kc.numberOf("documents"));
+
+    	HashMap map = kc.getTermRelation("foundries");
+	assertEquals((long) 7, map.get("-docs"));
+	assertEquals((long) 7, map.get("treetagger"));
+	assertEquals((long) 6, map.get("connexor/syntax"));
+	assertEquals((long) 6, map.get("#__connexor/syntax:###:treetagger"));
+	assertEquals((long) 7, map.get("#__connexor:###:treetagger"));
+    };
+
+    @Test
+    public void getTextClassDistribution () throws Exception {
+
+	KorapIndex ki = new KorapIndex();
+	ki.addDoc(
+"{" +
+"  \"fields\" : [" +
+"    { \"primaryData\" : \"abc\" },{" +
+"      \"name\" : \"tokens\"," +
+"      \"data\" : [" +
+"         [ \"s:a\", \"i:a\", \"_0#0-1\", \"-:t$<i>3\"]," +
+"         [ \"s:b\", \"i:b\", \"_1#1-2\" ]," +
+"         [ \"s:c\", \"i:c\", \"_2#2-3\" ]]}]," +
+"  \"textClass\" : \"music entertainment\"" +
+"}");
+
+	ki.addDoc(
+"{" +
+"  \"fields\" : [" +
+"    { \"primaryData\" : \"abc\" },{" +
+"      \"name\" : \"tokens\"," +
+"      \"data\" : [" +
+"         [ \"s:a\", \"i:a\", \"_0#0-1\", \"-:t$<i>3\"]," +
+"         [ \"s:b\", \"i:b\", \"_1#1-2\" ]," +
+"         [ \"s:c\", \"i:c\", \"_2#2-3\" ]]}]," +
+"  \"textClass\" : \"music singing\"" +
+"}");
+
+	ki.addDoc(
+"{" +
+"  \"fields\" : [" +
+"    { \"primaryData\" : \"abc\" },{" +
+"      \"name\" : \"tokens\"," +
+"      \"data\" : [" +
+"         [ \"s:a\", \"i:a\", \"_0#0-1\", \"-:t$<i>3\"]," +
+"         [ \"s:b\", \"i:b\", \"_1#1-2\" ]," +
+"         [ \"s:c\", \"i:c\", \"_2#2-3\" ]]}]," +
+"  \"textClass\" : \"music entertainment jumping\"" +
+"}");
+	ki.commit();
+
+
+	KorapCollection kc = new KorapCollection(ki);
+	assertEquals(3, kc.numberOf("documents"));
+
+    	HashMap map = kc.getTermRelation("textClass");
+	assertEquals((long) 1, map.get("singing"));
+	assertEquals((long) 1, map.get("jumping"));
+	assertEquals((long) 3, map.get("music"));
+	assertEquals((long) 2, map.get("entertainment"));
+	assertEquals((long) 3, map.get("-docs"));
+	assertEquals((long) 2, map.get("#__entertainment:###:music"));
+	assertEquals((long) 1, map.get("#__entertainment:###:jumping"));
+	assertEquals((long) 0, map.get("#__entertainment:###:singing"));
+	assertEquals((long) 0, map.get("#__jumping:###:singing"));
+	assertEquals((long) 1, map.get("#__jumping:###:music"));
+	assertEquals((long) 1, map.get("#__music:###:singing"));
+	assertEquals(11, map.size());
+
+	// System.err.println(kc.getTermRelationJSON("textClass"));
+    };
+
+    @Test
+    public void getTextClassDistribution2 () throws Exception {
+
+	KorapIndex ki = new KorapIndex();
+	ki.addDoc(
+"{" +
+"  \"fields\" : [" +
+"    { \"primaryData\" : \"abc\" },{" +
+"      \"name\" : \"tokens\"," +
+"      \"data\" : [" +
+"         [ \"s:a\", \"i:a\", \"_0#0-1\", \"-:t$<i>3\"]," +
+"         [ \"s:b\", \"i:b\", \"_1#1-2\" ]," +
+"         [ \"s:c\", \"i:c\", \"_2#2-3\" ]]}]," +
+"  \"textClass\" : \"\"" +
+"}");
+
+	ki.commit();
+	ki.addDoc(
+"{" +
+"  \"fields\" : [" +
+"    { \"primaryData\" : \"abc\" },{" +
+"      \"name\" : \"tokens\"," +
+"      \"data\" : [" +
+"         [ \"s:a\", \"i:a\", \"_0#0-1\", \"-:t$<i>3\"]," +
+"         [ \"s:b\", \"i:b\", \"_1#1-2\" ]," +
+"         [ \"s:c\", \"i:c\", \"_2#2-3\" ]]}]," +
+"  \"textClass\" : \"music entertainment\"" +
+"}");
+
+	ki.commit();
+	ki.addDoc(
+"{" +
+"  \"fields\" : [" +
+"    { \"primaryData\" : \"abc\" },{" +
+"      \"name\" : \"tokens\"," +
+"      \"data\" : [" +
+"         [ \"s:a\", \"i:a\", \"_0#0-1\", \"-:t$<i>3\"]," +
+"         [ \"s:b\", \"i:b\", \"_1#1-2\" ]," +
+"         [ \"s:c\", \"i:c\", \"_2#2-3\" ]]}]," +
+"  \"textClass\" : \"music singing\"" +
+"}");
+
+	ki.addDoc(
+"{" +
+"  \"fields\" : [" +
+"    { \"primaryData\" : \"abc\" },{" +
+"      \"name\" : \"tokens\"," +
+"      \"data\" : [" +
+"         [ \"s:a\", \"i:a\", \"_0#0-1\", \"-:t$<i>3\"]," +
+"         [ \"s:b\", \"i:b\", \"_1#1-2\" ]," +
+"         [ \"s:c\", \"i:c\", \"_2#2-3\" ]]}]," +
+"  \"textClass\" : \"music entertainment jumping\"" +
+"}");
+	ki.commit();
+
+
+	KorapCollection kc = new KorapCollection(ki);
+	assertEquals(4, kc.numberOf("documents"));
+
+    	HashMap map = kc.getTermRelation("textClass");
+	assertEquals((long) 1, map.get("singing"));
+	assertEquals((long) 1, map.get("jumping"));
+	assertEquals((long) 3, map.get("music"));
+	assertEquals((long) 2, map.get("entertainment"));
+	assertEquals((long) 4, map.get("-docs"));
+	assertEquals((long) 2, map.get("#__entertainment:###:music"));
+	assertEquals((long) 1, map.get("#__entertainment:###:jumping"));
+	assertEquals((long) 0, map.get("#__entertainment:###:singing"));
+	assertEquals((long) 0, map.get("#__jumping:###:singing"));
+	assertEquals((long) 1, map.get("#__jumping:###:music"));
+	assertEquals((long) 1, map.get("#__music:###:singing"));
+	assertEquals(11, map.size());
+    };
+
+
 
     public static String getString (String path) {
 	StringBuilder contentBuilder = new StringBuilder();
diff --git a/src/test/resources/wiki/00002.json b/src/test/resources/wiki/00002.json
index 4647f73..5753d88 100644
--- a/src/test/resources/wiki/00002.json
+++ b/src/test/resources/wiki/00002.json
@@ -1 +1 @@
-{"corpusID":"WPD","textClass":"freizeit-unterhaltung reisen","title":"Å","fields":[{"primaryData":"Der Buchstabe Å - Kleinbuchstabe å - steht für den offenen, tiefen Vokal A mit einer Tendenz zum O (langes nordisches A), wie er im Dänischen, Norwegischen vorkommt. Früher wurde er im Dänischen Aa bzw. aa geschrieben, erst am 22. März 1948 wurde Å eingeführt. den Vokal o (wie langes/kurzes deutsches \"o\") im Schwedischen. die Abkürzung für Ångström (Einheit) das Suffix -aa im Schwedischen Å bedeutet auf schwedisch, norwegisch und dänisch \"Bach/Fluss\". Das altnordische Wort á - Wasser ist urverwandt mit lateinisch aqua, erhalten im Ortsnamen Århus, vergleiche deutsch Au. den altnordischen Buchstaben á, wie er heute im Färöischen und Isländischen verwendet wird. in der dänischen Sprache ein Ausdruck des Erstaunens, vergleiche deutsch ach! oder oh! Å bzw. vollständig Å i Lofoten ist der Name eines Ortes auf der Inselgruppe Lofoten in Norwegen, unter anderem Endpunkt der Europastraße E10. Außer Å i Lofoten gibt es in Norwegen noch andere Orte, die Å heißen. Auch in Schweden gibt es mehrere Orte, die Å heißen Das Å besteht aus dem Buchstaben A und einem kleinen übergeschriebenen O, welches die Vokalqualität andeutet. Im Schwedischen steht der Buchstabe nach dem z und vor dem ä im Alphabet, im Dänischen ist es der letzte Buchstabe des Alphabetes. In Dänemark ist der alte Digraph Aa durch Å ersetzt worden, in Eigennamen und Ortsnamen findet sich jedoch noch häufig die alte Scheibung. Ein Kuriosum ist die Stadt Århus, die sich mit Å schreibt, während im Namen der Universität der Stadt der Digraph beibehalten wurde: Aarhus Universitet."},{"tokenization":"opennlp#tokens","data":[["s:Der","i:der","_0#0-3","-:tokens$<i>246","-:sentences$<i>16","-:paragraphs$<i>11"],["s:Buchstabe","i:buchstabe","_1#4-13","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#4-13$<i>2","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>5","<:mate/d:NK$<i>2","<:mate/d:PAR$<i>3","xip/p:NOUN","xip/l:Buchstabe","<>:xip/c:NOUN#4-13$<i>2","<>:xip/c:NPA#4-13$<i>2",">:xip/d:SUBJ$<i>5"],["s:Å","i:å","_2#14-15","opennlp/p:VVFIN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#14-15$<i>3","tt/p:NE","tt/p:NN","tt/p:VVINF","tt/p:VVFIN","mate/l:å","mate/p:CARD",">:mate/d:NK$<i>1","xip/p:ADV","xip/l:å","<>:xip/c:ADV#14-15$<i>3",">:xip/d:VMOD$<i>5"],["s:Kleinbuchstabe","i:kleinbuchstabe","_3#18-32","opennlp/p:NN","cnx/l:klein","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#18-32$<i>4","tt/l:Kleinbuchstabe","tt/p:NN","mate/l:kleinbuchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PAR$<i>1","<:mate/d:NK$<i>4","xip/p:NOUN","xip/l:klein","xip/l:Buchstabe","xip/l:Kleinbuchstabe","<>:xip/c:INS#16-36$<i>5","<>:xip/c:NP#18-32$<i>4<b>1","<>:xip/c:NPA#18-32$<i>4<b>2","<>:xip/c:NOUN#18-32$<i>4"],["s:å","i:å","_4#33-34","opennlp/p:VVFIN","cnx/l:å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#33-34$<i>5","tt/p:NE","tt/p:NN","tt/p:VVINF","tt/p:VVFIN","mate/l:å","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>3","xip/p:ADV","xip/l:å","<>:xip/c:ADV#33-34$<i>5"],["s:steht","i:steht","_5#37-42","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>1","<:mate/d:SVP$<i>6","xip/p:VERB","xip/l:stehen","<>:xip/c:VERB#37-42$<i>6","<:xip/d:SUBJ$<i>1","<:xip/d:VMOD$<i>2","xip/d:VMAIN","<:xip/d:OBJ$<i>11"],["s:für","i:für","_6#43-46","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:SVP$<i>5","xip/p:PREP","xip/l:für","<>:xip/c:PP#43-72$<i>11","<>:xip/c:PREP#43-46$<i>7"],["s:den","i:den","_7#47-50","<>:s#47-165$<i>26","<>:p#47-260$<i>43","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>10","xip/p:DET","xip/l:der","<>:xip/c:NP#47-72$<i>11<b>1","<>:xip/c:DET#47-50$<i>8",">:xip/d:DETERM$<i>10"],["s:offenen","i:offenen","_8#51-58","opennlp/p:ADJA","cnx/l:offen","cnx/p:A","cnx/syn:@PREMOD","tt/l:offen","tt/p:ADJA","mate/l:offen","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>10","<:mate/d:CJ$<i>9","xip/p:ADJ","xip/l:offen","<>:xip/c:NPA#51-72$<i>11<b>2","<>:xip/c:AP#51-58$<i>9<b>3","<>:xip/c:ADJ#51-58$<i>9",">:xip/d:NMOD$<i>10"],["s:tiefen","i:tiefen","_9#60-66","opennlp/p:ADJA","cnx/l:tief","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#60-72$<i>11","tt/l:tief","tt/p:ADJA","mate/l:tief","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:CJ$<i>8","xip/p:ADJ","xip/l:tief","<>:xip/c:AP#60-66$<i>10<b>3","<>:xip/c:ADJ#60-66$<i>10",">:xip/d:NMOD$<i>10"],["s:Vokal","i:vokal","_10#67-72","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>7","<:mate/d:NK$<i>8","<:mate/d:NK$<i>11","<:mate/d:MNR$<i>12","<:mate/d:MNR$<i>25","xip/p:NOUN","xip/l:Vokal","<>:xip/c:NOUN#67-72$<i>11","<:xip/d:DETERM$<i>7","<:xip/d:NMOD$<i>8","<:xip/d:NMOD$<i>9"],["s:A","i:a","_11#73-74","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>10","xip/p:SYMBOL","xip/l:A","<>:xip/c:SYMBOL#73-74$<i>12","<>:xip/c:NP#73-74$<i>12","<>:xip/c:NPA#73-74$<i>12<b>1","<>:xip/c:NOUN#73-74$<i>12<b>2",">:xip/d:OBJ$<i>5"],["s:mit","i:mit","_12#75-78","opennlp/p:APPR","cnx/l:mit","cnx/p:ADV","cnx/syn:@ADVL","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MNR$<i>10","<:mate/d:NK$<i>14","xip/p:PREP","xip/l:mit","<>:xip/c:PP#75-92$<i>15","<>:xip/c:PREP#75-78$<i>13"],["s:einer","i:einer","_13#79-84","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>14","xip/p:DET","xip/l:ein","<>:xip/c:NP#79-92$<i>15<b>1","<>:xip/c:DET#79-84$<i>14",">:xip/d:DETERM$<i>14"],["s:Tendenz","i:tendenz","_14#85-92","opennlp/p:NN","cnx/l:tendenz","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#85-98$<i>17","tt/l:Tendenz","tt/p:NN","mate/l:tendenz","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>13",">:mate/d:NK$<i>12","<:mate/d:MNR$<i>15","xip/p:NOUN","xip/l:Tendenz","<>:xip/c:NPA#85-92$<i>15<b>2","<>:xip/c:NOUN#85-92$<i>15","<:xip/d:DETERM$<i>13"],["s:zum","i:zum","_15#93-96","opennlp/p:APPRART","tt/l:zum","tt/p:APPRART","mate/l:zu","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MNR$<i>14","<:mate/d:NK$<i>16","xip/p:PREP","xip/l:zu","<>:xip/c:PREP#93-96$<i>16","<>:xip/c:PP#93-98$<i>17"],["s:O","i:o","_16#97-98","opennlp/p:NE","cnx/l:O","cnx/p:N","cnx/syn:@NH","tt/l:O","tt/p:NN","mate/l:O","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>15","<:mate/d:APP$<i>19","xip/p:SYMBOL","xip/l:O","<>:xip/c:SYMBOL#97-98$<i>17","<>:xip/c:NP#97-98$<i>17<b>1","<>:xip/c:NPA#97-98$<i>17<b>2","<>:xip/c:NOUN#97-98$<i>17<b>3"],["s:langes","i:langes","_17#100-106","opennlp/p:ADJA","cnx/l:lang","cnx/p:A","cnx/syn:@PREMOD","tt/l:lang","tt/p:ADJA","mate/l:lang","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:MO$<i>18","xip/p:ADJ","xip/l:lang","<>:xip/c:INS#99-120$<i>20","<>:xip/c:NP#100-119$<i>20<b>1","<>:xip/c:NPA#100-119$<i>20<b>2","<>:xip/c:AP#100-106$<i>18<b>3","<>:xip/c:ADJ#100-106$<i>18",">:xip/d:NMOD$<i>19"],["s:nordisches","i:nordisches","_18#107-117","opennlp/p:ADJA","cnx/l:nordisch","cnx/p:A","cnx/syn:@NH","tt/l:nordisch","tt/p:ADJA","mate/l:nordisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>17",">:mate/d:NK$<i>19","xip/p:ADJ","xip/l:nordisch","<>:xip/c:AP#107-117$<i>19<b>3","<>:xip/c:ADJ#107-117$<i>19",">:xip/d:NMOD$<i>19"],["s:A","i:a","_19#118-119","opennlp/p:NN","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>18",">:mate/d:APP$<i>16","xip/p:SYMBOL","xip/l:A","<>:xip/c:NOUN#118-119$<i>20<b>3","<>:xip/c:SYMBOL#118-119$<i>20","<:xip/d:NMOD$<i>17","<:xip/d:NMOD$<i>18"],["s:wie","i:wie","_20#122-125","opennlp/p:PWAV","cnx/l:wie","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wie","tt/p:KOUS","tt/p:KOKOM","mate/l:wie","mate/p:PWAV",">:mate/d:MO$<i>25","xip/p:ADV","xip/l:wie","<>:xip/c:ADV#122-125$<i>21"],["s:er","i:er","_21#126-128","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>25","xip/p:PRON","xip/l:er","<>:xip/c:PRON#126-128$<i>22","<>:xip/c:NP#126-128$<i>22","xip/d:THEMA"],["s:im","i:im","_22#129-131","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>25","<:mate/d:NK$<i>23","xip/p:PREP","xip/l:in","<>:xip/c:PREP#129-131$<i>23","<>:xip/c:PP#129-141$<i>24"],["s:Dänischen","i:dänischen","_23#132-141","opennlp/p:NN","cnx/l:Dänisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#132-141$<i>24","tt/l:Dänische","tt/p:NN","mate/l:dänischen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>22","xip/p:NOUN","xip/l:dänisch","<>:xip/c:NOUN#132-141$<i>24","<>:xip/c:NP#132-141$<i>24<b>1","<>:xip/c:NPA#132-141$<i>24<b>2"],["s:Norwegischen","i:norwegischen","_24#143-155","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Norwegisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#143-155$<i>25","tt/l:Norwegische","tt/p:NN","mate/l:norwegischen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>25","xip/p:NOUN","xip/l:norwegisch","<>:xip/c:MC#143-164$<i>26","<>:xip/c:NP#143-155$<i>25<b>1","<>:xip/c:NPA#143-155$<i>25<b>2","<>:xip/c:NOUN#143-155$<i>25",">:xip/d:SUBJ$<i>25"],["s:vorkommt","i:vorkommt","_25#156-164","opennlp/p:VVFIN","cnx/l:vor","cnx/l:kommen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:vorkommen","tt/p:VVFIN","mate/l:vorkommen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>20","<:mate/d:SB$<i>21","<:mate/d:MO$<i>22","<:mate/d:MO$<i>24",">:mate/d:MNR$<i>10","xip/p:VERB","xip/l:vorkommen","<>:xip/c:VERB#156-164$<i>26","<:xip/d:SUBJ$<i>24","xip/d:VMAIN"],["s:Früher","i:früher","_26#166-172","<>:s#166-260$<i>43","opennlp/p:NN","cnx/l:früh","cnx/p:A","cnx/syn:@NH","tt/l:früher","tt/p:ADV","tt/l:früh","tt/p:ADJD","mate/l:früh","mate/p:ADJD","mate/m:degree:comp",">:mate/d:MO$<i>34","xip/p:ADV","xip/l:früher","<>:xip/c:TOP#166-260$<i>43","<>:xip/c:MC#166-217$<i>35<b>1","<>:xip/c:ADV#166-172$<i>27",">:xip/d:VMOD$<i>34"],["s:wurde","i:wurde","_27#173-178","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>28","<:mate/d:OC$<i>34","<:mate/d:CJ$<i>40","xip/p:VERB","xip/l:werden","<>:xip/c:VERB#173-178$<i>28","<:xip/d:AUXIL$<i>34"],["s:er","i:er","_28#179-181","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>27","xip/p:PRON","xip/l:er","<>:xip/c:NP#179-181$<i>29<b>2","<>:xip/c:PRON#179-181$<i>29",">:xip/d:SUBJ$<i>34"],["s:im","i:im","_29#182-184","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>34","xip/p:PREP","xip/l:in","<>:xip/c:PREP#182-184$<i>30","<>:xip/c:PP#182-197$<i>32<b>2"],["s:Dänischen","i:dänischen","_30#185-194","opennlp/p:ADJA","cnx/l:dänisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#185-197$<i>32","tt/l:Dänische","tt/p:NN","mate/l:dänisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","xip/p:ADJ","xip/l:dänisch","<>:xip/c:NP#185-197$<i>32<b>3","<>:xip/c:NPA#185-197$<i>32<b>4","<>:xip/c:AP#185-194$<i>31<b>5","<>:xip/c:ADJ#185-194$<i>31",">:xip/d:NMOD$<i>31"],["s:Aa","i:aa","_31#195-197","opennlp/p:NE","cnx/l:aa","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:aa","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:Aa","<>:xip/c:NOUN#195-197$<i>32","<:xip/d:NMOD$<i>30"],["s:bzw.","i:bzw.","_32#198-202","opennlp/p:KON","cnx/l:bzw.","cnx/p:CC","cnx/syn:@CC","tt/l:bzw.","tt/p:KOKOM","tt/p:KOUI","xip/p:CONJ","xip/l:beziehungsweise","<>:xip/c:CONJ#198-202$<i>33"],["s:aa","i:aa","_33#203-205","opennlp/p:NE","cnx/l:aa","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#203-205$<i>34","tt/l:aa","tt/p:NE","tt/p:XY","tt/p:FM","mate/l:aa","mate/p:ADV",">:mate/d:MO$<i>34","xip/p:ADV","xip/l:aa","<>:xip/c:ADV#203-205$<i>34",">:xip/d:VMOD$<i>34"],["s:geschrieben","i:geschrieben","_34#206-217","opennlp/p:VVPP","cnx/l:schreiben","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:schreiben","tt/p:VVPP","mate/l:schreiben","mate/p:VVPP","<:mate/d:MO$<i>26","<:mate/d:MO$<i>29","<:mate/d:MO$<i>33",">:mate/d:OC$<i>27","xip/p:VERB","xip/l:schreiben","<>:xip/c:VERB#206-217$<i>35","<:xip/d:VMOD$<i>26","<:xip/d:SUBJ$<i>28","<:xip/d:VMOD$<i>33",">:xip/d:AUXIL$<i>27","xip/d:VMAIN"],["s:erst","i:erst","_35#219-223","opennlp/p:ADV","cnx/l:erst","cnx/p:ADV","cnx/syn:@ADVL","tt/l:erst","tt/p:ADV","mate/l:erst","mate/p:ADV",">:mate/d:MO$<i>36","xip/p:ADV","xip/l:erst","<>:xip/c:MC#219-259$<i>43<b>1","<>:xip/c:ADV#219-223$<i>36",">:xip/d:VMOD$<i>42"],["s:am","i:am","_36#224-226","opennlp/p:APPRART","tt/l:am","tt/p:APPRART","mate/l:an","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:MO$<i>35",">:mate/d:MO$<i>42","<:mate/d:NK$<i>38","xip/p:PREP","xip/l:an","<>:xip/c:PREP#224-226$<i>37","<>:xip/c:PP#224-240$<i>40<b>2"],["s:22.","i:22.","_37#227-230","opennlp/p:ADJA","cnx/l:22.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/c:np#227-235$<i>39","tt/l:22.","tt/p:ADJA","xip/p:NUM","xip/l:22.","<>:xip/c:NUM#227-230$<i>38","<>:xip/c:NP#227-240$<i>40<b>3","<>:xip/c:NPA#227-240$<i>40<b>4","<>:xip/c:NOUN#227-240$<i>40<b>5"],["s:März","i:märz","_38#231-235","opennlp/p:NN","cnx/l:märz","cnx/p:N","cnx/syn:@NH","tt/l:März","tt/p:NN","mate/l:märz","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>36","<:mate/d:NK$<i>39","xip/p:NOUN","xip/l:März","<>:xip/c:NOUN#231-235$<i>39"],["s:1948","i:1948","_39#236-240","opennlp/p:CARD","cnx/l:1948","cnx/p:NUM","cnx/syn:@NH","tt/l:1948","tt/p:CARD","mate/l:1948","mate/p:CARD",">:mate/d:NK$<i>38","xip/p:NUM","xip/l:1948","<>:xip/c:NUM#236-240$<i>40"],["s:wurde","i:wurde","_40#241-246","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind",">:mate/d:CJ$<i>27","<:mate/d:SB$<i>41","<:mate/d:OC$<i>42","xip/p:VERB","xip/l:werden","<>:xip/c:VERB#241-246$<i>41","<:xip/d:AUXIL$<i>42"],["s:Å","i:å","_41#247-248","opennlp/p:NE","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#247-248$<i>42","tt/p:NN","tt/p:ADJD","tt/p:NE","mate/l:å","mate/p:CARD",">:mate/d:SB$<i>40","xip/p:ADV","xip/l:å","<>:xip/c:ADV#247-248$<i>42",">:xip/d:VMOD$<i>42"],["s:eingeführt","i:eingeführt","_42#249-259","opennlp/p:VVPP","cnx/l:ein","cnx/l:führen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:einführen","tt/p:VVPP","mate/l:einführen","mate/p:VVPP","<:mate/d:MO$<i>36",">:mate/d:OC$<i>40","xip/p:VERB","xip/l:einführen","<>:xip/c:VERB#249-259$<i>43","<:xip/d:VMOD$<i>35","<:xip/d:VMOD$<i>41",">:xip/d:AUXIL$<i>40","xip/d:VMAIN"],["s:den","i:den","_43#261-264","<>:s#261-323$<i>52","<>:p#261-323$<i>52","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>45","xip/p:DET","xip/l:der","<>:xip/c:DET#261-264$<i>44","<>:xip/c:TOP#261-323$<i>52","<>:xip/c:NP#261-270$<i>45<b>1",">:xip/d:DETERM$<i>44"],["s:Vokal","i:vokal","_44#265-270","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#265-270$<i>45","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:FM","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>45","xip/p:NOUN","xip/l:Vokal","<>:xip/c:NPA#265-270$<i>45<b>2","<>:xip/c:NOUN#265-270$<i>45","<:xip/d:DETERM$<i>43"],["s:o","i:o","_45#271-272","opennlp/p:ADV","cnx/l:o","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#271-272$<i>46","tt/l:o","tt/p:NE","tt/p:FM","tt/p:XY","mate/l:O","mate/p:FM","<:mate/d:NK$<i>43","<:mate/d:PNC$<i>44",">:mate/d:SB$<i>47","xip/p:SYMBOL","xip/l:o","<>:xip/c:SYMBOL#271-272$<i>46","<>:xip/c:NP#271-272$<i>46<b>1","<>:xip/c:NPA#271-272$<i>46<b>2","<>:xip/c:NOUN#271-272$<i>46<b>3","xip/d:THEMA"],["s:wie","i:wie","_46#274-277","opennlp/p:PWAV","cnx/l:wie","cnx/p:ADV","cnx/syn:@PREMOD","tt/l:wie","tt/p:KOKOM","tt/p:KOUS","mate/l:wie","mate/p:PWAV",">:mate/d:MO$<i>47","xip/p:CONJ","xip/l:wie","<>:xip/c:CONJ#274-277$<i>47","<>:xip/c:INS#273-306$<i>50<b>1"],["s:langes/kurzes","i:langes/kurzes","_47#278-291","opennlp/p:ADJA","cnx/l:lang","cnx/l:/","cnx/l:kurz","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#278-305$<i>50","mate/l:langes/kurz","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:SB$<i>45","<:mate/d:MO$<i>46","<:mate/d:MO$<i>50"],["s:deutsches","i:deutsches","_48#292-301","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@PREMOD","tt/l:deutsch","tt/p:ADJA","mate/l:deutsch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","xip/p:ADJ","xip/l:deutsch","<>:xip/c:ADJ#292-301$<i>49"],["s:\"o\"","i:\"o\"","_49#302-305","opennlp/p:NN","cnx/l:o","cnx/p:N","cnx/syn:@NH"],["s:im","i:im","_50#307-309","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>47","<:mate/d:NK$<i>51","xip/p:PREP","xip/l:in","<>:xip/c:PP#307-322$<i>52<b>1","<>:xip/c:PREP#307-309$<i>51"],["s:Schwedischen","i:schwedischen","_51#310-322","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Schwedisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#310-322$<i>52","tt/l:Schwedische","tt/p:NN","mate/l:schwedischen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>50","xip/p:NOUN","xip/l:schwedisch","<>:xip/c:NP#310-322$<i>52<b>2","<>:xip/c:NPA#310-322$<i>52<b>3","<>:xip/c:NOUN#310-322$<i>52"],["s:die","i:die","_52#324-327","<>:s#324-360$<i>57","<>:p#324-360$<i>57","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>53","xip/p:DET","xip/l:die","<>:xip/c:TOP#324-455$<i>70","<>:xip/c:MC#324-402$<i>64<b>1","<>:xip/c:NP#324-337$<i>54<b>2","<>:xip/c:DET#324-327$<i>53",">:xip/d:DETERM$<i>53"],["s:Abkürzung","i:abkürzung","_53#328-337","opennlp/p:NN","cnx/l:abkürzung","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#328-350$<i>56","tt/l:Abkürzung","tt/p:NN","mate/l:abkürzung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>52","<:mate/d:MNR$<i>54","xip/p:NOUN","xip/l:Abkürzung","<>:xip/c:NOUN#328-337$<i>54","<>:xip/c:NPA#328-337$<i>54<b>3","<:xip/d:DETERM$<i>52",">:xip/d:SUBJ$<i>63"],["s:für","i:für","_54#338-341","opennlp/p:ADJA","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>53","<:mate/d:NK$<i>55","xip/p:PREP","xip/l:für","<>:xip/c:PP#338-350$<i>56<b>2","<>:xip/c:PREP#338-341$<i>55"],["s:Ångström","i:ångström","_55#342-350","opennlp/p:NN","cnx/l:Ångström","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:ångström","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>54","<:mate/d:PAR$<i>56","xip/p:NOUN","xip/l:Ångström","<>:xip/c:NOUN#342-350$<i>56","<>:xip/c:NP#342-350$<i>56<b>3","<>:xip/c:NPA#342-350$<i>56<b>4"],["s:Einheit","i:einheit","_56#352-359","opennlp/p:NN","cnx/l:einheit","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#352-359$<i>57","tt/l:Einheit","tt/p:NN","mate/l:einheit","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PAR$<i>55","xip/p:NOUN","xip/l:Einheit","<>:xip/c:NOUN#352-359$<i>57","<>:xip/c:INS#351-360$<i>57<b>2","<>:xip/c:NP#352-359$<i>57<b>3","<>:xip/c:NPA#352-359$<i>57<b>4"],["s:das","i:das","_57#361-364","<>:s#361-391$<i>62","<>:p#361-391$<i>62","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>58","xip/p:DET","xip/l:das","<>:xip/c:DET#361-364$<i>58","<>:xip/c:NP#361-371$<i>59<b>2",">:xip/d:DETERM$<i>58"],["s:Suffix","i:suffix","_58#365-371","opennlp/p:NN","cnx/l:suffix","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#365-371$<i>59","tt/l:Suffix","tt/p:NN","mate/l:suffix","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>57","<:mate/d:APP$<i>60","xip/p:NOUN","xip/l:Suffix","<>:xip/c:NPA#365-371$<i>59<b>3","<>:xip/c:NOUN#365-371$<i>59","<:xip/d:DETERM$<i>57",">:xip/d:OBJ$<i>63"],["s:-aa","i:-aa","_59#372-375","opennlp/p:NN","tt/p:NN","tt/p:NE","xip/p:SYMBOL","xip/l:-aa","<>:xip/c:NP#372-375$<i>60<b>2","<>:xip/c:NPA#372-375$<i>60<b>3","<>:xip/c:NOUN#372-375$<i>60<b>4","<>:xip/c:SYMBOL#372-375$<i>60",">:xip/d:OBJ$<i>63"],["s:im","i:im","_60#376-378","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:APP$<i>58","<:mate/d:NK$<i>61","xip/p:PREP","xip/l:in","<>:xip/c:PP#376-391$<i>62<b>2","<>:xip/c:PREP#376-378$<i>61"],["s:Schwedischen","i:schwedischen","_61#379-391","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:schwedisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:Schwedische","tt/p:NN","mate/l:schwedisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>60","xip/p:NOUN","xip/l:schwedisch","<>:xip/c:NP#379-391$<i>62<b>3","<>:xip/c:NPA#379-391$<i>62<b>4","<>:xip/c:NOUN#379-391$<i>62"],["s:Å","i:å","_62#392-393","<>:s#392-455$<i>70","<>:p#392-576$<i>87","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","tt/p:ADJD","tt/p:VVFIN","mate/l:å","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:ADV","xip/l:å","<>:xip/c:ADV#392-393$<i>63",">:xip/d:VMOD$<i>63"],["s:bedeutet","i:bedeutet","_63#394-402","opennlp/p:VVFIN","cnx/l:bedeuten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bedeuten","tt/p:VVFIN","mate/l:bedeuten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>64","xip/p:VERB","xip/l:bedeuten","<>:xip/c:VERB#394-402$<i>64","<:xip/d:SUBJ$<i>53","<:xip/d:OBJ$<i>58","<:xip/d:OBJ$<i>59","<:xip/d:VMOD$<i>62","xip/d:VMAIN"],["s:auf","i:auf","_64#403-406","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MO$<i>63","xip/p:PREP","xip/l:auf","<>:xip/c:PREP#403-406$<i>65"],["s:schwedisch","i:schwedisch","_65#407-417","opennlp/p:ADJD","cnx/l:schwedisch","cnx/p:A","cnx/syn:@NH","tt/l:schwedisch","tt/p:ADJD","mate/l:schwedisch","mate/p:ADJD","mate/m:degree:pos","<:mate/d:CJ$<i>66","xip/p:ADJ","xip/l:schwedisch","<>:xip/c:ADJ#407-417$<i>66","<>:xip/c:AP#407-417$<i>66<b>1"],["s:norwegisch","i:norwegisch","_66#419-429","opennlp/p:ADJD","cnx/l:norwegisch","cnx/p:A","cnx/syn:@NH","tt/l:norwegisch","tt/p:ADJD","mate/l:norwegisch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:CJ$<i>65","<:mate/d:CD$<i>67","xip/p:ADJ","xip/l:norwegisch","<>:xip/c:ADJ#419-429$<i>67","<>:xip/c:AP#419-429$<i>67<b>1","<:xip/d:COORD$<i>67"],["s:und","i:und","_67#430-433","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>66","<:mate/d:CJ$<i>68","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#430-433$<i>68",">:xip/d:COORD$<i>66",">:xip/d:COORD$<i>68"],["s:dänisch","i:dänisch","_68#434-441","opennlp/p:ADJD","cnx/l:dänisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:dänisch","tt/p:ADJD","mate/l:dänisch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:CJ$<i>67","xip/p:ADJ","xip/l:dänisch","<>:xip/c:AP#434-441$<i>69<b>1","<>:xip/c:ADJ#434-441$<i>69","<:xip/d:COORD$<i>67"],["s:\"Bach/Fluss\"","i:\"bach/fluss\"","_69#442-454","opennlp/p:NN"],["s:Das","i:das","_70#456-459","<>:s#456-576$<i>87","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>72","xip/p:DET","xip/l:das","<>:xip/c:DET#456-459$<i>71","<>:xip/c:TOP#456-576$<i>87","<>:xip/c:NP#456-477$<i>73<b>1",">:xip/d:DETERM$<i>72"],["s:altnordische","i:altnordische","_71#460-472","opennlp/p:ADJA","cnx/l:altnordisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#460-477$<i>73","tt/l:altnordisch","tt/p:ADJA","mate/l:altnordisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>72","xip/p:ADJ","xip/l:alt","xip/l:nordisch","xip/l:altnordisch","<>:xip/c:ADJ#460-472$<i>72","<>:xip/c:NPA#460-477$<i>73<b>2","<>:xip/c:AP#460-472$<i>72<b>3",">:xip/d:NMOD$<i>72"],["s:Wort","i:wort","_72#473-477","opennlp/p:NN","cnx/l:wort","cnx/p:N","cnx/syn:@NH","tt/l:Wort","tt/p:NN","mate/l:wort","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>70","<:mate/d:NK$<i>71",">:mate/d:SB$<i>80","<:mate/d:--$<i>73","<:mate/d:OC$<i>75","xip/p:NOUN","xip/l:Wort","<>:xip/c:NOUN#473-477$<i>73","<:xip/d:DETERM$<i>70","<:xip/d:NMOD$<i>71","xip/d:THEMA"],["s:á","i:á","_73#478-479","opennlp/p:VVFIN","cnx/l:á","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#478-479$<i>74","tt/l:á","tt/p:XY","mate/l:á","mate/p:$.",">:mate/d:--$<i>72","xip/p:PUNCT","xip/l:¡","<>:xip/c:PUNCT#478-479$<i>74"],["s:Wasser","i:wasser","_74#482-488","opennlp/p:NN","cnx/l:wasser","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/c:np#482-488$<i>75","tt/l:Wasser","tt/p:NN","mate/l:wasser","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:SB$<i>75","xip/p:NOUN","xip/l:Wasser","<>:xip/c:NOUN#482-488$<i>75","<>:xip/c:MC#480-523$<i>80<b>1","<>:xip/c:NP#482-488$<i>75<b>2","<>:xip/c:NPA#482-488$<i>75<b>3",">:xip/d:SUBJ$<i>75"],["s:ist","i:ist","_75#489-492","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>74",">:mate/d:OC$<i>72","<:mate/d:PD$<i>76","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#489-492$<i>76","<:xip/d:SUBJ$<i>74","xip/d:VMAIN","<:xip/d:PRED$<i>76"],["s:urverwandt","i:urverwandt","_76#493-503","opennlp/p:ADJD","cnx/l:ur","cnx/l:verwandt","cnx/p:A","cnx/syn:@NH","tt/p:ADJD","tt/p:ADV","mate/l:urverwandt","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>75","<:mate/d:MO$<i>77","xip/p:ADJ","xip/l:ur","xip/l:verwandt","xip/l:urverwandt","<>:xip/c:ADJ#493-503$<i>77","<>:xip/c:AP#493-503$<i>77<b>2",">:xip/d:PRED$<i>75"],["s:mit","i:mit","_77#504-507","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>76","<:mate/d:NK$<i>78","xip/p:PREP","xip/l:mit","<>:xip/c:PREP#504-507$<i>78","<>:xip/c:PP#504-523$<i>80<b>2"],["s:lateinisch","i:lateinisch","_78#508-518","opennlp/p:ADJD","cnx/l:lateinisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#508-523$<i>80","tt/l:lateinisch","tt/p:ADJD","mate/l:lateinisch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:NK$<i>77","<:mate/d:UC$<i>79","xip/p:ADJ","xip/l:lateinisch","<>:xip/c:ADJ#508-518$<i>79","<>:xip/c:NP#508-523$<i>80<b>3","<>:xip/c:AP#508-523$<i>80<b>4","<>:xip/c:AP#508-518$<i>79<b>5"],["s:aqua","i:aqua","_79#519-523","opennlp/p:NE","cnx/l:aqua","cnx/p:N","cnx/syn:@NH","tt/p:VVINF","tt/p:NN","tt/p:NE","tt/p:ADJD","tt/p:VVFIN","tt/p:VVPP","mate/l:aqua","mate/p:FM",">:mate/d:UC$<i>78","xip/p:ADJ","xip/l:aqua","<>:xip/c:ADJ#519-523$<i>80"],["s:erhalten","i:erhalten","_80#525-533","opennlp/p:VVFIN","cnx/l:erhalten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:erhalten","tt/p:VVFIN","mate/l:erhalten","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>72","<:mate/d:MO$<i>81","<:mate/d:CJ$<i>84","xip/p:VERB","xip/l:erhalten","<>:xip/c:VERB#525-533$<i>81","<>:xip/c:MC#525-552$<i>84<b>1","xip/d:VMAIN"],["s:im","i:im","_81#534-536","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>80","<:mate/d:NK$<i>82","xip/p:PREP","xip/l:in","<>:xip/c:PREP#534-536$<i>82","<>:xip/c:PP#534-546$<i>83<b>2"],["s:Ortsnamen","i:ortsnamen","_82#537-546","opennlp/p:NN","cnx/l:ort","cnx/l:name","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/c:np#537-552$<i>84","tt/l:Ortsname","tt/p:NN","mate/l:ortsnam","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>81","<:mate/d:NK$<i>83","xip/p:NOUN","xip/l:Ort","xip/l:Name","xip/l:Ortsname","<>:xip/c:NP#537-546$<i>83<b>3","<>:xip/c:NPA#537-546$<i>83<b>4","<>:xip/c:NOUN#537-546$<i>83","<:xip/d:NMOD$<i>83"],["s:Århus","i:århus","_83#547-552","opennlp/p:NE","cnx/l:Århus","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:VVINF","tt/p:NN","tt/p:VVFIN","tt/p:ADJD","tt/p:VVPP","mate/l:århus","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>82","xip/p:NOUN","xip/l:Århus","<>:xip/c:NOUN#547-552$<i>84","<>:xip/c:NP#547-552$<i>84<b>2","<>:xip/c:NPA#547-552$<i>84<b>3",">:xip/d:NMOD$<i>82"],["s:vergleiche","i:vergleiche","_84#554-564","opennlp/p:ADJA","cnx/l:vergleichen","cnx/p:V","cnx/m:SUB","cnx/m:PRES","cnx/syn:@MAIN","tt/l:vergleichen","tt/p:VVFIN","mate/l:vergleichen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:subj",">:mate/d:CJ$<i>80","<:mate/d:MO$<i>85","<:mate/d:OA$<i>86","xip/p:VERB","xip/l:vergleichen","<>:xip/c:MC#554-575$<i>87<b>1","<>:xip/c:VERB#554-564$<i>85","xip/d:VMAIN","<:xip/d:VMOD$<i>85","<:xip/d:SUBJ$<i>86"],["s:deutsch","i:deutsch","_85#565-572","opennlp/p:ADJD","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#565-575$<i>87","tt/l:deutsch","tt/p:ADJD","mate/l:deutsch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>84","xip/p:ADJ","xip/l:deutsch","<>:xip/c:AP#565-572$<i>86<b>2","<>:xip/c:ADJ#565-572$<i>86",">:xip/d:VMOD$<i>84"],["s:Au","i:au","_86#573-575","opennlp/p:NN","cnx/l:Au","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Au","tt/p:NE","mate/l:au","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:OA$<i>84","xip/p:NOUN","xip/l:Au","<>:xip/c:NOUN#573-575$<i>87","<>:xip/c:NP#573-575$<i>87<b>2","<>:xip/c:NPA#573-575$<i>87<b>3","xip/d:PERSON",">:xip/d:SUBJ$<i>84"],["s:den","i:den","_87#577-580","<>:s#577-668$<i>100","<>:p#577-668$<i>100","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>89","xip/p:DET","xip/l:der","<>:xip/c:TOP#577-668$<i>100","<>:xip/c:NP#577-605$<i>90<b>1","<>:xip/c:DET#577-580$<i>88",">:xip/d:DETERM$<i>89"],["s:altnordischen","i:altnordischen","_88#581-594","opennlp/p:ADJA","cnx/l:altnordisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#581-605$<i>90","tt/l:altnordisch","tt/p:ADJA","mate/l:altnordisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>89","xip/p:ADJ","xip/l:alt","xip/l:nordisch","xip/l:altnordisch","<>:xip/c:NPA#581-605$<i>90<b>2","<>:xip/c:AP#581-594$<i>89<b>3","<>:xip/c:ADJ#581-594$<i>89",">:xip/d:NMOD$<i>89"],["s:Buchstaben","i:buchstaben","_89#595-605","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>87","<:mate/d:NK$<i>88","<:mate/d:NK$<i>90","<:mate/d:MNR$<i>99","xip/p:NOUN","xip/l:Buchstabe","<>:xip/c:NOUN#595-605$<i>90","<:xip/d:DETERM$<i>87","<:xip/d:NMOD$<i>88"],["s:á","i:á","_90#606-607","opennlp/p:VVPP","cnx/l:á","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#606-607$<i>91","tt/l:á","tt/p:XY","mate/l:á","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>89","xip/p:PUNCT","xip/l:¡","<>:xip/c:INS#606-668$<i>100<b>1","<>:xip/c:PUNCT#606-607$<i>91"],["s:wie","i:wie","_91#609-612","opennlp/p:PWAV","cnx/l:wie","cnx/p:CS","cnx/syn:@PREMARK","tt/l:wie","tt/p:KOUS","tt/p:KOKOM","mate/l:wie","mate/p:PWAV",">:mate/d:MO$<i>98","xip/p:ADV","xip/l:wie","<>:xip/c:SC#609-667$<i>100<b>2","<>:xip/c:ADV#609-612$<i>92",">:xip/d:CONNECT$<i>98"],["s:er","i:er","_92#613-615","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>99","xip/p:PRON","xip/l:er","<>:xip/c:NP#613-615$<i>93<b>3","<>:xip/c:PRON#613-615$<i>93",">:xip/d:SUBJ$<i>98"],["s:heute","i:heute","_93#616-621","opennlp/p:ADV","cnx/l:heute","cnx/p:ADV","cnx/syn:@ADVL","tt/l:heute","tt/p:ADV","mate/l:heute","mate/p:ADV",">:mate/d:MO$<i>98","xip/p:ADV","xip/l:heute","<>:xip/c:ADV#616-621$<i>94",">:xip/d:VMOD$<i>98"],["s:im","i:im","_94#622-624","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>98","<:mate/d:NK$<i>95","xip/p:PREP","xip/l:in","<>:xip/c:PP#622-635$<i>96<b>3","<>:xip/c:PREP#622-624$<i>95"],["s:Färöischen","i:färöischen","_95#625-635","opennlp/p:NN","cnx/l:färöischen","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#625-635$<i>96","tt/l:Färöische","tt/p:NN","mate/l:färöisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>94","<:mate/d:CD$<i>96","xip/p:NOUN","xip/l:färöisch","<>:xip/c:NP#625-635$<i>96<b>4","<>:xip/c:NPA#625-635$<i>96<b>5","<>:xip/c:NOUN#625-635$<i>96","<:xip/d:COORD$<i>96"],["s:und","i:und","_96#636-639","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>95","<:mate/d:CJ$<i>97","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#636-639$<i>97",">:xip/d:COORD$<i>95",">:xip/d:COORD$<i>97"],["s:Isländischen","i:isländischen","_97#640-652","opennlp/p:NN","cnx/l:Isländisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#640-652$<i>98","tt/l:Isländische","tt/p:NN","mate/l:isländisch","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:CJ$<i>96","xip/p:NOUN","xip/l:isländisch","<>:xip/c:NP#640-652$<i>98<b>3","<>:xip/c:NPA#640-652$<i>98<b>4","<>:xip/c:NOUN#640-652$<i>98","<:xip/d:COORD$<i>96",">:xip/d:VMOD$<i>98"],["s:verwendet","i:verwendet","_98#653-662","opennlp/p:VVPP","cnx/l:verwenden","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:verwenden","tt/p:VVPP","mate/l:verwenden","mate/p:VVPP","<:mate/d:MO$<i>91","<:mate/d:MO$<i>93","<:mate/d:MO$<i>94",">:mate/d:OC$<i>99","xip/p:VERB","xip/l:verwenden","<>:xip/c:VERB#653-662$<i>99","<:xip/d:CONNECT$<i>91","<:xip/d:SUBJ$<i>92","<:xip/d:VMOD$<i>93","<:xip/d:VMOD$<i>97",">:xip/d:AUXIL$<i>99","xip/d:VMAIN"],["s:wird","i:wird","_99#663-667","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>92","<:mate/d:OC$<i>98",">:mate/d:MNR$<i>89","xip/p:VERB","xip/l:werden","<>:xip/c:VERB#663-667$<i>100","<:xip/d:AUXIL$<i>98"],["s:in","i:in","_100#669-671","<>:s#669-755$<i>113","<>:p#669-755$<i>113","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>108","<:mate/d:NK$<i>103","xip/p:PREP","xip/l:in","<>:xip/c:TOP#669-746$<i>111","<>:xip/c:INS#669-722$<i>108<b>1","<>:xip/c:PP#669-693$<i>104<b>2","<>:xip/c:PREP#669-671$<i>101"],["s:der","i:der","_101#672-675","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>103","xip/p:DET","xip/l:der","<>:xip/c:NP#672-693$<i>104<b>3","<>:xip/c:DET#672-675$<i>102",">:xip/d:DETERM$<i>103"],["s:dänischen","i:dänischen","_102#676-685","opennlp/p:ADJA","cnx/l:dänisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#676-693$<i>104","tt/l:dänisch","tt/p:ADJA","mate/l:dänisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>103","xip/p:ADJ","xip/l:dänisch","<>:xip/c:NPA#676-693$<i>104<b>4","<>:xip/c:AP#676-685$<i>103<b>5","<>:xip/c:ADJ#676-685$<i>103",">:xip/d:NMOD$<i>103"],["s:Sprache","i:sprache","_103#686-693","opennlp/p:NN","cnx/l:sprache","cnx/p:N","cnx/syn:@NH","tt/l:Sprache","tt/p:NN","mate/l:sprache","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>101","<:mate/d:NK$<i>102",">:mate/d:NK$<i>100","xip/p:NOUN","xip/l:Sprache","<>:xip/c:NOUN#686-693$<i>104","<:xip/d:DETERM$<i>101","<:xip/d:NMOD$<i>102"],["s:ein","i:ein","_104#694-697","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>105","xip/p:DET","xip/l:ein","<>:xip/c:NP#694-706$<i>106<b>2","<>:xip/c:DET#694-697$<i>105",">:xip/d:DETERM$<i>105"],["s:Ausdruck","i:ausdruck","_105#698-706","opennlp/p:NN","cnx/l:ausdruck","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#698-706$<i>106","tt/l:Ausdruck","tt/p:NN","mate/l:ausdruck","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>104",">:mate/d:SB$<i>108","<:mate/d:AG$<i>107","xip/p:NOUN","xip/l:Ausdruck","<>:xip/c:NPA#698-706$<i>106<b>3","<>:xip/c:NOUN#698-706$<i>106","<:xip/d:DETERM$<i>104","<:xip/d:NMOD$<i>107"],["s:des","i:des","_106#707-710","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>107","xip/p:DET","xip/l:der","<>:xip/c:NP#707-721$<i>108<b>2","<>:xip/c:DET#707-710$<i>107",">:xip/d:DETERM$<i>107"],["s:Erstaunens","i:erstaunens","_107#711-721","opennlp/p:NN","cnx/l:erstaunen","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#711-721$<i>108","tt/l:Erstaunen","tt/p:NN","mate/l:erstaunen","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>106",">:mate/d:AG$<i>105","xip/p:NOUN","xip/l:erstaunen","<>:xip/c:NPA#711-721$<i>108<b>3","<>:xip/c:NOUN#711-721$<i>108","<:xip/d:DETERM$<i>106",">:xip/d:NMOD$<i>105"],["s:vergleiche","i:vergleiche","_108#723-733","opennlp/p:ADJA","cnx/l:vergleichen","cnx/p:V","cnx/m:SUB","cnx/m:PRES","cnx/syn:@MAIN","tt/l:vergleichen","tt/p:VVFIN","mate/l:vergleichen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:subj","<:mate/d:MO$<i>100","<:mate/d:SB$<i>105","<:mate/d:MO$<i>109","<:mate/d:SVP$<i>110","<:mate/d:CD$<i>111","xip/p:VERB","xip/l:vergleichen","<>:xip/c:MC#723-741$<i>110<b>1","<>:xip/c:VERB#723-733$<i>109","xip/d:VMAIN","<:xip/d:VMOD$<i>109"],["s:deutsch","i:deutsch","_109#734-741","opennlp/p:ADJD","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@NH","tt/l:deutsch","tt/p:ADJD","mate/l:deutsch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>108","xip/p:ADJ","xip/l:deutsch","<>:xip/c:AP#734-741$<i>110<b>2","<>:xip/c:ADJ#734-741$<i>110",">:xip/d:VMOD$<i>108"],["s:ach","i:ach","_110#742-745","opennlp/p:ADJD","cnx/l:ach","cnx/p:INTERJ","cnx/syn:@ADVL","tt/l:ach","tt/p:ITJ","mate/l:ach","mate/p:PTKVZ",">:mate/d:SVP$<i>108","xip/p:ITJ","xip/l:ach","<>:xip/c:ITJ#742-745$<i>111"],["s:oder","i:oder","_111#747-751","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>108","<:mate/d:CJ$<i>112","xip/p:CONJ","xip/l:oder","<>:xip/c:TOP#747-755$<i>113","<>:xip/c:CONJ#747-751$<i>112"],["s:oh","i:oh","_112#752-754","opennlp/p:ADJD","cnx/l:oh","cnx/p:INTERJ","cnx/syn:@ADVL","tt/l:oh","tt/p:ITJ","mate/l:oh","mate/p:FM",">:mate/d:CJ$<i>111","xip/p:ITJ","xip/l:oh","<>:xip/c:ITJ#752-754$<i>113"],["s:Å","i:å","_113#756-757","<>:s#756-897$<i>136","<>:p#756-1019$<i>160","opennlp/p:VVFIN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#756-757$<i>114","tt/p:NE","tt/p:NN","tt/p:ADJD","mate/l:å","mate/p:XY","xip/p:ADV","xip/l:å","<>:xip/c:ADV#756-757$<i>114","<>:xip/c:TOP#756-897$<i>136","<>:xip/c:MC#756-851$<i>130<b>1","xip/d:VMAIN",">:xip/d:VMOD$<i>119","<:xip/d:OBJ$<i>117","<:xip/d:OBJ$<i>121"],["s:bzw.","i:bzw.","_114#758-762","opennlp/p:KON","cnx/l:bzw.","cnx/p:CC","cnx/syn:@CC","tt/l:bzw.","tt/p:KOKOM","xip/p:CONJ","xip/l:beziehungsweise","<>:xip/c:CONJ#758-762$<i>115"],["s:vollständig","i:vollständig","_115#763-774","opennlp/p:ADJD","cnx/l:vollständig","cnx/p:ADV","cnx/syn:@PREMOD","tt/l:vollständig","tt/p:ADJD","mate/l:vollständig","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>119","<:mate/d:NK$<i>116","xip/p:ADJ","xip/l:vollständig","<>:xip/c:ADJ#763-774$<i>116","<>:xip/c:NP#763-778$<i>118<b>2","<>:xip/c:NPA#763-778$<i>118<b>3","<>:xip/c:AP#763-776$<i>117<b>4","<>:xip/c:AP#763-774$<i>116<b>5"],["s:Å","i:å","_116#775-776","opennlp/p:ADJD","cnx/l:Å","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/c:np#775-786$<i>119","tt/p:NE","tt/p:NN","tt/p:VVFIN","mate/l:å","mate/p:XY",">:mate/d:NK$<i>115","<:mate/d:AG$<i>118","xip/p:ADJ","xip/l:å","<>:xip/c:ADJ#775-776$<i>117",">:xip/d:NMOD$<i>117"],["s:i","i:i","_117#777-778","opennlp/p:VAFIN","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","tt/l:i","tt/p:NE","mate/l:I","mate/p:CARD",">:mate/d:NK$<i>118","xip/p:SYMBOL","xip/l:i","<>:xip/c:SYMBOL#777-778$<i>118","<>:xip/c:NOUN#777-778$<i>118<b>4","<:xip/d:NMOD$<i>116",">:xip/d:OBJ$<i>113",">:xip/d:SUBJ$<i>119","<:xip/d:NMOD$<i>118"],["s:Lofoten","i:lofoten","_118#779-786","opennlp/p:NN","cnx/l:Lofoten","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:lofote","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>117",">:mate/d:AG$<i>116","xip/p:NOUN","xip/l:Lofoten","<>:xip/c:NOUN#779-786$<i>119","<>:xip/c:NP#779-786$<i>119<b>2","<>:xip/c:NPA#779-786$<i>119<b>3",">:xip/d:NMOD$<i>117"],["s:ist","i:ist","_119#787-790","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>115","<:mate/d:SB$<i>121","<:mate/d:PD$<i>123","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#787-790$<i>120","<:xip/d:VMOD$<i>113","<:xip/d:SUBJ$<i>117","xip/d:VMAIN","<:xip/d:PRED$<i>121"],["s:der","i:der","_120#791-794","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>121","xip/p:DET","xip/l:der","<>:xip/c:DET#791-794$<i>121","<>:xip/c:NP#791-799$<i>122<b>2",">:xip/d:DETERM$<i>121"],["s:Name","i:name","_121#795-799","opennlp/p:NN","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#795-799$<i>122","tt/l:Name","tt/p:NN","mate/l:name","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>120",">:mate/d:SB$<i>119","xip/p:NOUN","xip/l:Name","<>:xip/c:NOUN#795-799$<i>122","<>:xip/c:NPA#795-799$<i>122<b>3","<:xip/d:DETERM$<i>120",">:xip/d:OBJ$<i>113",">:xip/d:PRED$<i>119","<:xip/d:NMOD$<i>123"],["s:eines","i:eines","_122#800-805","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>123","xip/p:DET","xip/l:ein","<>:xip/c:DET#800-805$<i>123","<>:xip/c:NP#800-811$<i>124<b>2",">:xip/d:DETERM$<i>123"],["s:Ortes","i:ortes","_123#806-811","opennlp/p:NN","cnx/l:ort","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#806-839$<i>128","tt/l:Ort","tt/p:NN","mate/l:ort","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>122",">:mate/d:PD$<i>119","<:mate/d:MNR$<i>124","xip/p:NOUN","xip/l:Ort","<>:xip/c:NPA#806-811$<i>124<b>3","<>:xip/c:NOUN#806-811$<i>124","<:xip/d:DETERM$<i>122",">:xip/d:NMOD$<i>121"],["s:auf","i:auf","_124#812-815","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MNR$<i>123","<:mate/d:NK$<i>126","xip/p:PREP","xip/l:auf","<>:xip/c:PREP#812-815$<i>125","<>:xip/c:PP#812-831$<i>127<b>2"],["s:der","i:der","_125#816-819","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>126","xip/p:DET","xip/l:der","<>:xip/c:DET#816-819$<i>126","<>:xip/c:NP#816-831$<i>127<b>3",">:xip/d:DETERM$<i>126"],["s:Inselgruppe","i:inselgruppe","_126#820-831","opennlp/p:NN","cnx/l:insel","cnx/l:gruppe","cnx/p:N","cnx/syn:@PREMOD","tt/l:Inselgruppe","tt/p:NN","mate/l:inselgruppe","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>125",">:mate/d:NK$<i>124","<:mate/d:NK$<i>127","<:mate/d:MNR$<i>128","<:mate/d:PAR$<i>132","xip/p:NOUN","xip/l:Insel","xip/l:Gruppe","xip/l:Inselgruppe","<>:xip/c:NOUN#820-831$<i>127","<>:xip/c:NPA#820-831$<i>127<b>4","<:xip/d:DETERM$<i>125","<:xip/d:NMOD$<i>127"],["s:Lofoten","i:lofoten","_127#832-839","opennlp/p:NN","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Lofoten","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:lofote","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>126","xip/p:NOUN","xip/l:Lofoten","<>:xip/c:NOUN#832-839$<i>128","<>:xip/c:NP#832-839$<i>128<b>2","<>:xip/c:NPA#832-839$<i>128<b>3",">:xip/d:NMOD$<i>126"],["s:in","i:in","_128#840-842","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MNR$<i>126","<:mate/d:NK$<i>129","xip/p:PREP","xip/l:in","<>:xip/c:PREP#840-842$<i>129","<>:xip/c:PP#840-851$<i>130<b>2"],["s:Norwegen","i:norwegen","_129#843-851","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Norwegen","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#843-851$<i>130","tt/l:Norwegen","tt/p:NE","mate/l:norwegen","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>128","xip/p:NOUN","xip/l:Norwegen","<>:xip/c:NOUN#843-851$<i>130","<>:xip/c:NP#843-851$<i>130<b>3","<>:xip/c:NPA#843-851$<i>130<b>4","xip/d:LOC"],["s:unter","i:unter","_130#853-858","opennlp/p:APPR","cnx/l:unter","cnx/p:ADV","cnx/syn:@ADVL","tt/l:unter","tt/p:APPR","mate/l:unter","mate/p:APPR",">:mate/d:MO$<i>132","<:mate/d:NK$<i>131","xip/p:PREP","xip/l:unter","<>:xip/c:PREP#853-858$<i>131","<>:xip/c:PP#853-875$<i>133"],["s:anderem","i:anderem","_131#859-866","opennlp/p:PIS","cnx/l:andere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:andere","tt/p:PIS","mate/l:anderer","mate/p:PIS","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>130","xip/p:ADJ","xip/l:andere","<>:xip/c:NP#859-875$<i>133<b>1","<>:xip/c:NPA#859-875$<i>133<b>2","<>:xip/c:AP#859-866$<i>132<b>3","<>:xip/c:ADJ#859-866$<i>132",">:xip/d:NMOD$<i>132"],["s:Endpunkt","i:endpunkt","_132#867-875","opennlp/p:NN","cnx/l:ende","cnx/l:punkt","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#867-875$<i>133","tt/l:Endpunkt","tt/p:NN","mate/l:endpunkt","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:MO$<i>130",">:mate/d:PAR$<i>126","xip/p:NOUN","xip/l:enden","xip/l:Punkt","xip/l:Endenpunkt","<>:xip/c:NOUN#867-875$<i>133","<:xip/d:NMOD$<i>131","<:xip/d:NMOD$<i>134"],["s:der","i:der","_133#876-879","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","xip/p:DET","xip/l:der","<>:xip/c:DET#876-879$<i>134","<>:xip/c:NP#876-892$<i>135",">:xip/d:DETERM$<i>134"],["s:Europastraße","i:europastraße","_134#880-892","opennlp/p:NN","cnx/l:europastraße","cnx/p:N","cnx/syn:@NH","tt/l:Europastraße","tt/p:NN","mate/l:europastraße","mate/p:NE","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Europa","xip/l:Straße","xip/l:Europastraße","<>:xip/c:NOUN#880-892$<i>135","<>:xip/c:NPA#880-892$<i>135<b>1","<:xip/d:DETERM$<i>133",">:xip/d:NMOD$<i>132"],["s:E10.","i:e10.","_135#893-897","opennlp/p:NE"],["s:Außer","i:außer","_136#898-903","<>:s#898-967$<i>150","opennlp/p:NN","cnx/l:ausser","cnx/p:CS","cnx/syn:@PREMARK","tt/l:außer","tt/p:APPR","mate/l:außer","mate/p:APPR",">:mate/d:MO$<i>140","<:mate/d:NK$<i>139","xip/p:PREP","xip/l:außer","<>:xip/c:PREP#898-903$<i>137","<>:xip/c:TOP#898-967$<i>150"],["s:Å","i:å","_137#904-905","opennlp/p:VVFIN","cnx/l:Å","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/c:np#904-915$<i>140","tt/p:NE","mate/l:å","mate/p:XY","mate/m:number:pl","mate/m:person:2","mate/m:tense:pres","mate/m:mood:ind",">:mate/d:PNC$<i>138","xip/p:ADV","xip/l:å","<>:xip/c:ADV#904-905$<i>138","<>:xip/c:MC#904-952$<i>147<b>1",">:xip/d:VMOD$<i>140"],["s:i","i:i","_138#906-907","opennlp/p:APPR","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","tt/l:i","tt/p:NE","mate/l:I","mate/p:XY","<:mate/d:PNC$<i>137",">:mate/d:NK$<i>139","xip/p:SYMBOL","xip/l:i","<>:xip/c:SYMBOL#906-907$<i>139","<>:xip/c:NP#906-907$<i>139<b>2","<>:xip/c:NPA#906-907$<i>139<b>3","<>:xip/c:NOUN#906-907$<i>139<b>4",">:xip/d:OBJ$<i>140",">:xip/d:SUBJ$<i>140","<:xip/d:NMOD$<i>139"],["s:Lofoten","i:lofoten","_139#908-915","opennlp/p:NN","cnx/l:Lofoten","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:lofote","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>138",">:mate/d:NK$<i>136","xip/p:NOUN","xip/l:Lofoten","<>:xip/c:NOUN#908-915$<i>140","<>:xip/c:NP#908-915$<i>140<b>2","<>:xip/c:NPA#908-915$<i>140<b>3",">:xip/d:NMOD$<i>138"],["s:gibt","i:gibt","_140#916-920","opennlp/p:VVFIN","cnx/l:geben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:geben","tt/p:VVFIN","mate/l:geben","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>136","<:mate/d:EP$<i>141","<:mate/d:MO$<i>142","<:mate/d:MO$<i>144","<:mate/d:OA$<i>146","xip/p:VERB","xip/l:geben","<>:xip/c:VERB#916-920$<i>141","<:xip/d:VMOD$<i>137","<:xip/d:OBJ$<i>138","<:xip/d:SUBJ$<i>138","xip/d:VMAIN","<:xip/d:SUBJ$<i>141","<:xip/d:VMOD$<i>144","<:xip/d:OBJ$<i>146"],["s:es","i:es","_141#921-923","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:EP$<i>140","xip/p:PRON","xip/l:es","<>:xip/c:PRON#921-923$<i>142","<>:xip/c:NP#921-923$<i>142<b>2",">:xip/d:SUBJ$<i>140"],["s:in","i:in","_142#924-926","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>140","<:mate/d:NK$<i>143","xip/p:PREP","xip/l:in","<>:xip/c:PREP#924-926$<i>143","<>:xip/c:PP#924-935$<i>144<b>2"],["s:Norwegen","i:norwegen","_143#927-935","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Norwegen","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#927-935$<i>144","tt/l:Norwegen","tt/p:NE","mate/l:norwegen","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>142","xip/p:NOUN","xip/l:Norwegen","<>:xip/c:NOUN#927-935$<i>144","<>:xip/c:NP#927-935$<i>144<b>3","<>:xip/c:NPA#927-935$<i>144<b>4","xip/d:LOC"],["s:noch","i:noch","_144#936-940","opennlp/p:ADV","cnx/l:noch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:noch","tt/p:ADV","tt/p:KON","mate/l:noch","mate/p:ADV",">:mate/d:MO$<i>140","xip/p:ADV","xip/l:noch","<>:xip/c:ADV#936-940$<i>145",">:xip/d:VMOD$<i>140"],["s:andere","i:andere","_145#941-947","opennlp/p:ADJA","cnx/l:andere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:ander","tt/p:ADJA","mate/l:anderer","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:degree:pos",">:mate/d:NK$<i>146","xip/p:ADJ","xip/l:andere","<>:xip/c:ADJ#941-947$<i>146","<>:xip/c:NP#941-952$<i>147<b>2","<>:xip/c:NPA#941-952$<i>147<b>3","<>:xip/c:AP#941-947$<i>146<b>4",">:xip/d:NMOD$<i>146"],["s:Orte","i:orte","_146#948-952","opennlp/p:NN","cnx/l:ort","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/c:np#948-952$<i>147","tt/l:Ort","tt/p:NN","mate/l:ort","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","<:mate/d:NK$<i>145",">:mate/d:OA$<i>140","<:mate/d:RC$<i>149","xip/p:NOUN","xip/l:Ort","<>:xip/c:NOUN#948-952$<i>147","<:xip/d:NMOD$<i>145",">:xip/d:OBJ$<i>140"],["s:die","i:die","_147#954-957","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*",">:mate/d:SB$<i>149","xip/p:DET","xip/l:die","<>:xip/c:NP#954-966$<i>150","<>:xip/c:DET#954-957$<i>148",">:xip/d:DETERM$<i>149"],["s:Å","i:å","_148#958-959","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#958-959$<i>149","tt/p:NN","tt/p:NE","mate/l:å","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*",">:mate/d:MO$<i>149","xip/p:ADV","xip/l:å","<>:xip/c:ADV#958-959$<i>149","<>:xip/c:AP#958-966$<i>150<b>1",">:xip/d:ADJMOD$<i>149"],["s:heißen","i:heißen","_149#960-966","opennlp/p:VVFIN","cnx/l:heissen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:heißen","tt/p:VVINF","tt/p:VVFIN","mate/l:heißen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>147","<:mate/d:MO$<i>148",">:mate/d:RC$<i>146","xip/p:ADJ","xip/l:heiß","<>:xip/c:ADJ#960-966$<i>150","<:xip/d:DETERM$<i>147","<:xip/d:ADJMOD$<i>148"],["s:Auch","i:auch","_150#968-972","<>:s#968-1019$<i>160","opennlp/p:ADV","cnx/l:auch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:auch","tt/p:ADV","mate/l:auch","mate/p:ADV",">:mate/d:MO$<i>151","xip/p:ADV","xip/l:auch","<>:xip/c:TOP#968-1129$<i>176","<>:xip/c:MC#968-1005$<i>157<b>1","<>:xip/c:ADV#968-972$<i>151",">:xip/d:VMOD$<i>153"],["s:in","i:in","_151#973-975","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:MO$<i>150",">:mate/d:MO$<i>153","<:mate/d:NK$<i>152","xip/p:PREP","xip/l:in","<>:xip/c:PP#973-984$<i>153<b>2","<>:xip/c:PREP#973-975$<i>152"],["s:Schweden","i:schweden","_152#976-984","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Schweden","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#976-984$<i>153","tt/l:Schweden","tt/p:NE","tt/l:Schwede","tt/p:NN","mate/l:schweden","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>151","xip/p:NOUN","xip/l:Schweden","<>:xip/c:NP#976-984$<i>153<b>3","<>:xip/c:NPA#976-984$<i>153<b>4","<>:xip/c:NOUN#976-984$<i>153","xip/d:LOC"],["s:gibt","i:gibt","_153#985-989","opennlp/p:VVFIN","cnx/l:geben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:geben","tt/p:VVFIN","mate/l:geben","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>151","<:mate/d:EP$<i>154","<:mate/d:OA$<i>156","xip/p:VERB","xip/l:geben","<>:xip/c:VERB#985-989$<i>154","<:xip/d:VMOD$<i>150","xip/d:VMAIN","<:xip/d:SUBJ$<i>154","<:xip/d:OBJ$<i>156"],["s:es","i:es","_154#990-992","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:EP$<i>153","xip/p:PRON","xip/l:es","<>:xip/c:NP#990-992$<i>155<b>2","<>:xip/c:PRON#990-992$<i>155",">:xip/d:SUBJ$<i>153"],["s:mehrere","i:mehrere","_155#993-1000","opennlp/p:PIAT","cnx/l:mehrere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:mehrere","tt/p:PIAT","mate/l:mehrere","mate/p:PIAT","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>156","xip/p:ADJ","xip/l:mehrere","<>:xip/c:NP#993-1005$<i>157<b>2","<>:xip/c:NPA#993-1005$<i>157<b>3","<>:xip/c:AP#993-1000$<i>156<b>4","<>:xip/c:ADJ#993-1000$<i>156",">:xip/d:NMOD$<i>156"],["s:Orte","i:orte","_156#1001-1005","opennlp/p:NN","cnx/l:ort","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/c:np#1001-1005$<i>157","tt/l:Ort","tt/p:NN","mate/l:ort","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>155",">:mate/d:OA$<i>153","<:mate/d:RC$<i>159","xip/p:NOUN","xip/l:Ort","<>:xip/c:NOUN#1001-1005$<i>157","<:xip/d:NMOD$<i>155",">:xip/d:OBJ$<i>153"],["s:die","i:die","_157#1007-1010","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:SB$<i>159","xip/p:PRON","xip/l:die","<>:xip/c:PRON#1007-1010$<i>158","<>:xip/c:MC#1007-1025$<i>162<b>1","<>:xip/c:NP#1007-1010$<i>158<b>2",">:xip/d:SUBJ$<i>159"],["s:Å","i:å","_158#1011-1012","opennlp/p:ADJA","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1011-1012$<i>159","tt/p:NN","tt/p:NE","mate/l:å","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:MO$<i>159","xip/p:ADV","xip/l:å","<>:xip/c:ADV#1011-1012$<i>159",">:xip/d:VMOD$<i>159"],["s:heißen","i:heißen","_159#1013-1019","opennlp/p:ADJA","cnx/l:heissen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:heißen","tt/p:VVFIN","mate/l:heißen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>157","<:mate/d:MO$<i>158",">:mate/d:RC$<i>156","xip/p:VERB","xip/l:heißen","<>:xip/c:VERB#1013-1019$<i>160","<:xip/d:SUBJ$<i>157","<:xip/d:VMOD$<i>158","xip/d:VMAIN","<:xip/d:OBJ$<i>160","<:xip/d:VMOD$<i>161"],["s:Das","i:das","_160#1020-1023","<>:s#1020-1129$<i>176","<>:p#1020-1129$<i>176","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","tt/p:PDS","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>161","xip/p:PRON","xip/l:das","<>:xip/c:NP#1020-1023$<i>161<b>2","<>:xip/c:PRON#1020-1023$<i>161",">:xip/d:OBJ$<i>159"],["s:Å","i:å","_161#1024-1025","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1024-1025$<i>162","tt/p:NN","tt/p:NE","mate/l:å","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>160",">:mate/d:SB$<i>162","xip/p:ADV","xip/l:å","<>:xip/c:ADV#1024-1025$<i>162",">:xip/d:VMOD$<i>159"],["s:besteht","i:besteht","_162#1026-1033","opennlp/p:VVFIN","cnx/l:bestehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bestehen","tt/p:VVFIN","mate/l:bestehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>161","<:mate/d:OP$<i>163","xip/p:VERB","xip/l:bestehen","<>:xip/c:MC#1026-1129$<i>176<b>1","<>:xip/c:VERB#1026-1033$<i>163","xip/d:VMAIN","<:xip/d:OBJ$<i>165","<:xip/d:SUBJ$<i>166","<:xip/d:OBJ$<i>171"],["s:aus","i:aus","_163#1034-1037","opennlp/p:APPR","cnx/l:aus","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:OP$<i>162","<:mate/d:NK$<i>165","xip/p:PREP","xip/l:aus","<>:xip/c:PP#1034-1052$<i>166<b>2","<>:xip/c:PREP#1034-1037$<i>164","<:xip/d:PLINK$<i>165"],["s:dem","i:dem","_164#1038-1041","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>165","xip/p:DET","xip/l:der","<>:xip/c:DET#1038-1041$<i>165","<>:xip/c:NP#1038-1052$<i>166<b>3",">:xip/d:DETERM$<i>165"],["s:Buchstaben","i:buchstaben","_165#1042-1052","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1042-1052$<i>166","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>164",">:mate/d:NK$<i>163","<:mate/d:NK$<i>166","xip/p:NOUN","xip/l:Buchstabe","<>:xip/c:NOUN#1042-1052$<i>166","<>:xip/c:NPA#1042-1052$<i>166<b>4","<:xip/d:DETERM$<i>164",">:xip/d:OBJ$<i>162",">:xip/d:PLINK$<i>163"],["s:A","i:a","_166#1053-1054","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1053-1054$<i>167","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>165","<:mate/d:CD$<i>167","xip/p:SYMBOL","xip/l:A","<>:xip/c:SYMBOL#1053-1054$<i>167","<>:xip/c:NP#1053-1054$<i>167<b>2","<>:xip/c:NPA#1053-1054$<i>167<b>3","<>:xip/c:NOUN#1053-1054$<i>167<b>4",">:xip/d:SUBJ$<i>162","<:xip/d:COORD$<i>167"],["s:und","i:und","_167#1055-1058","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>166","<:mate/d:CJ$<i>171","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#1055-1058$<i>168",">:xip/d:COORD$<i>166",">:xip/d:COORD$<i>171"],["s:einem","i:einem","_168#1059-1064","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>171","xip/p:DET","xip/l:ein","<>:xip/c:NP#1059-1092$<i>172<b>2","<>:xip/c:DET#1059-1064$<i>169",">:xip/d:DETERM$<i>171"],["s:kleinen","i:kleinen","_169#1065-1072","opennlp/p:ADJA","cnx/l:klein","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#1065-1092$<i>172","tt/l:klein","tt/p:ADJA","mate/l:klein","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:MO$<i>170","xip/p:ADJ","xip/l:klein","<>:xip/c:ADJ#1065-1072$<i>170","<>:xip/c:NPA#1065-1092$<i>172<b>3","<>:xip/c:AP#1065-1072$<i>170<b>4",">:xip/d:NMOD$<i>171"],["s:übergeschriebenen","i:übergeschriebenen","_170#1073-1090","opennlp/p:NN","cnx/l:über","cnx/l:geschrieben","cnx/p:A","cnx/syn:@PREMOD","tt/p:ADJA","mate/l:übergeschrieben","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>169",">:mate/d:NK$<i>171","xip/p:ADJ","xip/l:über","xip/l:schreiben","xip/l:überschreiben","<>:xip/c:AP#1073-1090$<i>171<b>4","<>:xip/c:ADJ#1073-1090$<i>171",">:xip/d:NMOD$<i>171"],["s:O","i:o","_171#1091-1092","opennlp/p:NE","cnx/l:O","cnx/p:N","cnx/syn:@NH","tt/l:O","tt/p:NN","mate/l:O","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>168","<:mate/d:NK$<i>170",">:mate/d:CJ$<i>167","<:mate/d:RC$<i>175","xip/p:SYMBOL","xip/l:O","<>:xip/c:NOUN#1091-1092$<i>172<b>4","<>:xip/c:SYMBOL#1091-1092$<i>172","<:xip/d:COORD$<i>167","<:xip/d:DETERM$<i>168","<:xip/d:NMOD$<i>169","<:xip/d:NMOD$<i>170",">:xip/d:OBJ$<i>162"],["s:welches","i:welches","_172#1094-1101","opennlp/p:PRELS","cnx/l:welcher","cnx/p:PRON","cnx/syn:@NH","tt/l:welche","tt/p:PWAT","mate/l:welcher","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:SB$<i>175","xip/p:PRON","xip/l:welch","<>:xip/c:PRON#1094-1101$<i>173","<>:xip/c:SC#1094-1128$<i>176","<>:xip/c:NP#1094-1101$<i>173<b>1",">:xip/d:SUBJ$<i>175"],["s:die","i:die","_173#1102-1105","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>174","xip/p:DET","xip/l:die","<>:xip/c:DET#1102-1105$<i>174","<>:xip/c:NP#1102-1119$<i>175<b>1",">:xip/d:DETERM$<i>174"],["s:Vokalqualität","i:vokalqualität","_174#1106-1119","opennlp/p:NN","cnx/l:vokal","cnx/l:qualität","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1106-1119$<i>175","tt/p:NN","mate/l:vokalqualität","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>173",">:mate/d:OA$<i>175","xip/p:NOUN","xip/l:Vokal","xip/l:Qualität","xip/l:Vokalqualität","<>:xip/c:NPA#1106-1119$<i>175<b>2","<>:xip/c:NOUN#1106-1119$<i>175","<:xip/d:DETERM$<i>173",">:xip/d:OBJ$<i>175"],["s:andeutet","i:andeutet","_175#1120-1128","opennlp/p:VVPP","cnx/l:andeuten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:andeuten","tt/p:VVFIN","mate/l:andeuten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>172","<:mate/d:OA$<i>174",">:mate/d:RC$<i>171","xip/p:VERB","xip/l:andeuten","<>:xip/c:VERB#1120-1128$<i>176","<:xip/d:SUBJ$<i>172","<:xip/d:OBJ$<i>174","xip/d:VMAIN"],["s:Im","i:im","_176#1130-1132","<>:s#1130-1260$<i>199","<>:p#1130-1260$<i>199","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>178","<:mate/d:NK$<i>177","xip/p:PREP","xip/l:in","<>:xip/c:PREP#1130-1132$<i>177","<>:xip/c:TOP#1130-1260$<i>199","<>:xip/c:MC#1130-1202$<i>190<b>1","<>:xip/c:PP#1130-1145$<i>178<b>2"],["s:Schwedischen","i:schwedischen","_177#1133-1145","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Schwedisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1133-1145$<i>178","tt/l:Schwedische","tt/p:NN","mate/l:schwedisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>176","xip/p:NOUN","xip/l:schwedisch","<>:xip/c:NOUN#1133-1145$<i>178","<>:xip/c:NP#1133-1145$<i>178<b>3","<>:xip/c:NPA#1133-1145$<i>178<b>4"],["s:steht","i:steht","_178#1146-1151","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>176","<:mate/d:SB$<i>180","<:mate/d:MO$<i>181","<:mate/d:PAR$<i>192","xip/p:VERB","xip/l:stehen","<>:xip/c:VERB#1146-1151$<i>179","xip/d:VMAIN","<:xip/d:SUBJ$<i>180"],["s:der","i:der","_179#1152-1155","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>180","xip/p:DET","xip/l:der","<>:xip/c:NP#1152-1165$<i>181<b>2","<>:xip/c:DET#1152-1155$<i>180",">:xip/d:DETERM$<i>180"],["s:Buchstabe","i:buchstabe","_180#1156-1165","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1156-1165$<i>181","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>179",">:mate/d:SB$<i>178","xip/p:NOUN","xip/l:Buchstabe","<>:xip/c:NOUN#1156-1165$<i>181","<>:xip/c:NPA#1156-1165$<i>181<b>3","<:xip/d:DETERM$<i>179",">:xip/d:SUBJ$<i>178"],["s:nach","i:nach","_181#1166-1170","opennlp/p:APPR","cnx/l:nach","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:nach","tt/p:APPR","mate/l:nach","mate/p:APPR",">:mate/d:MO$<i>178","<:mate/d:NK$<i>183","<:mate/d:CD$<i>184","xip/p:PREP","xip/l:nach","<>:xip/c:PREP#1166-1170$<i>182","<>:xip/c:PP#1166-1176$<i>184<b>2"],["s:dem","i:dem","_182#1171-1174","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>183","xip/p:DET","xip/l:der","<>:xip/c:NP#1171-1176$<i>184<b>3","<>:xip/c:DET#1171-1174$<i>183",">:xip/d:DETERM$<i>183"],["s:z","i:z","_183#1175-1176","opennlp/p:ADV","cnx/l:z","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1175-1176$<i>184","tt/l:z","tt/p:NE","mate/l:z","mate/p:TRUNC","<:mate/d:NK$<i>182",">:mate/d:NK$<i>181","xip/p:SYMBOL","xip/l:z","<>:xip/c:SYMBOL#1175-1176$<i>184","<>:xip/c:NPA#1175-1176$<i>184<b>4","<>:xip/c:NOUN#1175-1176$<i>184<b>5","<:xip/d:DETERM$<i>182"],["s:und","i:und","_184#1177-1180","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>181","<:mate/d:CJ$<i>185","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#1177-1180$<i>185"],["s:vor","i:vor","_185#1181-1184","opennlp/p:APPR","cnx/l:vor","cnx/p:ADV","cnx/syn:@ADVL","tt/l:vor","tt/p:APPR","mate/l:vor","mate/p:APPR",">:mate/d:CJ$<i>184","<:mate/d:NK$<i>187","xip/p:PREP","xip/l:vor","<>:xip/c:PREP#1181-1184$<i>186","<>:xip/c:PP#1181-1190$<i>188<b>2"],["s:dem","i:dem","_186#1185-1188","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>187","xip/p:DET","xip/l:der","<>:xip/c:DET#1185-1188$<i>187","<>:xip/c:NP#1185-1190$<i>188<b>3",">:xip/d:DETERM$<i>187"],["s:ä","i:ä","_187#1189-1190","opennlp/p:NN","cnx/l:ä","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1189-1190$<i>188","tt/l:ä","tt/p:XY","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>186",">:mate/d:NK$<i>185","<:mate/d:MNR$<i>188","xip/p:SYMBOL","xip/l:ä","<>:xip/c:SYMBOL#1189-1190$<i>188","<>:xip/c:NPA#1189-1190$<i>188<b>4","<>:xip/c:NOUN#1189-1190$<i>188<b>5","<:xip/d:DETERM$<i>186"],["s:im","i:im","_188#1191-1193","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MNR$<i>187","<:mate/d:NK$<i>189","xip/p:PREP","xip/l:in","<>:xip/c:PREP#1191-1193$<i>189","<>:xip/c:PP#1191-1202$<i>190<b>2"],["s:Alphabet","i:alphabet","_189#1194-1202","opennlp/p:NN","cnx/l:alphabet","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1194-1202$<i>190","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>188","xip/p:NOUN","xip/l:Alphabet","<>:xip/c:NOUN#1194-1202$<i>190","<>:xip/c:NP#1194-1202$<i>190<b>3","<>:xip/c:NPA#1194-1202$<i>190<b>4"],["s:im","i:im","_190#1204-1206","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>192","<:mate/d:NK$<i>191","xip/p:PREP","xip/l:in","<>:xip/c:PREP#1204-1206$<i>191","<>:xip/c:MC#1204-1259$<i>199<b>1","<>:xip/c:PP#1204-1216$<i>192<b>2"],["s:Dänischen","i:dänischen","_191#1207-1216","opennlp/p:NN","cnx/l:Dänisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1207-1216$<i>192","tt/l:Dänische","tt/p:NN","mate/l:dänisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>190","xip/p:NOUN","xip/l:dänisch","<>:xip/c:NOUN#1207-1216$<i>192","<>:xip/c:NP#1207-1216$<i>192<b>3","<>:xip/c:NPA#1207-1216$<i>192<b>4"],["s:ist","i:ist","_192#1217-1220","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>190",">:mate/d:PAR$<i>178","<:mate/d:SB$<i>193","<:mate/d:PD$<i>196","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#1217-1220$<i>193","xip/d:VMAIN","<:xip/d:PRED$<i>193","<:xip/d:SUBJ$<i>196"],["s:es","i:es","_193#1221-1223","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:SB$<i>192","xip/p:PRON","xip/l:es","<>:xip/c:PRON#1221-1223$<i>194","<>:xip/c:NP#1221-1223$<i>194<b>2",">:xip/d:PRED$<i>192"],["s:der","i:der","_194#1224-1227","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>196","xip/p:DET","xip/l:der","<>:xip/c:DET#1224-1227$<i>195","<>:xip/c:NP#1224-1244$<i>197<b>2",">:xip/d:DETERM$<i>196"],["s:letzte","i:letzte","_195#1228-1234","opennlp/p:ADJA","cnx/l:letzt","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#1228-1244$<i>197","tt/l:letzt","tt/p:ADJA","mate/l:letzter","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>196","xip/p:ADJ","xip/l:letzt","<>:xip/c:ADJ#1228-1234$<i>196","<>:xip/c:NPA#1228-1244$<i>197<b>3","<>:xip/c:AP#1228-1234$<i>196<b>4",">:xip/d:NMOD$<i>196"],["s:Buchstabe","i:buchstabe","_196#1235-1244","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>194","<:mate/d:NK$<i>195",">:mate/d:PD$<i>192","<:mate/d:AG$<i>198","xip/p:NOUN","xip/l:Buchstabe","<>:xip/c:NOUN#1235-1244$<i>197","<:xip/d:DETERM$<i>194","<:xip/d:NMOD$<i>195",">:xip/d:SUBJ$<i>192","<:xip/d:NMOD$<i>198"],["s:des","i:des","_197#1245-1248","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>198","xip/p:DET","xip/l:der","<>:xip/c:DET#1245-1248$<i>198","<>:xip/c:NP#1245-1259$<i>199<b>2",">:xip/d:DETERM$<i>198"],["s:Alphabetes","i:alphabetes","_198#1249-1259","opennlp/p:NN","cnx/l:alphabetes","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1249-1259$<i>199","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>197",">:mate/d:AG$<i>196","xip/p:NOUN","xip/l:Alphabet","<>:xip/c:NOUN#1249-1259$<i>199","<>:xip/c:NPA#1249-1259$<i>199<b>3","<:xip/d:DETERM$<i>197",">:xip/d:NMOD$<i>196"],["s:In","i:in","_199#1261-1263","<>:s#1261-1399$<i>222","<>:p#1261-1552$<i>245","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>208","<:mate/d:NK$<i>200","xip/p:PREP","xip/l:in","<>:xip/c:TOP#1261-1399$<i>222","<>:xip/c:MC#1261-1296$<i>206<b>1","<>:xip/c:PP#1261-1272$<i>201<b>2","<>:xip/c:PREP#1261-1263$<i>200"],["s:Dänemark","i:dänemark","_200#1264-1272","opennlp/p:NE","cnx/l:Dänemark","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#1264-1272$<i>201","tt/l:Dänemark","tt/p:NE","mate/l:dänemark","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>199","xip/p:NOUN","xip/l:Dänemark","<>:xip/c:NP#1264-1272$<i>201<b>3","<>:xip/c:NPA#1264-1272$<i>201<b>4","<>:xip/c:NOUN#1264-1272$<i>201","xip/d:LOC"],["s:ist","i:ist","_201#1273-1276","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>204","<:mate/d:OC$<i>209","<:mate/d:CJ$<i>214","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#1273-1276$<i>202","xip/d:VMAIN"],["s:der","i:der","_202#1277-1280","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>204","xip/p:DET","xip/l:der","<>:xip/c:NP#1277-1296$<i>206<b>2","<>:xip/c:DET#1277-1280$<i>203"],["s:alte","i:alte","_203#1281-1285","opennlp/p:ADJA","cnx/l:alt","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#1281-1296$<i>206","tt/l:alt","tt/p:ADJA","mate/l:alt","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>204","xip/p:ADJ","xip/l:alt","<>:xip/c:NPA#1281-1296$<i>206<b>3","<>:xip/c:AP#1281-1285$<i>204<b>4","<>:xip/c:ADJ#1281-1285$<i>204"],["s:Digraph","i:digraph","_204#1286-1293","opennlp/p:NN","cnx/l:digraph","cnx/p:N","cnx/syn:@PREMOD","tt/l:Digraph","tt/p:NN","mate/l:digraph","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>202","<:mate/d:NK$<i>203",">:mate/d:SB$<i>201","<:mate/d:NK$<i>205","xip/p:NOUN","xip/l:Digraph","<>:xip/c:NOUN#1286-1293$<i>205","<>:xip/c:NOUN#1286-1296$<i>206<b>4"],["s:Aa","i:aa","_205#1294-1296","opennlp/p:NE","cnx/l:aa","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:aa","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>204","xip/p:NOUN","xip/l:Aa","<>:xip/c:NOUN#1294-1296$<i>206"],["s:durch","i:durch","_206#1297-1302","opennlp/p:APPR","cnx/l:durch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR",">:mate/d:MO$<i>208","<:mate/d:NK$<i>207","xip/p:PREP","xip/l:durch","<>:xip/c:PREP#1297-1302$<i>207"],["s:Å","i:å","_207#1303-1304","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1303-1304$<i>208","tt/p:NN","tt/p:NE","mate/l:å","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>206","xip/p:ADV","xip/l:å","<>:xip/c:ADV#1303-1304$<i>208"],["s:ersetzt","i:ersetzt","_208#1305-1312","opennlp/p:VVPP","cnx/l:ersetzen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:ersetzen","tt/p:VVPP","mate/l:ersetzen","mate/p:VVPP","<:mate/d:MO$<i>199","<:mate/d:MO$<i>206",">:mate/d:OC$<i>209","xip/p:VERB","xip/l:ersetzen","<>:xip/c:VERB#1305-1312$<i>209"],["s:worden","i:worden","_209#1313-1319","opennlp/p:VAPP","cnx/l:werden","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@AUX","tt/l:werden","tt/p:VAPP","mate/l:werden","mate/p:VAPP","<:mate/d:OC$<i>208",">:mate/d:OC$<i>201","xip/p:VERB","xip/l:werden","<>:xip/c:VERB#1313-1319$<i>210"],["s:in","i:in","_210#1321-1323","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>214","<:mate/d:NK$<i>211","xip/p:PREP","xip/l:in","<>:xip/c:MC#1321-1398$<i>222<b>1","<>:xip/c:PP#1321-1334$<i>212<b>2","<>:xip/c:PREP#1321-1323$<i>211"],["s:Eigennamen","i:eigennamen","_211#1324-1334","opennlp/p:NN","cnx/l:eigen","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1324-1334$<i>212","tt/l:Eigenname","tt/p:NN","mate/l:eigenname","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>210","<:mate/d:CD$<i>212","xip/p:NOUN","xip/l:eignen","xip/l:Name","xip/l:Eignenname","<>:xip/c:NP#1324-1334$<i>212<b>3","<>:xip/c:NPA#1324-1334$<i>212<b>4","<>:xip/c:NOUN#1324-1334$<i>212","<:xip/d:COORD$<i>212"],["s:und","i:und","_212#1335-1338","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>211","<:mate/d:CJ$<i>213","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#1335-1338$<i>213",">:xip/d:COORD$<i>211",">:xip/d:COORD$<i>213"],["s:Ortsnamen","i:ortsnamen","_213#1339-1348","opennlp/p:NN","cnx/l:ort","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1339-1348$<i>214","tt/l:Ortsname","tt/p:NN","mate/l:ortsname","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:CJ$<i>212","xip/p:NOUN","xip/l:Ort","xip/l:Name","xip/l:Ortsname","<>:xip/c:NP#1339-1348$<i>214<b>2","<>:xip/c:NPA#1339-1348$<i>214<b>3","<>:xip/c:NOUN#1339-1348$<i>214","<:xip/d:COORD$<i>212",">:xip/d:VMOD$<i>214"],["s:findet","i:findet","_214#1349-1355","opennlp/p:VVFIN","cnx/l:finden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:finden","tt/p:VVFIN","mate/l:finden","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>210",">:mate/d:CJ$<i>201","<:mate/d:OA$<i>215","<:mate/d:MO$<i>216","<:mate/d:MO$<i>218","<:mate/d:OG$<i>221","xip/p:VERB","xip/l:finden","<>:xip/c:VERB#1349-1355$<i>215","<:xip/d:VMOD$<i>213","xip/d:VMAIN","<:xip/d:REFLEX$<i>215","<:xip/d:VMOD$<i>217","<:xip/d:VMOD$<i>218","<:xip/d:SUBJ$<i>221"],["s:sich","i:sich","_215#1356-1360","opennlp/p:PRF","cnx/l:sich","cnx/p:PRON","cnx/syn:@NH","tt/l:er|es|sie","tt/p:PRF","mate/l:sich","mate/p:PRF","mate/m:case:acc","mate/m:number:sg","mate/m:person:3",">:mate/d:OA$<i>214","xip/p:PRON","xip/l:sich","<>:xip/c:NP#1356-1360$<i>216<b>2","<>:xip/c:PRON#1356-1360$<i>216",">:xip/d:REFLEX$<i>214"],["s:jedoch","i:jedoch","_216#1361-1367","opennlp/p:ADV","cnx/l:jedoch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:jedoch","tt/p:ADV","mate/l:jedoch","mate/p:ADV",">:mate/d:MO$<i>214","xip/p:CONJ","xip/l:jedoch","<>:xip/c:CONJ#1361-1367$<i>217"],["s:noch","i:noch","_217#1368-1372","opennlp/p:ADV","cnx/l:noch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:noch","tt/p:ADV","mate/l:noch","mate/p:ADV",">:mate/d:MO$<i>218","xip/p:ADV","xip/l:noch","<>:xip/c:ADV#1368-1372$<i>218",">:xip/d:VMOD$<i>214"],["s:häufig","i:häufig","_218#1373-1379","opennlp/p:ADJD","cnx/l:häufig","cnx/p:A","cnx/syn:@NH","tt/l:häufig","tt/p:ADJD","mate/l:häufig","mate/p:ADJD","mate/m:degree:pos","<:mate/d:MO$<i>217",">:mate/d:MO$<i>214","xip/p:ADJ","xip/l:häufig","<>:xip/c:AP#1373-1379$<i>219<b>2","<>:xip/c:ADJ#1373-1379$<i>219",">:xip/d:VMOD$<i>214"],["s:die","i:die","_219#1380-1383","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>221","xip/p:DET","xip/l:die","<>:xip/c:NP#1380-1398$<i>222<b>2","<>:xip/c:DET#1380-1383$<i>220",">:xip/d:DETERM$<i>221"],["s:alte","i:alte","_220#1384-1388","opennlp/p:ADJA","cnx/l:alt","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#1384-1398$<i>222","tt/l:alt","tt/p:ADJA","mate/l:alt","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>221","xip/p:ADJ","xip/l:alt","<>:xip/c:NPA#1384-1398$<i>222<b>3","<>:xip/c:AP#1384-1388$<i>221<b>4","<>:xip/c:ADJ#1384-1388$<i>221",">:xip/d:NMOD$<i>221"],["s:Scheibung","i:scheibung","_221#1389-1398","opennlp/p:NN","cnx/l:scheibung","cnx/p:N","cnx/syn:@NH","tt/p:NN","mate/l:scheibung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>219","<:mate/d:NK$<i>220",">:mate/d:OG$<i>214","xip/p:NOUN","xip/l:Scheibung","<>:xip/c:NOUN#1389-1398$<i>222","<:xip/d:DETERM$<i>219","<:xip/d:NMOD$<i>220",">:xip/d:SUBJ$<i>214"],["s:Ein","i:ein","_222#1400-1403","<>:s#1400-1552$<i>245","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>223","xip/p:DET","xip/l:ein","<>:xip/c:DET#1400-1403$<i>223","<>:xip/c:TOP#1400-1532$<i>244","<>:xip/c:MC#1400-1432$<i>228<b>1","<>:xip/c:NP#1400-1412$<i>224<b>2",">:xip/d:DETERM$<i>223"],["s:Kuriosum","i:kuriosum","_223#1404-1412","opennlp/p:NE","cnx/l:kuriosum","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1404-1412$<i>224","tt/l:Kuriosum","tt/p:NN","mate/l:kuriosum","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>222",">:mate/d:PD$<i>224","xip/p:NOUN","xip/l:Kuriosum","<>:xip/c:NOUN#1404-1412$<i>224","<>:xip/c:NPA#1404-1412$<i>224<b>3","<:xip/d:DETERM$<i>222",">:xip/d:SUBJ$<i>224"],["s:ist","i:ist","_224#1413-1416","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>223","<:mate/d:SB$<i>226","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#1413-1416$<i>225","<:xip/d:SUBJ$<i>223","xip/d:VMAIN","<:xip/d:PRED$<i>226"],["s:die","i:die","_225#1417-1420","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>226","xip/p:DET","xip/l:die","<>:xip/c:DET#1417-1420$<i>226","<>:xip/c:NP#1417-1426$<i>227<b>2",">:xip/d:DETERM$<i>226"],["s:Stadt","i:stadt","_226#1421-1426","opennlp/p:NN","cnx/l:stadt","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/c:np#1421-1432$<i>228","tt/l:Stadt","tt/p:NN","mate/l:stadt","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>225",">:mate/d:SB$<i>224","<:mate/d:NK$<i>227","<:mate/d:RC$<i>232","xip/p:NOUN","xip/l:Stadt","<>:xip/c:NPA#1421-1426$<i>227<b>3","<>:xip/c:NOUN#1421-1426$<i>227","<:xip/d:DETERM$<i>225",">:xip/d:PRED$<i>224","<:xip/d:NMOD$<i>227"],["s:Århus","i:århus","_227#1427-1432","opennlp/p:NE","cnx/l:Århus","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:VVINF","tt/p:NN","tt/p:VVFIN","tt/p:ADJD","tt/p:VVPP","mate/l:århus","mate/p:NE",">:mate/d:NK$<i>226","xip/p:NOUN","xip/l:Århus","<>:xip/c:NOUN#1427-1432$<i>228","<>:xip/c:NP#1427-1432$<i>228<b>2","<>:xip/c:NPA#1427-1432$<i>228<b>3","xip/d:LOC",">:xip/d:NMOD$<i>226"],["s:die","i:die","_228#1434-1437","opennlp/p:PRELS","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:SB$<i>232","xip/p:PRON","xip/l:die","<>:xip/c:PRON#1434-1437$<i>229","<>:xip/c:NP#1434-1437$<i>229<b>1","xip/d:THEMA"],["s:sich","i:sich","_229#1438-1442","opennlp/p:PRF","cnx/l:sich","cnx/p:PRON","cnx/syn:@NH","tt/l:er|es|sie","tt/p:PRF","mate/l:sich","mate/p:PRF","mate/m:case:acc","mate/m:number:sg","mate/m:person:3",">:mate/d:OA$<i>232","xip/p:PRON","xip/l:sich","<>:xip/c:PRON#1438-1442$<i>230","<>:xip/c:NP#1438-1442$<i>230<b>1"],["s:mit","i:mit","_230#1443-1446","opennlp/p:APPR","cnx/l:mit","cnx/p:ADV","cnx/syn:@ADVL","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>232","<:mate/d:NK$<i>231","xip/p:PREP","xip/l:mit","<>:xip/c:PREP#1443-1446$<i>231"],["s:Å","i:å","_231#1447-1448","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1447-1448$<i>232","tt/p:NE","tt/p:NN","mate/l:å","mate/p:PPER","mate/m:case:dat","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>230","xip/p:ADV","xip/l:å","<>:xip/c:ADV#1447-1448$<i>232","<>:xip/c:MC#1447-1457$<i>233<b>1",">:xip/d:VMOD$<i>232"],["s:schreibt","i:schreibt","_232#1449-1457","opennlp/p:VVFIN","cnx/l:schreiben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:schreiben","tt/p:VVFIN","mate/l:schreiben","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>228","<:mate/d:OA$<i>229","<:mate/d:MO$<i>230",">:mate/d:RC$<i>226","<:mate/d:MO$<i>243","xip/p:VERB","xip/l:schreiben","<>:xip/c:VERB#1449-1457$<i>233","<:xip/d:VMOD$<i>231","xip/d:VMAIN"],["s:während","i:während","_233#1459-1466","opennlp/p:KOUS","cnx/l:während","cnx/p:CS","cnx/syn:@PREMARK","tt/l:während","tt/p:KOUS","mate/l:während","mate/p:KOUS",">:mate/d:CP$<i>243","xip/p:ADJ","xip/l:währen","<>:xip/c:ADJ#1459-1466$<i>234","<>:xip/c:MC#1459-1531$<i>244<b>1","<>:xip/c:AP#1459-1466$<i>234<b>2",">:xip/d:VMOD$<i>242"],["s:im","i:im","_234#1467-1469","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>242","<:mate/d:NK$<i>235","xip/p:PREP","xip/l:in","<>:xip/c:PREP#1467-1469$<i>235","<>:xip/c:PP#1467-1475$<i>236<b>2"],["s:Namen","i:namen","_235#1470-1475","opennlp/p:NN","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1470-1475$<i>236","tt/l:Name","tt/p:NN","mate/l:name","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>234","<:mate/d:AG$<i>237","xip/p:NOUN","xip/l:Name","<>:xip/c:NP#1470-1475$<i>236<b>3","<>:xip/c:NPA#1470-1475$<i>236<b>4","<>:xip/c:NOUN#1470-1475$<i>236","<:xip/d:NMOD$<i>237"],["s:der","i:der","_236#1476-1479","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>237","xip/p:DET","xip/l:der","<>:xip/c:DET#1476-1479$<i>237","<>:xip/c:NP#1476-1491$<i>238<b>2",">:xip/d:DETERM$<i>237"],["s:Universität","i:universität","_237#1480-1491","opennlp/p:NN","cnx/l:universität","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1480-1491$<i>238","tt/l:Universität","tt/p:NN","mate/l:universität","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>236",">:mate/d:AG$<i>235","<:mate/d:AG$<i>239","xip/p:NOUN","xip/l:Universität","<>:xip/c:NOUN#1480-1491$<i>238","<>:xip/c:NPA#1480-1491$<i>238<b>3","<:xip/d:DETERM$<i>236",">:xip/d:NMOD$<i>235","<:xip/d:NMOD$<i>239"],["s:der","i:der","_238#1492-1495","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>239","xip/p:DET","xip/l:der","<>:xip/c:NP#1492-1501$<i>240<b>2","<>:xip/c:DET#1492-1495$<i>239",">:xip/d:DETERM$<i>239"],["s:Stadt","i:stadt","_239#1496-1501","opennlp/p:NN","cnx/l:stadt","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1496-1501$<i>240","tt/l:Stadt","tt/p:NN","mate/l:stadt","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>238",">:mate/d:AG$<i>237","xip/p:NOUN","xip/l:Stadt","<>:xip/c:NPA#1496-1501$<i>240<b>3","<>:xip/c:NOUN#1496-1501$<i>240","<:xip/d:DETERM$<i>238",">:xip/d:NMOD$<i>237","<:xip/d:NMOD$<i>241"],["s:der","i:der","_240#1502-1505","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>241","xip/p:DET","xip/l:der","<>:xip/c:DET#1502-1505$<i>241","<>:xip/c:NP#1502-1513$<i>242<b>2",">:xip/d:DETERM$<i>241"],["s:Digraph","i:digraph","_241#1506-1513","opennlp/p:NN","cnx/l:digraph","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1506-1513$<i>242","tt/l:Digraph","tt/p:NN","mate/l:digraph","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>240",">:mate/d:SB$<i>243","xip/p:NOUN","xip/l:Digraph","<>:xip/c:NOUN#1506-1513$<i>242","<>:xip/c:NPA#1506-1513$<i>242<b>3","<:xip/d:DETERM$<i>240",">:xip/d:NMOD$<i>239"],["s:beibehalten","i:beibehalten","_242#1514-1525","opennlp/p:VVPP","cnx/l:beibehalten","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:beibehalten","tt/p:VVPP","mate/l:beibehalten","mate/p:VVPP","<:mate/d:MO$<i>234",">:mate/d:OC$<i>243","<:mate/d:MO$<i>245","xip/p:VERB","xip/l:beibehalten","<>:xip/c:VERB#1514-1525$<i>243","<:xip/d:VMOD$<i>233",">:xip/d:AUXIL$<i>243","xip/d:VMAIN"],["s:wurde","i:wurde","_243#1526-1531","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:CP$<i>233","<:mate/d:SB$<i>241","<:mate/d:OC$<i>242",">:mate/d:MO$<i>232","xip/p:VERB","xip/l:werden","<>:xip/c:VERB#1526-1531$<i>244","<:xip/d:AUXIL$<i>242"],["s:Aarhus","i:aarhus","_244#1533-1539","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Aarhus","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#1533-1551$<i>246","tt/p:NE","mate/l:aarhus","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>245","xip/p:NOUN","xip/l:Aarhus","<>:xip/c:NOUN#1533-1539$<i>245","<>:xip/c:TOP#1533-1552$<i>245","<>:xip/c:NP#1533-1551$<i>246<b>1","<>:xip/c:NPA#1533-1551$<i>246<b>2","<>:xip/c:NOUN#1533-1551$<i>246<b>3"],["s:Universitet","i:universitet","_245#1540-1551","opennlp/p:NE","cnx/l:universitet","cnx/p:N","cnx/syn:@NH","tt/p:NE","mate/l:universitet","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>244",">:mate/d:MO$<i>242","xip/p:NOUN","xip/l:Universitet","<>:xip/c:NOUN#1540-1551$<i>246"]],"layerInfo":"opennlp/p=pos cnx/l=lemma cnx/p=pos cnx/m=msd cnx/c=const tt/p=pos tt/l=lemma mate/l=lemma mate/p=pos mate/m=msd mate/d=dep xip/l=lemma xip/p=pos xip/c=const xip/d=dep","foundries":"mate mate/morpho mate/dependency base base/sentences base/paragraphs connexor connexor/morpho connexor/syntax connexor/phrase opennlp opennlp/morpho corenlp corenlp/namedentities corenlp/namedentities/ne_dewac_175m_600 corenlp/namedentities corenlp/namedentities/ne_hgc_175m_600 treetagger treetagger/morpho xip xip/morpho xip/constituency xip/dependency","name":"tokens"}],"pubDate":"20050328","ID":"WPD_AAA.00002","author":"ErikDunsing,Ninjamask,JakobVoss"}
\ No newline at end of file
+{"corpusID":"WPD","textClass":"freizeit-unterhaltung reisen","title":"Å","fields":[{"primaryData":"Der Buchstabe Å - Kleinbuchstabe å - steht für den offenen, tiefen Vokal A mit einer Tendenz zum O (langes nordisches A), wie er im Dänischen, Norwegischen vorkommt. Früher wurde er im Dänischen Aa bzw. aa geschrieben, erst am 22. März 1948 wurde Å eingeführt. den Vokal o (wie langes/kurzes deutsches \"o\") im Schwedischen. die Abkürzung für Ångström (Einheit) das Suffix -aa im Schwedischen Å bedeutet auf schwedisch, norwegisch und dänisch \"Bach/Fluss\". Das altnordische Wort á - Wasser ist urverwandt mit lateinisch aqua, erhalten im Ortsnamen Århus, vergleiche deutsch Au. den altnordischen Buchstaben á, wie er heute im Färöischen und Isländischen verwendet wird. in der dänischen Sprache ein Ausdruck des Erstaunens, vergleiche deutsch ach! oder oh! Å bzw. vollständig Å i Lofoten ist der Name eines Ortes auf der Inselgruppe Lofoten in Norwegen, unter anderem Endpunkt der Europastraße E10. Außer Å i Lofoten gibt es in Norwegen noch andere Orte, die Å heißen. Auch in Schweden gibt es mehrere Orte, die Å heißen Das Å besteht aus dem Buchstaben A und einem kleinen übergeschriebenen O, welches die Vokalqualität andeutet. Im Schwedischen steht der Buchstabe nach dem z und vor dem ä im Alphabet, im Dänischen ist es der letzte Buchstabe des Alphabetes. In Dänemark ist der alte Digraph Aa durch Å ersetzt worden, in Eigennamen und Ortsnamen findet sich jedoch noch häufig die alte Scheibung. Ein Kuriosum ist die Stadt Århus, die sich mit Å schreibt, während im Namen der Universität der Stadt der Digraph beibehalten wurde: Aarhus Universitet."},{"tokenization":"opennlp#tokens","data":[["s:Der","i:der","_0#0-3","-:tokens$<i>246","-:sentences$<i>16","-:paragraphs$<i>11"],["s:Buchstabe","i:buchstabe","_1#4-13","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#4-13$<i>2","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:SB$<i>5","<:mate/d:NK$<i>2","<:mate/d:PAR$<i>3","xip/p:NOUN","xip/l:Buchstabe","<>:xip/c:NOUN#4-13$<i>2","<>:xip/c:NPA#4-13$<i>2",">:xip/d:SUBJ$<i>5"],["s:Å","i:å","_2#14-15","opennlp/p:VVFIN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#14-15$<i>3","tt/p:NE","tt/p:NN","tt/p:VVINF","tt/p:VVFIN","mate/l:å","mate/p:CARD",">:mate/d:NK$<i>1","xip/p:ADV","xip/l:å","<>:xip/c:ADV#14-15$<i>3",">:xip/d:VMOD$<i>5"],["s:Kleinbuchstabe","i:kleinbuchstabe","_3#18-32","opennlp/p:NN","cnx/l:klein","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#18-32$<i>4","tt/l:Kleinbuchstabe","tt/p:NN","mate/l:kleinbuchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PAR$<i>1","<:mate/d:NK$<i>4","xip/p:NOUN","xip/l:klein","xip/l:Buchstabe","xip/l:Kleinbuchstabe","<>:xip/c:INS#16-36$<i>5","<>:xip/c:NP#18-32$<i>4<b>1","<>:xip/c:NPA#18-32$<i>4<b>2","<>:xip/c:NOUN#18-32$<i>4"],["s:å","i:å","_4#33-34","opennlp/p:VVFIN","cnx/l:å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#33-34$<i>5","tt/p:NE","tt/p:NN","tt/p:VVINF","tt/p:VVFIN","mate/l:å","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>3","xip/p:ADV","xip/l:å","<>:xip/c:ADV#33-34$<i>5"],["s:steht","i:steht","_5#37-42","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>1","<:mate/d:SVP$<i>6","xip/p:VERB","xip/l:stehen","<>:xip/c:VERB#37-42$<i>6","<:xip/d:SUBJ$<i>1","<:xip/d:VMOD$<i>2","xip/d:VMAIN","<:xip/d:OBJ$<i>11"],["s:für","i:für","_6#43-46","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:SVP$<i>5","xip/p:PREP","xip/l:für","<>:xip/c:PP#43-72$<i>11","<>:xip/c:PREP#43-46$<i>7"],["s:den","i:den","_7#47-50","<>:s#47-165$<i>26","<>:p#47-260$<i>43","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>10","xip/p:DET","xip/l:der","<>:xip/c:NP#47-72$<i>11<b>1","<>:xip/c:DET#47-50$<i>8",">:xip/d:DETERM$<i>10"],["s:offenen","i:offenen","_8#51-58","opennlp/p:ADJA","cnx/l:offen","cnx/p:A","cnx/syn:@PREMOD","tt/l:offen","tt/p:ADJA","mate/l:offen","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>10","<:mate/d:CJ$<i>9","xip/p:ADJ","xip/l:offen","<>:xip/c:NPA#51-72$<i>11<b>2","<>:xip/c:AP#51-58$<i>9<b>3","<>:xip/c:ADJ#51-58$<i>9",">:xip/d:NMOD$<i>10"],["s:tiefen","i:tiefen","_9#60-66","opennlp/p:ADJA","cnx/l:tief","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#60-72$<i>11","tt/l:tief","tt/p:ADJA","mate/l:tief","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:CJ$<i>8","xip/p:ADJ","xip/l:tief","<>:xip/c:AP#60-66$<i>10<b>3","<>:xip/c:ADJ#60-66$<i>10",">:xip/d:NMOD$<i>10"],["s:Vokal","i:vokal","_10#67-72","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>7","<:mate/d:NK$<i>8","<:mate/d:NK$<i>11","<:mate/d:MNR$<i>12","<:mate/d:MNR$<i>25","xip/p:NOUN","xip/l:Vokal","<>:xip/c:NOUN#67-72$<i>11","<:xip/d:DETERM$<i>7","<:xip/d:NMOD$<i>8","<:xip/d:NMOD$<i>9"],["s:A","i:a","_11#73-74","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>10","xip/p:SYMBOL","xip/l:A","<>:xip/c:SYMBOL#73-74$<i>12","<>:xip/c:NP#73-74$<i>12","<>:xip/c:NPA#73-74$<i>12<b>1","<>:xip/c:NOUN#73-74$<i>12<b>2",">:xip/d:OBJ$<i>5"],["s:mit","i:mit","_12#75-78","opennlp/p:APPR","cnx/l:mit","cnx/p:ADV","cnx/syn:@ADVL","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MNR$<i>10","<:mate/d:NK$<i>14","xip/p:PREP","xip/l:mit","<>:xip/c:PP#75-92$<i>15","<>:xip/c:PREP#75-78$<i>13"],["s:einer","i:einer","_13#79-84","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>14","xip/p:DET","xip/l:ein","<>:xip/c:NP#79-92$<i>15<b>1","<>:xip/c:DET#79-84$<i>14",">:xip/d:DETERM$<i>14"],["s:Tendenz","i:tendenz","_14#85-92","opennlp/p:NN","cnx/l:tendenz","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#85-98$<i>17","tt/l:Tendenz","tt/p:NN","mate/l:tendenz","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>13",">:mate/d:NK$<i>12","<:mate/d:MNR$<i>15","xip/p:NOUN","xip/l:Tendenz","<>:xip/c:NPA#85-92$<i>15<b>2","<>:xip/c:NOUN#85-92$<i>15","<:xip/d:DETERM$<i>13"],["s:zum","i:zum","_15#93-96","opennlp/p:APPRART","tt/l:zum","tt/p:APPRART","mate/l:zu","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MNR$<i>14","<:mate/d:NK$<i>16","xip/p:PREP","xip/l:zu","<>:xip/c:PREP#93-96$<i>16","<>:xip/c:PP#93-98$<i>17"],["s:O","i:o","_16#97-98","opennlp/p:NE","cnx/l:O","cnx/p:N","cnx/syn:@NH","tt/l:O","tt/p:NN","mate/l:O","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>15","<:mate/d:APP$<i>19","xip/p:SYMBOL","xip/l:O","<>:xip/c:SYMBOL#97-98$<i>17","<>:xip/c:NP#97-98$<i>17<b>1","<>:xip/c:NPA#97-98$<i>17<b>2","<>:xip/c:NOUN#97-98$<i>17<b>3"],["s:langes","i:langes","_17#100-106","opennlp/p:ADJA","cnx/l:lang","cnx/p:A","cnx/syn:@PREMOD","tt/l:lang","tt/p:ADJA","mate/l:lang","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:MO$<i>18","xip/p:ADJ","xip/l:lang","<>:xip/c:INS#99-120$<i>20","<>:xip/c:NP#100-119$<i>20<b>1","<>:xip/c:NPA#100-119$<i>20<b>2","<>:xip/c:AP#100-106$<i>18<b>3","<>:xip/c:ADJ#100-106$<i>18",">:xip/d:NMOD$<i>19"],["s:nordisches","i:nordisches","_18#107-117","opennlp/p:ADJA","cnx/l:nordisch","cnx/p:A","cnx/syn:@NH","tt/l:nordisch","tt/p:ADJA","mate/l:nordisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>17",">:mate/d:NK$<i>19","xip/p:ADJ","xip/l:nordisch","<>:xip/c:AP#107-117$<i>19<b>3","<>:xip/c:ADJ#107-117$<i>19",">:xip/d:NMOD$<i>19"],["s:A","i:a","_19#118-119","opennlp/p:NN","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>18",">:mate/d:APP$<i>16","xip/p:SYMBOL","xip/l:A","<>:xip/c:NOUN#118-119$<i>20<b>3","<>:xip/c:SYMBOL#118-119$<i>20","<:xip/d:NMOD$<i>17","<:xip/d:NMOD$<i>18"],["s:wie","i:wie","_20#122-125","opennlp/p:PWAV","cnx/l:wie","cnx/p:ADV","cnx/syn:@ADVL","tt/l:wie","tt/p:KOUS","tt/p:KOKOM","mate/l:wie","mate/p:PWAV",">:mate/d:MO$<i>25","xip/p:ADV","xip/l:wie","<>:xip/c:ADV#122-125$<i>21"],["s:er","i:er","_21#126-128","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>25","xip/p:PRON","xip/l:er","<>:xip/c:PRON#126-128$<i>22","<>:xip/c:NP#126-128$<i>22","xip/d:THEMA"],["s:im","i:im","_22#129-131","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>25","<:mate/d:NK$<i>23","xip/p:PREP","xip/l:in","<>:xip/c:PREP#129-131$<i>23","<>:xip/c:PP#129-141$<i>24"],["s:Dänischen","i:dänischen","_23#132-141","opennlp/p:NN","cnx/l:Dänisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#132-141$<i>24","tt/l:Dänische","tt/p:NN","mate/l:dänischen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>22","xip/p:NOUN","xip/l:dänisch","<>:xip/c:NOUN#132-141$<i>24","<>:xip/c:NP#132-141$<i>24<b>1","<>:xip/c:NPA#132-141$<i>24<b>2"],["s:Norwegischen","i:norwegischen","_24#143-155","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Norwegisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#143-155$<i>25","tt/l:Norwegische","tt/p:NN","mate/l:norwegischen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>25","xip/p:NOUN","xip/l:norwegisch","<>:xip/c:MC#143-164$<i>26","<>:xip/c:NP#143-155$<i>25<b>1","<>:xip/c:NPA#143-155$<i>25<b>2","<>:xip/c:NOUN#143-155$<i>25",">:xip/d:SUBJ$<i>25"],["s:vorkommt","i:vorkommt","_25#156-164","opennlp/p:VVFIN","cnx/l:vor","cnx/l:kommen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:vorkommen","tt/p:VVFIN","mate/l:vorkommen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>20","<:mate/d:SB$<i>21","<:mate/d:MO$<i>22","<:mate/d:MO$<i>24",">:mate/d:MNR$<i>10","xip/p:VERB","xip/l:vorkommen","<>:xip/c:VERB#156-164$<i>26","<:xip/d:SUBJ$<i>24","xip/d:VMAIN"],["s:Früher","i:früher","_26#166-172","<>:s#166-260$<i>43","opennlp/p:NN","cnx/l:früh","cnx/p:A","cnx/syn:@NH","tt/l:früher","tt/p:ADV","tt/l:früh","tt/p:ADJD","mate/l:früh","mate/p:ADJD","mate/m:degree:comp",">:mate/d:MO$<i>34","xip/p:ADV","xip/l:früher","<>:xip/c:TOP#166-260$<i>43","<>:xip/c:MC#166-217$<i>35<b>1","<>:xip/c:ADV#166-172$<i>27",">:xip/d:VMOD$<i>34"],["s:wurde","i:wurde","_27#173-178","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>28","<:mate/d:OC$<i>34","<:mate/d:CJ$<i>40","xip/p:VERB","xip/l:werden","<>:xip/c:VERB#173-178$<i>28","<:xip/d:AUXIL$<i>34"],["s:er","i:er","_28#179-181","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>27","xip/p:PRON","xip/l:er","<>:xip/c:NP#179-181$<i>29<b>2","<>:xip/c:PRON#179-181$<i>29",">:xip/d:SUBJ$<i>34"],["s:im","i:im","_29#182-184","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>34","xip/p:PREP","xip/l:in","<>:xip/c:PREP#182-184$<i>30","<>:xip/c:PP#182-197$<i>32<b>2"],["s:Dänischen","i:dänischen","_30#185-194","opennlp/p:ADJA","cnx/l:dänisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#185-197$<i>32","tt/l:Dänische","tt/p:NN","mate/l:dänisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","xip/p:ADJ","xip/l:dänisch","<>:xip/c:NP#185-197$<i>32<b>3","<>:xip/c:NPA#185-197$<i>32<b>4","<>:xip/c:AP#185-194$<i>31<b>5","<>:xip/c:ADJ#185-194$<i>31",">:xip/d:NMOD$<i>31"],["s:Aa","i:aa","_31#195-197","opennlp/p:NE","cnx/l:aa","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:aa","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","xip/p:NOUN","xip/l:Aa","<>:xip/c:NOUN#195-197$<i>32","<:xip/d:NMOD$<i>30"],["s:bzw.","i:bzw.","_32#198-202","opennlp/p:KON","cnx/l:bzw.","cnx/p:CC","cnx/syn:@CC","tt/l:bzw.","tt/p:KOKOM","tt/p:KOUI","xip/p:CONJ","xip/l:beziehungsweise","<>:xip/c:CONJ#198-202$<i>33"],["s:aa","i:aa","_33#203-205","opennlp/p:NE","cnx/l:aa","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#203-205$<i>34","tt/l:aa","tt/p:NE","tt/p:XY","tt/p:FM","mate/l:aa","mate/p:ADV",">:mate/d:MO$<i>34","xip/p:ADV","xip/l:aa","<>:xip/c:ADV#203-205$<i>34",">:xip/d:VMOD$<i>34"],["s:geschrieben","i:geschrieben","_34#206-217","opennlp/p:VVPP","cnx/l:schreiben","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:schreiben","tt/p:VVPP","mate/l:schreiben","mate/p:VVPP","<:mate/d:MO$<i>26","<:mate/d:MO$<i>29","<:mate/d:MO$<i>33",">:mate/d:OC$<i>27","xip/p:VERB","xip/l:schreiben","<>:xip/c:VERB#206-217$<i>35","<:xip/d:VMOD$<i>26","<:xip/d:SUBJ$<i>28","<:xip/d:VMOD$<i>33",">:xip/d:AUXIL$<i>27","xip/d:VMAIN"],["s:erst","i:erst","_35#219-223","opennlp/p:ADV","cnx/l:erst","cnx/p:ADV","cnx/syn:@ADVL","tt/l:erst","tt/p:ADV","mate/l:erst","mate/p:ADV",">:mate/d:MO$<i>36","xip/p:ADV","xip/l:erst","<>:xip/c:MC#219-259$<i>43<b>1","<>:xip/c:ADV#219-223$<i>36",">:xip/d:VMOD$<i>42"],["s:am","i:am","_36#224-226","opennlp/p:APPRART","tt/l:am","tt/p:APPRART","mate/l:an","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:MO$<i>35",">:mate/d:MO$<i>42","<:mate/d:NK$<i>38","xip/p:PREP","xip/l:an","<>:xip/c:PREP#224-226$<i>37","<>:xip/c:PP#224-240$<i>40<b>2"],["s:22.","i:22.","_37#227-230","opennlp/p:ADJA","cnx/l:22.","cnx/p:NUM","cnx/m:ORD","cnx/syn:@PREMOD","<>:cnx/c:np#227-235$<i>39","tt/l:22.","tt/p:ADJA","xip/p:NUM","xip/l:22.","<>:xip/c:NUM#227-230$<i>38","<>:xip/c:NP#227-240$<i>40<b>3","<>:xip/c:NPA#227-240$<i>40<b>4","<>:xip/c:NOUN#227-240$<i>40<b>5"],["s:März","i:märz","_38#231-235","opennlp/p:NN","cnx/l:märz","cnx/p:N","cnx/syn:@NH","tt/l:März","tt/p:NN","mate/l:märz","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>36","<:mate/d:NK$<i>39","xip/p:NOUN","xip/l:März","<>:xip/c:NOUN#231-235$<i>39"],["s:1948","i:1948","_39#236-240","opennlp/p:CARD","cnx/l:1948","cnx/p:NUM","cnx/syn:@NH","tt/l:1948","tt/p:CARD","mate/l:1948","mate/p:CARD",">:mate/d:NK$<i>38","xip/p:NUM","xip/l:1948","<>:xip/c:NUM#236-240$<i>40"],["s:wurde","i:wurde","_40#241-246","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind",">:mate/d:CJ$<i>27","<:mate/d:SB$<i>41","<:mate/d:OC$<i>42","xip/p:VERB","xip/l:werden","<>:xip/c:VERB#241-246$<i>41","<:xip/d:AUXIL$<i>42"],["s:Å","i:å","_41#247-248","opennlp/p:NE","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#247-248$<i>42","tt/p:NN","tt/p:ADJD","tt/p:NE","mate/l:å","mate/p:CARD",">:mate/d:SB$<i>40","xip/p:ADV","xip/l:å","<>:xip/c:ADV#247-248$<i>42",">:xip/d:VMOD$<i>42"],["s:eingeführt","i:eingeführt","_42#249-259","opennlp/p:VVPP","cnx/l:ein","cnx/l:führen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:einführen","tt/p:VVPP","mate/l:einführen","mate/p:VVPP","<:mate/d:MO$<i>36",">:mate/d:OC$<i>40","xip/p:VERB","xip/l:einführen","<>:xip/c:VERB#249-259$<i>43","<:xip/d:VMOD$<i>35","<:xip/d:VMOD$<i>41",">:xip/d:AUXIL$<i>40","xip/d:VMAIN"],["s:den","i:den","_43#261-264","<>:s#261-323$<i>52","<>:p#261-323$<i>52","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>45","xip/p:DET","xip/l:der","<>:xip/c:DET#261-264$<i>44","<>:xip/c:TOP#261-323$<i>52","<>:xip/c:NP#261-270$<i>45<b>1",">:xip/d:DETERM$<i>44"],["s:Vokal","i:vokal","_44#265-270","opennlp/p:NN","cnx/l:vokal","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#265-270$<i>45","tt/l:Vokal","tt/p:NN","mate/l:vokal","mate/p:FM","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:PNC$<i>45","xip/p:NOUN","xip/l:Vokal","<>:xip/c:NPA#265-270$<i>45<b>2","<>:xip/c:NOUN#265-270$<i>45","<:xip/d:DETERM$<i>43"],["s:o","i:o","_45#271-272","opennlp/p:ADV","cnx/l:o","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#271-272$<i>46","tt/l:o","tt/p:NE","tt/p:FM","tt/p:XY","mate/l:O","mate/p:FM","<:mate/d:NK$<i>43","<:mate/d:PNC$<i>44",">:mate/d:SB$<i>47","xip/p:SYMBOL","xip/l:o","<>:xip/c:SYMBOL#271-272$<i>46","<>:xip/c:NP#271-272$<i>46<b>1","<>:xip/c:NPA#271-272$<i>46<b>2","<>:xip/c:NOUN#271-272$<i>46<b>3","xip/d:THEMA"],["s:wie","i:wie","_46#274-277","opennlp/p:PWAV","cnx/l:wie","cnx/p:ADV","cnx/syn:@PREMOD","tt/l:wie","tt/p:KOKOM","tt/p:KOUS","mate/l:wie","mate/p:PWAV",">:mate/d:MO$<i>47","xip/p:CONJ","xip/l:wie","<>:xip/c:CONJ#274-277$<i>47","<>:xip/c:INS#273-306$<i>50<b>1"],["s:langes/kurzes","i:langes/kurzes","_47#278-291","opennlp/p:ADJA","cnx/l:lang","cnx/l:/","cnx/l:kurz","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#278-305$<i>50","mate/l:langes/kurz","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:SB$<i>45","<:mate/d:MO$<i>46","<:mate/d:MO$<i>50"],["s:deutsches","i:deutsches","_48#292-301","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@PREMOD","tt/l:deutsch","tt/p:ADJA","mate/l:deutsch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","xip/p:ADJ","xip/l:deutsch","<>:xip/c:ADJ#292-301$<i>49"],["s:\"o\"","i:\"o\"","_49#302-305","opennlp/p:NN","cnx/l:o","cnx/p:N","cnx/syn:@NH"],["s:im","i:im","_50#307-309","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>47","<:mate/d:NK$<i>51","xip/p:PREP","xip/l:in","<>:xip/c:PP#307-322$<i>52<b>1","<>:xip/c:PREP#307-309$<i>51"],["s:Schwedischen","i:schwedischen","_51#310-322","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Schwedisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#310-322$<i>52","tt/l:Schwedische","tt/p:NN","mate/l:schwedischen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>50","xip/p:NOUN","xip/l:schwedisch","<>:xip/c:NP#310-322$<i>52<b>2","<>:xip/c:NPA#310-322$<i>52<b>3","<>:xip/c:NOUN#310-322$<i>52"],["s:die","i:die","_52#324-327","<>:s#324-360$<i>57","<>:p#324-360$<i>57","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>53","xip/p:DET","xip/l:die","<>:xip/c:TOP#324-455$<i>70","<>:xip/c:MC#324-402$<i>64<b>1","<>:xip/c:NP#324-337$<i>54<b>2","<>:xip/c:DET#324-327$<i>53",">:xip/d:DETERM$<i>53"],["s:Abkürzung","i:abkürzung","_53#328-337","opennlp/p:NN","cnx/l:abkürzung","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#328-350$<i>56","tt/l:Abkürzung","tt/p:NN","mate/l:abkürzung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>52","<:mate/d:MNR$<i>54","xip/p:NOUN","xip/l:Abkürzung","<>:xip/c:NOUN#328-337$<i>54","<>:xip/c:NPA#328-337$<i>54<b>3","<:xip/d:DETERM$<i>52",">:xip/d:SUBJ$<i>63"],["s:für","i:für","_54#338-341","opennlp/p:ADJA","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:MNR$<i>53","<:mate/d:NK$<i>55","xip/p:PREP","xip/l:für","<>:xip/c:PP#338-350$<i>56<b>2","<>:xip/c:PREP#338-341$<i>55"],["s:Ångström","i:ångström","_55#342-350","opennlp/p:NN","cnx/l:Ångström","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:ångström","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>54","<:mate/d:PAR$<i>56","xip/p:NOUN","xip/l:Ångström","<>:xip/c:NOUN#342-350$<i>56","<>:xip/c:NP#342-350$<i>56<b>3","<>:xip/c:NPA#342-350$<i>56<b>4"],["s:Einheit","i:einheit","_56#352-359","opennlp/p:NN","cnx/l:einheit","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#352-359$<i>57","tt/l:Einheit","tt/p:NN","mate/l:einheit","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PAR$<i>55","xip/p:NOUN","xip/l:Einheit","<>:xip/c:NOUN#352-359$<i>57","<>:xip/c:INS#351-360$<i>57<b>2","<>:xip/c:NP#352-359$<i>57<b>3","<>:xip/c:NPA#352-359$<i>57<b>4"],["s:das","i:das","_57#361-364","<>:s#361-391$<i>62","<>:p#361-391$<i>62","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>58","xip/p:DET","xip/l:das","<>:xip/c:DET#361-364$<i>58","<>:xip/c:NP#361-371$<i>59<b>2",">:xip/d:DETERM$<i>58"],["s:Suffix","i:suffix","_58#365-371","opennlp/p:NN","cnx/l:suffix","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#365-371$<i>59","tt/l:Suffix","tt/p:NN","mate/l:suffix","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>57","<:mate/d:APP$<i>60","xip/p:NOUN","xip/l:Suffix","<>:xip/c:NPA#365-371$<i>59<b>3","<>:xip/c:NOUN#365-371$<i>59","<:xip/d:DETERM$<i>57",">:xip/d:OBJ$<i>63"],["s:-aa","i:-aa","_59#372-375","opennlp/p:NN","tt/p:NN","tt/p:NE","xip/p:SYMBOL","xip/l:-aa","<>:xip/c:NP#372-375$<i>60<b>2","<>:xip/c:NPA#372-375$<i>60<b>3","<>:xip/c:NOUN#372-375$<i>60<b>4","<>:xip/c:SYMBOL#372-375$<i>60",">:xip/d:OBJ$<i>63"],["s:im","i:im","_60#376-378","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:APP$<i>58","<:mate/d:NK$<i>61","xip/p:PREP","xip/l:in","<>:xip/c:PP#376-391$<i>62<b>2","<>:xip/c:PREP#376-378$<i>61"],["s:Schwedischen","i:schwedischen","_61#379-391","opennlp/p:ADJA","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:schwedisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:Schwedische","tt/p:NN","mate/l:schwedisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>60","xip/p:NOUN","xip/l:schwedisch","<>:xip/c:NP#379-391$<i>62<b>3","<>:xip/c:NPA#379-391$<i>62<b>4","<>:xip/c:NOUN#379-391$<i>62"],["s:Å","i:å","_62#392-393","<>:s#392-455$<i>70","<>:p#392-576$<i>87","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","tt/p:ADJD","tt/p:VVFIN","mate/l:å","mate/p:XY","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","xip/p:ADV","xip/l:å","<>:xip/c:ADV#392-393$<i>63",">:xip/d:VMOD$<i>63"],["s:bedeutet","i:bedeutet","_63#394-402","opennlp/p:VVFIN","cnx/l:bedeuten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bedeuten","tt/p:VVFIN","mate/l:bedeuten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>64","xip/p:VERB","xip/l:bedeuten","<>:xip/c:VERB#394-402$<i>64","<:xip/d:SUBJ$<i>53","<:xip/d:OBJ$<i>58","<:xip/d:OBJ$<i>59","<:xip/d:VMOD$<i>62","xip/d:VMAIN"],["s:auf","i:auf","_64#403-406","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MO$<i>63","xip/p:PREP","xip/l:auf","<>:xip/c:PREP#403-406$<i>65"],["s:schwedisch","i:schwedisch","_65#407-417","opennlp/p:ADJD","cnx/l:schwedisch","cnx/p:A","cnx/syn:@NH","tt/l:schwedisch","tt/p:ADJD","mate/l:schwedisch","mate/p:ADJD","mate/m:degree:pos","<:mate/d:CJ$<i>66","xip/p:ADJ","xip/l:schwedisch","<>:xip/c:ADJ#407-417$<i>66","<>:xip/c:AP#407-417$<i>66<b>1"],["s:norwegisch","i:norwegisch","_66#419-429","opennlp/p:ADJD","cnx/l:norwegisch","cnx/p:A","cnx/syn:@NH","tt/l:norwegisch","tt/p:ADJD","mate/l:norwegisch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:CJ$<i>65","<:mate/d:CD$<i>67","xip/p:ADJ","xip/l:norwegisch","<>:xip/c:ADJ#419-429$<i>67","<>:xip/c:AP#419-429$<i>67<b>1","<:xip/d:COORD$<i>67"],["s:und","i:und","_67#430-433","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>66","<:mate/d:CJ$<i>68","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#430-433$<i>68",">:xip/d:COORD$<i>66",">:xip/d:COORD$<i>68"],["s:dänisch","i:dänisch","_68#434-441","opennlp/p:ADJD","cnx/l:dänisch","cnx/p:A","cnx/syn:@PREMOD","tt/l:dänisch","tt/p:ADJD","mate/l:dänisch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:CJ$<i>67","xip/p:ADJ","xip/l:dänisch","<>:xip/c:AP#434-441$<i>69<b>1","<>:xip/c:ADJ#434-441$<i>69","<:xip/d:COORD$<i>67"],["s:\"Bach/Fluss\"","i:\"bach/fluss\"","_69#442-454","opennlp/p:NN"],["s:Das","i:das","_70#456-459","<>:s#456-576$<i>87","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>72","xip/p:DET","xip/l:das","<>:xip/c:DET#456-459$<i>71","<>:xip/c:TOP#456-576$<i>87","<>:xip/c:NP#456-477$<i>73<b>1",">:xip/d:DETERM$<i>72"],["s:altnordische","i:altnordische","_71#460-472","opennlp/p:ADJA","cnx/l:altnordisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#460-477$<i>73","tt/l:altnordisch","tt/p:ADJA","mate/l:altnordisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>72","xip/p:ADJ","xip/l:alt","xip/l:nordisch","xip/l:altnordisch","<>:xip/c:ADJ#460-472$<i>72","<>:xip/c:NPA#460-477$<i>73<b>2","<>:xip/c:AP#460-472$<i>72<b>3",">:xip/d:NMOD$<i>72"],["s:Wort","i:wort","_72#473-477","opennlp/p:NN","cnx/l:wort","cnx/p:N","cnx/syn:@NH","tt/l:Wort","tt/p:NN","mate/l:wort","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>70","<:mate/d:NK$<i>71",">:mate/d:SB$<i>80","<:mate/d:--$<i>73","<:mate/d:OC$<i>75","xip/p:NOUN","xip/l:Wort","<>:xip/c:NOUN#473-477$<i>73","<:xip/d:DETERM$<i>70","<:xip/d:NMOD$<i>71","xip/d:THEMA"],["s:á","i:á","_73#478-479","opennlp/p:VVFIN","cnx/l:á","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#478-479$<i>74","tt/l:á","tt/p:XY","mate/l:á","mate/p:$.",">:mate/d:--$<i>72","xip/p:PUNCT","xip/l:¡","<>:xip/c:PUNCT#478-479$<i>74"],["s:Wasser","i:wasser","_74#482-488","opennlp/p:NN","cnx/l:wasser","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/c:np#482-488$<i>75","tt/l:Wasser","tt/p:NN","mate/l:wasser","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:SB$<i>75","xip/p:NOUN","xip/l:Wasser","<>:xip/c:NOUN#482-488$<i>75","<>:xip/c:MC#480-523$<i>80<b>1","<>:xip/c:NP#482-488$<i>75<b>2","<>:xip/c:NPA#482-488$<i>75<b>3",">:xip/d:SUBJ$<i>75"],["s:ist","i:ist","_75#489-492","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>74",">:mate/d:OC$<i>72","<:mate/d:PD$<i>76","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#489-492$<i>76","<:xip/d:SUBJ$<i>74","xip/d:VMAIN","<:xip/d:PRED$<i>76"],["s:urverwandt","i:urverwandt","_76#493-503","opennlp/p:ADJD","cnx/l:ur","cnx/l:verwandt","cnx/p:A","cnx/syn:@NH","tt/p:ADJD","tt/p:ADV","mate/l:urverwandt","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>75","<:mate/d:MO$<i>77","xip/p:ADJ","xip/l:ur","xip/l:verwandt","xip/l:urverwandt","<>:xip/c:ADJ#493-503$<i>77","<>:xip/c:AP#493-503$<i>77<b>2",">:xip/d:PRED$<i>75"],["s:mit","i:mit","_77#504-507","opennlp/p:APPR","cnx/l:mit","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>76","<:mate/d:NK$<i>78","xip/p:PREP","xip/l:mit","<>:xip/c:PREP#504-507$<i>78","<>:xip/c:PP#504-523$<i>80<b>2"],["s:lateinisch","i:lateinisch","_78#508-518","opennlp/p:ADJD","cnx/l:lateinisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#508-523$<i>80","tt/l:lateinisch","tt/p:ADJD","mate/l:lateinisch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:NK$<i>77","<:mate/d:UC$<i>79","xip/p:ADJ","xip/l:lateinisch","<>:xip/c:ADJ#508-518$<i>79","<>:xip/c:NP#508-523$<i>80<b>3","<>:xip/c:AP#508-523$<i>80<b>4","<>:xip/c:AP#508-518$<i>79<b>5"],["s:aqua","i:aqua","_79#519-523","opennlp/p:NE","cnx/l:aqua","cnx/p:N","cnx/syn:@NH","tt/p:VVINF","tt/p:NN","tt/p:NE","tt/p:ADJD","tt/p:VVFIN","tt/p:VVPP","mate/l:aqua","mate/p:FM",">:mate/d:UC$<i>78","xip/p:ADJ","xip/l:aqua","<>:xip/c:ADJ#519-523$<i>80"],["s:erhalten","i:erhalten","_80#525-533","opennlp/p:VVFIN","cnx/l:erhalten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:erhalten","tt/p:VVFIN","mate/l:erhalten","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>72","<:mate/d:MO$<i>81","<:mate/d:CJ$<i>84","xip/p:VERB","xip/l:erhalten","<>:xip/c:VERB#525-533$<i>81","<>:xip/c:MC#525-552$<i>84<b>1","xip/d:VMAIN"],["s:im","i:im","_81#534-536","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>80","<:mate/d:NK$<i>82","xip/p:PREP","xip/l:in","<>:xip/c:PREP#534-536$<i>82","<>:xip/c:PP#534-546$<i>83<b>2"],["s:Ortsnamen","i:ortsnamen","_82#537-546","opennlp/p:NN","cnx/l:ort","cnx/l:name","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/c:np#537-552$<i>84","tt/l:Ortsname","tt/p:NN","mate/l:ortsnam","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>81","<:mate/d:NK$<i>83","xip/p:NOUN","xip/l:Ort","xip/l:Name","xip/l:Ortsname","<>:xip/c:NP#537-546$<i>83<b>3","<>:xip/c:NPA#537-546$<i>83<b>4","<>:xip/c:NOUN#537-546$<i>83","<:xip/d:NMOD$<i>83"],["s:Århus","i:århus","_83#547-552","opennlp/p:NE","cnx/l:Århus","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:VVINF","tt/p:NN","tt/p:VVFIN","tt/p:ADJD","tt/p:VVPP","mate/l:århus","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>82","xip/p:NOUN","xip/l:Århus","<>:xip/c:NOUN#547-552$<i>84","<>:xip/c:NP#547-552$<i>84<b>2","<>:xip/c:NPA#547-552$<i>84<b>3",">:xip/d:NMOD$<i>82"],["s:vergleiche","i:vergleiche","_84#554-564","opennlp/p:ADJA","cnx/l:vergleichen","cnx/p:V","cnx/m:SUB","cnx/m:PRES","cnx/syn:@MAIN","tt/l:vergleichen","tt/p:VVFIN","mate/l:vergleichen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:subj",">:mate/d:CJ$<i>80","<:mate/d:MO$<i>85","<:mate/d:OA$<i>86","xip/p:VERB","xip/l:vergleichen","<>:xip/c:MC#554-575$<i>87<b>1","<>:xip/c:VERB#554-564$<i>85","xip/d:VMAIN","<:xip/d:VMOD$<i>85","<:xip/d:SUBJ$<i>86"],["s:deutsch","i:deutsch","_85#565-572","opennlp/p:ADJD","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#565-575$<i>87","tt/l:deutsch","tt/p:ADJD","mate/l:deutsch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>84","xip/p:ADJ","xip/l:deutsch","<>:xip/c:AP#565-572$<i>86<b>2","<>:xip/c:ADJ#565-572$<i>86",">:xip/d:VMOD$<i>84"],["s:Au","i:au","_86#573-575","opennlp/p:NN","cnx/l:Au","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Au","tt/p:NE","mate/l:au","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:OA$<i>84","xip/p:NOUN","xip/l:Au","<>:xip/c:NOUN#573-575$<i>87","<>:xip/c:NP#573-575$<i>87<b>2","<>:xip/c:NPA#573-575$<i>87<b>3","xip/d:PERSON",">:xip/d:SUBJ$<i>84"],["s:den","i:den","_87#577-580","<>:s#577-668$<i>100","<>:p#577-668$<i>100","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>89","xip/p:DET","xip/l:der","<>:xip/c:TOP#577-668$<i>100","<>:xip/c:NP#577-605$<i>90<b>1","<>:xip/c:DET#577-580$<i>88",">:xip/d:DETERM$<i>89"],["s:altnordischen","i:altnordischen","_88#581-594","opennlp/p:ADJA","cnx/l:altnordisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#581-605$<i>90","tt/l:altnordisch","tt/p:ADJA","mate/l:altnordisch","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>89","xip/p:ADJ","xip/l:alt","xip/l:nordisch","xip/l:altnordisch","<>:xip/c:NPA#581-605$<i>90<b>2","<>:xip/c:AP#581-594$<i>89<b>3","<>:xip/c:ADJ#581-594$<i>89",">:xip/d:NMOD$<i>89"],["s:Buchstaben","i:buchstaben","_89#595-605","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>87","<:mate/d:NK$<i>88","<:mate/d:NK$<i>90","<:mate/d:MNR$<i>99","xip/p:NOUN","xip/l:Buchstabe","<>:xip/c:NOUN#595-605$<i>90","<:xip/d:DETERM$<i>87","<:xip/d:NMOD$<i>88"],["s:á","i:á","_90#606-607","opennlp/p:VVPP","cnx/l:á","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#606-607$<i>91","tt/l:á","tt/p:XY","mate/l:á","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>89","xip/p:PUNCT","xip/l:¡","<>:xip/c:INS#606-668$<i>100<b>1","<>:xip/c:PUNCT#606-607$<i>91"],["s:wie","i:wie","_91#609-612","opennlp/p:PWAV","cnx/l:wie","cnx/p:CS","cnx/syn:@PREMARK","tt/l:wie","tt/p:KOUS","tt/p:KOKOM","mate/l:wie","mate/p:PWAV",">:mate/d:MO$<i>98","xip/p:ADV","xip/l:wie","<>:xip/c:SC#609-667$<i>100<b>2","<>:xip/c:ADV#609-612$<i>92",">:xip/d:CONNECT$<i>98"],["s:er","i:er","_92#613-615","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>99","xip/p:PRON","xip/l:er","<>:xip/c:NP#613-615$<i>93<b>3","<>:xip/c:PRON#613-615$<i>93",">:xip/d:SUBJ$<i>98"],["s:heute","i:heute","_93#616-621","opennlp/p:ADV","cnx/l:heute","cnx/p:ADV","cnx/syn:@ADVL","tt/l:heute","tt/p:ADV","mate/l:heute","mate/p:ADV",">:mate/d:MO$<i>98","xip/p:ADV","xip/l:heute","<>:xip/c:ADV#616-621$<i>94",">:xip/d:VMOD$<i>98"],["s:im","i:im","_94#622-624","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>98","<:mate/d:NK$<i>95","xip/p:PREP","xip/l:in","<>:xip/c:PP#622-635$<i>96<b>3","<>:xip/c:PREP#622-624$<i>95"],["s:Färöischen","i:färöischen","_95#625-635","opennlp/p:NN","cnx/l:färöischen","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#625-635$<i>96","tt/l:Färöische","tt/p:NN","mate/l:färöisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>94","<:mate/d:CD$<i>96","xip/p:NOUN","xip/l:färöisch","<>:xip/c:NP#625-635$<i>96<b>4","<>:xip/c:NPA#625-635$<i>96<b>5","<>:xip/c:NOUN#625-635$<i>96","<:xip/d:COORD$<i>96"],["s:und","i:und","_96#636-639","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>95","<:mate/d:CJ$<i>97","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#636-639$<i>97",">:xip/d:COORD$<i>95",">:xip/d:COORD$<i>97"],["s:Isländischen","i:isländischen","_97#640-652","opennlp/p:NN","cnx/l:Isländisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#640-652$<i>98","tt/l:Isländische","tt/p:NN","mate/l:isländisch","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:CJ$<i>96","xip/p:NOUN","xip/l:isländisch","<>:xip/c:NP#640-652$<i>98<b>3","<>:xip/c:NPA#640-652$<i>98<b>4","<>:xip/c:NOUN#640-652$<i>98","<:xip/d:COORD$<i>96",">:xip/d:VMOD$<i>98"],["s:verwendet","i:verwendet","_98#653-662","opennlp/p:VVPP","cnx/l:verwenden","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:verwenden","tt/p:VVPP","mate/l:verwenden","mate/p:VVPP","<:mate/d:MO$<i>91","<:mate/d:MO$<i>93","<:mate/d:MO$<i>94",">:mate/d:OC$<i>99","xip/p:VERB","xip/l:verwenden","<>:xip/c:VERB#653-662$<i>99","<:xip/d:CONNECT$<i>91","<:xip/d:SUBJ$<i>92","<:xip/d:VMOD$<i>93","<:xip/d:VMOD$<i>97",">:xip/d:AUXIL$<i>99","xip/d:VMAIN"],["s:wird","i:wird","_99#663-667","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>92","<:mate/d:OC$<i>98",">:mate/d:MNR$<i>89","xip/p:VERB","xip/l:werden","<>:xip/c:VERB#663-667$<i>100","<:xip/d:AUXIL$<i>98"],["s:in","i:in","_100#669-671","<>:s#669-755$<i>113","<>:p#669-755$<i>113","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>108","<:mate/d:NK$<i>103","xip/p:PREP","xip/l:in","<>:xip/c:TOP#669-746$<i>111","<>:xip/c:INS#669-722$<i>108<b>1","<>:xip/c:PP#669-693$<i>104<b>2","<>:xip/c:PREP#669-671$<i>101"],["s:der","i:der","_101#672-675","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>103","xip/p:DET","xip/l:der","<>:xip/c:NP#672-693$<i>104<b>3","<>:xip/c:DET#672-675$<i>102",">:xip/d:DETERM$<i>103"],["s:dänischen","i:dänischen","_102#676-685","opennlp/p:ADJA","cnx/l:dänisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#676-693$<i>104","tt/l:dänisch","tt/p:ADJA","mate/l:dänisch","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>103","xip/p:ADJ","xip/l:dänisch","<>:xip/c:NPA#676-693$<i>104<b>4","<>:xip/c:AP#676-685$<i>103<b>5","<>:xip/c:ADJ#676-685$<i>103",">:xip/d:NMOD$<i>103"],["s:Sprache","i:sprache","_103#686-693","opennlp/p:NN","cnx/l:sprache","cnx/p:N","cnx/syn:@NH","tt/l:Sprache","tt/p:NN","mate/l:sprache","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>101","<:mate/d:NK$<i>102",">:mate/d:NK$<i>100","xip/p:NOUN","xip/l:Sprache","<>:xip/c:NOUN#686-693$<i>104","<:xip/d:DETERM$<i>101","<:xip/d:NMOD$<i>102"],["s:ein","i:ein","_104#694-697","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>105","xip/p:DET","xip/l:ein","<>:xip/c:NP#694-706$<i>106<b>2","<>:xip/c:DET#694-697$<i>105",">:xip/d:DETERM$<i>105"],["s:Ausdruck","i:ausdruck","_105#698-706","opennlp/p:NN","cnx/l:ausdruck","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#698-706$<i>106","tt/l:Ausdruck","tt/p:NN","mate/l:ausdruck","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>104",">:mate/d:SB$<i>108","<:mate/d:AG$<i>107","xip/p:NOUN","xip/l:Ausdruck","<>:xip/c:NPA#698-706$<i>106<b>3","<>:xip/c:NOUN#698-706$<i>106","<:xip/d:DETERM$<i>104","<:xip/d:NMOD$<i>107"],["s:des","i:des","_106#707-710","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>107","xip/p:DET","xip/l:der","<>:xip/c:NP#707-721$<i>108<b>2","<>:xip/c:DET#707-710$<i>107",">:xip/d:DETERM$<i>107"],["s:Erstaunens","i:erstaunens","_107#711-721","opennlp/p:NN","cnx/l:erstaunen","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#711-721$<i>108","tt/l:Erstaunen","tt/p:NN","mate/l:erstaunen","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>106",">:mate/d:AG$<i>105","xip/p:NOUN","xip/l:erstaunen","<>:xip/c:NPA#711-721$<i>108<b>3","<>:xip/c:NOUN#711-721$<i>108","<:xip/d:DETERM$<i>106",">:xip/d:NMOD$<i>105"],["s:vergleiche","i:vergleiche","_108#723-733","opennlp/p:ADJA","cnx/l:vergleichen","cnx/p:V","cnx/m:SUB","cnx/m:PRES","cnx/syn:@MAIN","tt/l:vergleichen","tt/p:VVFIN","mate/l:vergleichen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:subj","<:mate/d:MO$<i>100","<:mate/d:SB$<i>105","<:mate/d:MO$<i>109","<:mate/d:SVP$<i>110","<:mate/d:CD$<i>111","xip/p:VERB","xip/l:vergleichen","<>:xip/c:MC#723-741$<i>110<b>1","<>:xip/c:VERB#723-733$<i>109","xip/d:VMAIN","<:xip/d:VMOD$<i>109"],["s:deutsch","i:deutsch","_109#734-741","opennlp/p:ADJD","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:deutsch","cnx/p:A","cnx/syn:@NH","tt/l:deutsch","tt/p:ADJD","mate/l:deutsch","mate/p:ADJD","mate/m:degree:pos",">:mate/d:MO$<i>108","xip/p:ADJ","xip/l:deutsch","<>:xip/c:AP#734-741$<i>110<b>2","<>:xip/c:ADJ#734-741$<i>110",">:xip/d:VMOD$<i>108"],["s:ach","i:ach","_110#742-745","opennlp/p:ADJD","cnx/l:ach","cnx/p:INTERJ","cnx/syn:@ADVL","tt/l:ach","tt/p:ITJ","mate/l:ach","mate/p:PTKVZ",">:mate/d:SVP$<i>108","xip/p:ITJ","xip/l:ach","<>:xip/c:ITJ#742-745$<i>111"],["s:oder","i:oder","_111#747-751","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>108","<:mate/d:CJ$<i>112","xip/p:CONJ","xip/l:oder","<>:xip/c:TOP#747-755$<i>113","<>:xip/c:CONJ#747-751$<i>112"],["s:oh","i:oh","_112#752-754","opennlp/p:ADJD","cnx/l:oh","cnx/p:INTERJ","cnx/syn:@ADVL","tt/l:oh","tt/p:ITJ","mate/l:oh","mate/p:FM",">:mate/d:CJ$<i>111","xip/p:ITJ","xip/l:oh","<>:xip/c:ITJ#752-754$<i>113"],["s:Å","i:å","_113#756-757","<>:s#756-897$<i>136","<>:p#756-1019$<i>160","opennlp/p:VVFIN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#756-757$<i>114","tt/p:NE","tt/p:NN","tt/p:ADJD","mate/l:å","mate/p:XY","xip/p:ADV","xip/l:å","<>:xip/c:ADV#756-757$<i>114","<>:xip/c:TOP#756-897$<i>136","<>:xip/c:MC#756-851$<i>130<b>1","xip/d:VMAIN",">:xip/d:VMOD$<i>119","<:xip/d:OBJ$<i>117","<:xip/d:OBJ$<i>121"],["s:bzw.","i:bzw.","_114#758-762","opennlp/p:KON","cnx/l:bzw.","cnx/p:CC","cnx/syn:@CC","tt/l:bzw.","tt/p:KOKOM","xip/p:CONJ","xip/l:beziehungsweise","<>:xip/c:CONJ#758-762$<i>115"],["s:vollständig","i:vollständig","_115#763-774","opennlp/p:ADJD","cnx/l:vollständig","cnx/p:ADV","cnx/syn:@PREMOD","tt/l:vollständig","tt/p:ADJD","mate/l:vollständig","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>119","<:mate/d:NK$<i>116","xip/p:ADJ","xip/l:vollständig","<>:xip/c:ADJ#763-774$<i>116","<>:xip/c:NP#763-778$<i>118<b>2","<>:xip/c:NPA#763-778$<i>118<b>3","<>:xip/c:AP#763-776$<i>117<b>4","<>:xip/c:AP#763-774$<i>116<b>5"],["s:Å","i:å","_116#775-776","opennlp/p:ADJD","cnx/l:Å","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/c:np#775-786$<i>119","tt/p:NE","tt/p:NN","tt/p:VVFIN","mate/l:å","mate/p:XY",">:mate/d:NK$<i>115","<:mate/d:AG$<i>118","xip/p:ADJ","xip/l:å","<>:xip/c:ADJ#775-776$<i>117",">:xip/d:NMOD$<i>117"],["s:i","i:i","_117#777-778","opennlp/p:VAFIN","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","tt/l:i","tt/p:NE","mate/l:I","mate/p:CARD",">:mate/d:NK$<i>118","xip/p:SYMBOL","xip/l:i","<>:xip/c:SYMBOL#777-778$<i>118","<>:xip/c:NOUN#777-778$<i>118<b>4","<:xip/d:NMOD$<i>116",">:xip/d:OBJ$<i>113",">:xip/d:SUBJ$<i>119","<:xip/d:NMOD$<i>118"],["s:Lofoten","i:lofoten","_118#779-786","opennlp/p:NN","cnx/l:Lofoten","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:lofote","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>117",">:mate/d:AG$<i>116","xip/p:NOUN","xip/l:Lofoten","<>:xip/c:NOUN#779-786$<i>119","<>:xip/c:NP#779-786$<i>119<b>2","<>:xip/c:NPA#779-786$<i>119<b>3",">:xip/d:NMOD$<i>117"],["s:ist","i:ist","_119#787-790","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>115","<:mate/d:SB$<i>121","<:mate/d:PD$<i>123","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#787-790$<i>120","<:xip/d:VMOD$<i>113","<:xip/d:SUBJ$<i>117","xip/d:VMAIN","<:xip/d:PRED$<i>121"],["s:der","i:der","_120#791-794","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>121","xip/p:DET","xip/l:der","<>:xip/c:DET#791-794$<i>121","<>:xip/c:NP#791-799$<i>122<b>2",">:xip/d:DETERM$<i>121"],["s:Name","i:name","_121#795-799","opennlp/p:NN","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#795-799$<i>122","tt/l:Name","tt/p:NN","mate/l:name","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>120",">:mate/d:SB$<i>119","xip/p:NOUN","xip/l:Name","<>:xip/c:NOUN#795-799$<i>122","<>:xip/c:NPA#795-799$<i>122<b>3","<:xip/d:DETERM$<i>120",">:xip/d:OBJ$<i>113",">:xip/d:PRED$<i>119","<:xip/d:NMOD$<i>123"],["s:eines","i:eines","_122#800-805","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>123","xip/p:DET","xip/l:ein","<>:xip/c:DET#800-805$<i>123","<>:xip/c:NP#800-811$<i>124<b>2",">:xip/d:DETERM$<i>123"],["s:Ortes","i:ortes","_123#806-811","opennlp/p:NN","cnx/l:ort","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#806-839$<i>128","tt/l:Ort","tt/p:NN","mate/l:ort","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>122",">:mate/d:PD$<i>119","<:mate/d:MNR$<i>124","xip/p:NOUN","xip/l:Ort","<>:xip/c:NPA#806-811$<i>124<b>3","<>:xip/c:NOUN#806-811$<i>124","<:xip/d:DETERM$<i>122",">:xip/d:NMOD$<i>121"],["s:auf","i:auf","_124#812-815","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:MNR$<i>123","<:mate/d:NK$<i>126","xip/p:PREP","xip/l:auf","<>:xip/c:PREP#812-815$<i>125","<>:xip/c:PP#812-831$<i>127<b>2"],["s:der","i:der","_125#816-819","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>126","xip/p:DET","xip/l:der","<>:xip/c:DET#816-819$<i>126","<>:xip/c:NP#816-831$<i>127<b>3",">:xip/d:DETERM$<i>126"],["s:Inselgruppe","i:inselgruppe","_126#820-831","opennlp/p:NN","cnx/l:insel","cnx/l:gruppe","cnx/p:N","cnx/syn:@PREMOD","tt/l:Inselgruppe","tt/p:NN","mate/l:inselgruppe","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>125",">:mate/d:NK$<i>124","<:mate/d:NK$<i>127","<:mate/d:MNR$<i>128","<:mate/d:PAR$<i>132","xip/p:NOUN","xip/l:Insel","xip/l:Gruppe","xip/l:Inselgruppe","<>:xip/c:NOUN#820-831$<i>127","<>:xip/c:NPA#820-831$<i>127<b>4","<:xip/d:DETERM$<i>125","<:xip/d:NMOD$<i>127"],["s:Lofoten","i:lofoten","_127#832-839","opennlp/p:NN","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Lofoten","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:lofote","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>126","xip/p:NOUN","xip/l:Lofoten","<>:xip/c:NOUN#832-839$<i>128","<>:xip/c:NP#832-839$<i>128<b>2","<>:xip/c:NPA#832-839$<i>128<b>3",">:xip/d:NMOD$<i>126"],["s:in","i:in","_128#840-842","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MNR$<i>126","<:mate/d:NK$<i>129","xip/p:PREP","xip/l:in","<>:xip/c:PREP#840-842$<i>129","<>:xip/c:PP#840-851$<i>130<b>2"],["s:Norwegen","i:norwegen","_129#843-851","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Norwegen","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#843-851$<i>130","tt/l:Norwegen","tt/p:NE","mate/l:norwegen","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>128","xip/p:NOUN","xip/l:Norwegen","<>:xip/c:NOUN#843-851$<i>130","<>:xip/c:NP#843-851$<i>130<b>3","<>:xip/c:NPA#843-851$<i>130<b>4","xip/d:LOC"],["s:unter","i:unter","_130#853-858","opennlp/p:APPR","cnx/l:unter","cnx/p:ADV","cnx/syn:@ADVL","tt/l:unter","tt/p:APPR","mate/l:unter","mate/p:APPR",">:mate/d:MO$<i>132","<:mate/d:NK$<i>131","xip/p:PREP","xip/l:unter","<>:xip/c:PREP#853-858$<i>131","<>:xip/c:PP#853-875$<i>133"],["s:anderem","i:anderem","_131#859-866","opennlp/p:PIS","cnx/l:andere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:andere","tt/p:PIS","mate/l:anderer","mate/p:PIS","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>130","xip/p:ADJ","xip/l:andere","<>:xip/c:NP#859-875$<i>133<b>1","<>:xip/c:NPA#859-875$<i>133<b>2","<>:xip/c:AP#859-866$<i>132<b>3","<>:xip/c:ADJ#859-866$<i>132",">:xip/d:NMOD$<i>132"],["s:Endpunkt","i:endpunkt","_132#867-875","opennlp/p:NN","cnx/l:ende","cnx/l:punkt","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#867-875$<i>133","tt/l:Endpunkt","tt/p:NN","mate/l:endpunkt","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:MO$<i>130",">:mate/d:PAR$<i>126","xip/p:NOUN","xip/l:enden","xip/l:Punkt","xip/l:Endenpunkt","<>:xip/c:NOUN#867-875$<i>133","<:xip/d:NMOD$<i>131","<:xip/d:NMOD$<i>134"],["s:der","i:der","_133#876-879","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","xip/p:DET","xip/l:der","<>:xip/c:DET#876-879$<i>134","<>:xip/c:NP#876-892$<i>135",">:xip/d:DETERM$<i>134"],["s:Europastraße","i:europastraße","_134#880-892","opennlp/p:NN","cnx/l:europastraße","cnx/p:N","cnx/syn:@NH","tt/l:Europastraße","tt/p:NN","mate/l:europastraße","mate/p:NE","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","xip/p:NOUN","xip/l:Europa","xip/l:Straße","xip/l:Europastraße","<>:xip/c:NOUN#880-892$<i>135","<>:xip/c:NPA#880-892$<i>135<b>1","<:xip/d:DETERM$<i>133",">:xip/d:NMOD$<i>132"],["s:E10.","i:e10.","_135#893-897","opennlp/p:NE"],["s:Außer","i:außer","_136#898-903","<>:s#898-967$<i>150","opennlp/p:NN","cnx/l:ausser","cnx/p:CS","cnx/syn:@PREMARK","tt/l:außer","tt/p:APPR","mate/l:außer","mate/p:APPR",">:mate/d:MO$<i>140","<:mate/d:NK$<i>139","xip/p:PREP","xip/l:außer","<>:xip/c:PREP#898-903$<i>137","<>:xip/c:TOP#898-967$<i>150"],["s:Å","i:å","_137#904-905","opennlp/p:VVFIN","cnx/l:Å","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/c:np#904-915$<i>140","tt/p:NE","mate/l:å","mate/p:XY","mate/m:number:pl","mate/m:person:2","mate/m:tense:pres","mate/m:mood:ind",">:mate/d:PNC$<i>138","xip/p:ADV","xip/l:å","<>:xip/c:ADV#904-905$<i>138","<>:xip/c:MC#904-952$<i>147<b>1",">:xip/d:VMOD$<i>140"],["s:i","i:i","_138#906-907","opennlp/p:APPR","cnx/l:i","cnx/p:N","cnx/syn:@PREMOD","tt/l:i","tt/p:NE","mate/l:I","mate/p:XY","<:mate/d:PNC$<i>137",">:mate/d:NK$<i>139","xip/p:SYMBOL","xip/l:i","<>:xip/c:SYMBOL#906-907$<i>139","<>:xip/c:NP#906-907$<i>139<b>2","<>:xip/c:NPA#906-907$<i>139<b>3","<>:xip/c:NOUN#906-907$<i>139<b>4",">:xip/d:OBJ$<i>140",">:xip/d:SUBJ$<i>140","<:xip/d:NMOD$<i>139"],["s:Lofoten","i:lofoten","_139#908-915","opennlp/p:NN","cnx/l:Lofoten","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:lofote","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>138",">:mate/d:NK$<i>136","xip/p:NOUN","xip/l:Lofoten","<>:xip/c:NOUN#908-915$<i>140","<>:xip/c:NP#908-915$<i>140<b>2","<>:xip/c:NPA#908-915$<i>140<b>3",">:xip/d:NMOD$<i>138"],["s:gibt","i:gibt","_140#916-920","opennlp/p:VVFIN","cnx/l:geben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:geben","tt/p:VVFIN","mate/l:geben","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>136","<:mate/d:EP$<i>141","<:mate/d:MO$<i>142","<:mate/d:MO$<i>144","<:mate/d:OA$<i>146","xip/p:VERB","xip/l:geben","<>:xip/c:VERB#916-920$<i>141","<:xip/d:VMOD$<i>137","<:xip/d:OBJ$<i>138","<:xip/d:SUBJ$<i>138","xip/d:VMAIN","<:xip/d:SUBJ$<i>141","<:xip/d:VMOD$<i>144","<:xip/d:OBJ$<i>146"],["s:es","i:es","_141#921-923","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:EP$<i>140","xip/p:PRON","xip/l:es","<>:xip/c:PRON#921-923$<i>142","<>:xip/c:NP#921-923$<i>142<b>2",">:xip/d:SUBJ$<i>140"],["s:in","i:in","_142#924-926","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>140","<:mate/d:NK$<i>143","xip/p:PREP","xip/l:in","<>:xip/c:PREP#924-926$<i>143","<>:xip/c:PP#924-935$<i>144<b>2"],["s:Norwegen","i:norwegen","_143#927-935","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Norwegen","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#927-935$<i>144","tt/l:Norwegen","tt/p:NE","mate/l:norwegen","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>142","xip/p:NOUN","xip/l:Norwegen","<>:xip/c:NOUN#927-935$<i>144","<>:xip/c:NP#927-935$<i>144<b>3","<>:xip/c:NPA#927-935$<i>144<b>4","xip/d:LOC"],["s:noch","i:noch","_144#936-940","opennlp/p:ADV","cnx/l:noch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:noch","tt/p:ADV","tt/p:KON","mate/l:noch","mate/p:ADV",">:mate/d:MO$<i>140","xip/p:ADV","xip/l:noch","<>:xip/c:ADV#936-940$<i>145",">:xip/d:VMOD$<i>140"],["s:andere","i:andere","_145#941-947","opennlp/p:ADJA","cnx/l:andere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:ander","tt/p:ADJA","mate/l:anderer","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","mate/m:degree:pos",">:mate/d:NK$<i>146","xip/p:ADJ","xip/l:andere","<>:xip/c:ADJ#941-947$<i>146","<>:xip/c:NP#941-952$<i>147<b>2","<>:xip/c:NPA#941-952$<i>147<b>3","<>:xip/c:AP#941-947$<i>146<b>4",">:xip/d:NMOD$<i>146"],["s:Orte","i:orte","_146#948-952","opennlp/p:NN","cnx/l:ort","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/c:np#948-952$<i>147","tt/l:Ort","tt/p:NN","mate/l:ort","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*","<:mate/d:NK$<i>145",">:mate/d:OA$<i>140","<:mate/d:RC$<i>149","xip/p:NOUN","xip/l:Ort","<>:xip/c:NOUN#948-952$<i>147","<:xip/d:NMOD$<i>145",">:xip/d:OBJ$<i>140"],["s:die","i:die","_147#954-957","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*",">:mate/d:SB$<i>149","xip/p:DET","xip/l:die","<>:xip/c:NP#954-966$<i>150","<>:xip/c:DET#954-957$<i>148",">:xip/d:DETERM$<i>149"],["s:Å","i:å","_148#958-959","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#958-959$<i>149","tt/p:NN","tt/p:NE","mate/l:å","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:*",">:mate/d:MO$<i>149","xip/p:ADV","xip/l:å","<>:xip/c:ADV#958-959$<i>149","<>:xip/c:AP#958-966$<i>150<b>1",">:xip/d:ADJMOD$<i>149"],["s:heißen","i:heißen","_149#960-966","opennlp/p:VVFIN","cnx/l:heissen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:heißen","tt/p:VVINF","tt/p:VVFIN","mate/l:heißen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>147","<:mate/d:MO$<i>148",">:mate/d:RC$<i>146","xip/p:ADJ","xip/l:heiß","<>:xip/c:ADJ#960-966$<i>150","<:xip/d:DETERM$<i>147","<:xip/d:ADJMOD$<i>148"],["s:Auch","i:auch","_150#968-972","<>:s#968-1019$<i>160","opennlp/p:ADV","cnx/l:auch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:auch","tt/p:ADV","mate/l:auch","mate/p:ADV",">:mate/d:MO$<i>151","xip/p:ADV","xip/l:auch","<>:xip/c:TOP#968-1129$<i>176","<>:xip/c:MC#968-1005$<i>157<b>1","<>:xip/c:ADV#968-972$<i>151",">:xip/d:VMOD$<i>153"],["s:in","i:in","_151#973-975","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR","<:mate/d:MO$<i>150",">:mate/d:MO$<i>153","<:mate/d:NK$<i>152","xip/p:PREP","xip/l:in","<>:xip/c:PP#973-984$<i>153<b>2","<>:xip/c:PREP#973-975$<i>152"],["s:Schweden","i:schweden","_152#976-984","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Schweden","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#976-984$<i>153","tt/l:Schweden","tt/p:NE","tt/l:Schwede","tt/p:NN","mate/l:schweden","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>151","xip/p:NOUN","xip/l:Schweden","<>:xip/c:NP#976-984$<i>153<b>3","<>:xip/c:NPA#976-984$<i>153<b>4","<>:xip/c:NOUN#976-984$<i>153","xip/d:LOC"],["s:gibt","i:gibt","_153#985-989","opennlp/p:VVFIN","cnx/l:geben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:geben","tt/p:VVFIN","mate/l:geben","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>151","<:mate/d:EP$<i>154","<:mate/d:OA$<i>156","xip/p:VERB","xip/l:geben","<>:xip/c:VERB#985-989$<i>154","<:xip/d:VMOD$<i>150","xip/d:VMAIN","<:xip/d:SUBJ$<i>154","<:xip/d:OBJ$<i>156"],["s:es","i:es","_154#990-992","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:EP$<i>153","xip/p:PRON","xip/l:es","<>:xip/c:NP#990-992$<i>155<b>2","<>:xip/c:PRON#990-992$<i>155",">:xip/d:SUBJ$<i>153"],["s:mehrere","i:mehrere","_155#993-1000","opennlp/p:PIAT","cnx/l:mehrere","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:mehrere","tt/p:PIAT","mate/l:mehrere","mate/p:PIAT","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>156","xip/p:ADJ","xip/l:mehrere","<>:xip/c:NP#993-1005$<i>157<b>2","<>:xip/c:NPA#993-1005$<i>157<b>3","<>:xip/c:AP#993-1000$<i>156<b>4","<>:xip/c:ADJ#993-1000$<i>156",">:xip/d:NMOD$<i>156"],["s:Orte","i:orte","_156#1001-1005","opennlp/p:NN","cnx/l:ort","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/c:np#1001-1005$<i>157","tt/l:Ort","tt/p:NN","mate/l:ort","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>155",">:mate/d:OA$<i>153","<:mate/d:RC$<i>159","xip/p:NOUN","xip/l:Ort","<>:xip/c:NOUN#1001-1005$<i>157","<:xip/d:NMOD$<i>155",">:xip/d:OBJ$<i>153"],["s:die","i:die","_157#1007-1010","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:SB$<i>159","xip/p:PRON","xip/l:die","<>:xip/c:PRON#1007-1010$<i>158","<>:xip/c:MC#1007-1025$<i>162<b>1","<>:xip/c:NP#1007-1010$<i>158<b>2",">:xip/d:SUBJ$<i>159"],["s:Å","i:å","_158#1011-1012","opennlp/p:ADJA","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1011-1012$<i>159","tt/p:NN","tt/p:NE","mate/l:å","mate/p:PPER","mate/m:case:nom","mate/m:number:pl","mate/m:gender:masc",">:mate/d:MO$<i>159","xip/p:ADV","xip/l:å","<>:xip/c:ADV#1011-1012$<i>159",">:xip/d:VMOD$<i>159"],["s:heißen","i:heißen","_159#1013-1019","opennlp/p:ADJA","cnx/l:heissen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:heißen","tt/p:VVFIN","mate/l:heißen","mate/p:VVFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>157","<:mate/d:MO$<i>158",">:mate/d:RC$<i>156","xip/p:VERB","xip/l:heißen","<>:xip/c:VERB#1013-1019$<i>160","<:xip/d:SUBJ$<i>157","<:xip/d:VMOD$<i>158","xip/d:VMAIN","<:xip/d:OBJ$<i>160","<:xip/d:VMOD$<i>161"],["s:Das","i:das","_160#1020-1023","<>:s#1020-1129$<i>176","<>:p#1020-1129$<i>176","opennlp/p:ART","cnx/l:das","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","tt/p:PDS","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>161","xip/p:PRON","xip/l:das","<>:xip/c:NP#1020-1023$<i>161<b>2","<>:xip/c:PRON#1020-1023$<i>161",">:xip/d:OBJ$<i>159"],["s:Å","i:å","_161#1024-1025","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1024-1025$<i>162","tt/p:NN","tt/p:NE","mate/l:å","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>160",">:mate/d:SB$<i>162","xip/p:ADV","xip/l:å","<>:xip/c:ADV#1024-1025$<i>162",">:xip/d:VMOD$<i>159"],["s:besteht","i:besteht","_162#1026-1033","opennlp/p:VVFIN","cnx/l:bestehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:bestehen","tt/p:VVFIN","mate/l:bestehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>161","<:mate/d:OP$<i>163","xip/p:VERB","xip/l:bestehen","<>:xip/c:MC#1026-1129$<i>176<b>1","<>:xip/c:VERB#1026-1033$<i>163","xip/d:VMAIN","<:xip/d:OBJ$<i>165","<:xip/d:SUBJ$<i>166","<:xip/d:OBJ$<i>171"],["s:aus","i:aus","_163#1034-1037","opennlp/p:APPR","cnx/l:aus","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:aus","tt/p:APPR","mate/l:aus","mate/p:APPR",">:mate/d:OP$<i>162","<:mate/d:NK$<i>165","xip/p:PREP","xip/l:aus","<>:xip/c:PP#1034-1052$<i>166<b>2","<>:xip/c:PREP#1034-1037$<i>164","<:xip/d:PLINK$<i>165"],["s:dem","i:dem","_164#1038-1041","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>165","xip/p:DET","xip/l:der","<>:xip/c:DET#1038-1041$<i>165","<>:xip/c:NP#1038-1052$<i>166<b>3",">:xip/d:DETERM$<i>165"],["s:Buchstaben","i:buchstaben","_165#1042-1052","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1042-1052$<i>166","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>164",">:mate/d:NK$<i>163","<:mate/d:NK$<i>166","xip/p:NOUN","xip/l:Buchstabe","<>:xip/c:NOUN#1042-1052$<i>166","<>:xip/c:NPA#1042-1052$<i>166<b>4","<:xip/d:DETERM$<i>164",">:xip/d:OBJ$<i>162",">:xip/d:PLINK$<i>163"],["s:A","i:a","_166#1053-1054","opennlp/p:NE","cnx/l:A","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1053-1054$<i>167","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>165","<:mate/d:CD$<i>167","xip/p:SYMBOL","xip/l:A","<>:xip/c:SYMBOL#1053-1054$<i>167","<>:xip/c:NP#1053-1054$<i>167<b>2","<>:xip/c:NPA#1053-1054$<i>167<b>3","<>:xip/c:NOUN#1053-1054$<i>167<b>4",">:xip/d:SUBJ$<i>162","<:xip/d:COORD$<i>167"],["s:und","i:und","_167#1055-1058","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>166","<:mate/d:CJ$<i>171","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#1055-1058$<i>168",">:xip/d:COORD$<i>166",">:xip/d:COORD$<i>171"],["s:einem","i:einem","_168#1059-1064","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>171","xip/p:DET","xip/l:ein","<>:xip/c:NP#1059-1092$<i>172<b>2","<>:xip/c:DET#1059-1064$<i>169",">:xip/d:DETERM$<i>171"],["s:kleinen","i:kleinen","_169#1065-1072","opennlp/p:ADJA","cnx/l:klein","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#1065-1092$<i>172","tt/l:klein","tt/p:ADJA","mate/l:klein","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:MO$<i>170","xip/p:ADJ","xip/l:klein","<>:xip/c:ADJ#1065-1072$<i>170","<>:xip/c:NPA#1065-1092$<i>172<b>3","<>:xip/c:AP#1065-1072$<i>170<b>4",">:xip/d:NMOD$<i>171"],["s:übergeschriebenen","i:übergeschriebenen","_170#1073-1090","opennlp/p:NN","cnx/l:über","cnx/l:geschrieben","cnx/p:A","cnx/syn:@PREMOD","tt/p:ADJA","mate/l:übergeschrieben","mate/p:ADJA","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos","<:mate/d:MO$<i>169",">:mate/d:NK$<i>171","xip/p:ADJ","xip/l:über","xip/l:schreiben","xip/l:überschreiben","<>:xip/c:AP#1073-1090$<i>171<b>4","<>:xip/c:ADJ#1073-1090$<i>171",">:xip/d:NMOD$<i>171"],["s:O","i:o","_171#1091-1092","opennlp/p:NE","cnx/l:O","cnx/p:N","cnx/syn:@NH","tt/l:O","tt/p:NN","mate/l:O","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>168","<:mate/d:NK$<i>170",">:mate/d:CJ$<i>167","<:mate/d:RC$<i>175","xip/p:SYMBOL","xip/l:O","<>:xip/c:NOUN#1091-1092$<i>172<b>4","<>:xip/c:SYMBOL#1091-1092$<i>172","<:xip/d:COORD$<i>167","<:xip/d:DETERM$<i>168","<:xip/d:NMOD$<i>169","<:xip/d:NMOD$<i>170",">:xip/d:OBJ$<i>162"],["s:welches","i:welches","_172#1094-1101","opennlp/p:PRELS","cnx/l:welcher","cnx/p:PRON","cnx/syn:@NH","tt/l:welche","tt/p:PWAT","mate/l:welcher","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:SB$<i>175","xip/p:PRON","xip/l:welch","<>:xip/c:PRON#1094-1101$<i>173","<>:xip/c:SC#1094-1128$<i>176","<>:xip/c:NP#1094-1101$<i>173<b>1",">:xip/d:SUBJ$<i>175"],["s:die","i:die","_173#1102-1105","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>174","xip/p:DET","xip/l:die","<>:xip/c:DET#1102-1105$<i>174","<>:xip/c:NP#1102-1119$<i>175<b>1",">:xip/d:DETERM$<i>174"],["s:Vokalqualität","i:vokalqualität","_174#1106-1119","opennlp/p:NN","cnx/l:vokal","cnx/l:qualität","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1106-1119$<i>175","tt/p:NN","mate/l:vokalqualität","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>173",">:mate/d:OA$<i>175","xip/p:NOUN","xip/l:Vokal","xip/l:Qualität","xip/l:Vokalqualität","<>:xip/c:NPA#1106-1119$<i>175<b>2","<>:xip/c:NOUN#1106-1119$<i>175","<:xip/d:DETERM$<i>173",">:xip/d:OBJ$<i>175"],["s:andeutet","i:andeutet","_175#1120-1128","opennlp/p:VVPP","cnx/l:andeuten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:andeuten","tt/p:VVFIN","mate/l:andeuten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>172","<:mate/d:OA$<i>174",">:mate/d:RC$<i>171","xip/p:VERB","xip/l:andeuten","<>:xip/c:VERB#1120-1128$<i>176","<:xip/d:SUBJ$<i>172","<:xip/d:OBJ$<i>174","xip/d:VMAIN"],["s:Im","i:im","_176#1130-1132","<>:s#1130-1260$<i>199","<>:p#1130-1260$<i>199","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>178","<:mate/d:NK$<i>177","xip/p:PREP","xip/l:in","<>:xip/c:PREP#1130-1132$<i>177","<>:xip/c:TOP#1130-1260$<i>199","<>:xip/c:MC#1130-1202$<i>190<b>1","<>:xip/c:PP#1130-1145$<i>178<b>2"],["s:Schwedischen","i:schwedischen","_177#1133-1145","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","cnx/l:Schwedisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1133-1145$<i>178","tt/l:Schwedische","tt/p:NN","mate/l:schwedisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>176","xip/p:NOUN","xip/l:schwedisch","<>:xip/c:NOUN#1133-1145$<i>178","<>:xip/c:NP#1133-1145$<i>178<b>3","<>:xip/c:NPA#1133-1145$<i>178<b>4"],["s:steht","i:steht","_178#1146-1151","opennlp/p:VVFIN","cnx/l:stehen","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:stehen","tt/p:VVFIN","mate/l:stehen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>176","<:mate/d:SB$<i>180","<:mate/d:MO$<i>181","<:mate/d:PAR$<i>192","xip/p:VERB","xip/l:stehen","<>:xip/c:VERB#1146-1151$<i>179","xip/d:VMAIN","<:xip/d:SUBJ$<i>180"],["s:der","i:der","_179#1152-1155","opennlp/p:ART","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>180","xip/p:DET","xip/l:der","<>:xip/c:NP#1152-1165$<i>181<b>2","<>:xip/c:DET#1152-1155$<i>180",">:xip/d:DETERM$<i>180"],["s:Buchstabe","i:buchstabe","_180#1156-1165","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1156-1165$<i>181","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>179",">:mate/d:SB$<i>178","xip/p:NOUN","xip/l:Buchstabe","<>:xip/c:NOUN#1156-1165$<i>181","<>:xip/c:NPA#1156-1165$<i>181<b>3","<:xip/d:DETERM$<i>179",">:xip/d:SUBJ$<i>178"],["s:nach","i:nach","_181#1166-1170","opennlp/p:APPR","cnx/l:nach","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:nach","tt/p:APPR","mate/l:nach","mate/p:APPR",">:mate/d:MO$<i>178","<:mate/d:NK$<i>183","<:mate/d:CD$<i>184","xip/p:PREP","xip/l:nach","<>:xip/c:PREP#1166-1170$<i>182","<>:xip/c:PP#1166-1176$<i>184<b>2"],["s:dem","i:dem","_182#1171-1174","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>183","xip/p:DET","xip/l:der","<>:xip/c:NP#1171-1176$<i>184<b>3","<>:xip/c:DET#1171-1174$<i>183",">:xip/d:DETERM$<i>183"],["s:z","i:z","_183#1175-1176","opennlp/p:ADV","cnx/l:z","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1175-1176$<i>184","tt/l:z","tt/p:NE","mate/l:z","mate/p:TRUNC","<:mate/d:NK$<i>182",">:mate/d:NK$<i>181","xip/p:SYMBOL","xip/l:z","<>:xip/c:SYMBOL#1175-1176$<i>184","<>:xip/c:NPA#1175-1176$<i>184<b>4","<>:xip/c:NOUN#1175-1176$<i>184<b>5","<:xip/d:DETERM$<i>182"],["s:und","i:und","_184#1177-1180","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>181","<:mate/d:CJ$<i>185","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#1177-1180$<i>185"],["s:vor","i:vor","_185#1181-1184","opennlp/p:APPR","cnx/l:vor","cnx/p:ADV","cnx/syn:@ADVL","tt/l:vor","tt/p:APPR","mate/l:vor","mate/p:APPR",">:mate/d:CJ$<i>184","<:mate/d:NK$<i>187","xip/p:PREP","xip/l:vor","<>:xip/c:PREP#1181-1184$<i>186","<>:xip/c:PP#1181-1190$<i>188<b>2"],["s:dem","i:dem","_186#1185-1188","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>187","xip/p:DET","xip/l:der","<>:xip/c:DET#1185-1188$<i>187","<>:xip/c:NP#1185-1190$<i>188<b>3",">:xip/d:DETERM$<i>187"],["s:ä","i:ä","_187#1189-1190","opennlp/p:NN","cnx/l:ä","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1189-1190$<i>188","tt/l:ä","tt/p:XY","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>186",">:mate/d:NK$<i>185","<:mate/d:MNR$<i>188","xip/p:SYMBOL","xip/l:ä","<>:xip/c:SYMBOL#1189-1190$<i>188","<>:xip/c:NPA#1189-1190$<i>188<b>4","<>:xip/c:NOUN#1189-1190$<i>188<b>5","<:xip/d:DETERM$<i>186"],["s:im","i:im","_188#1191-1193","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MNR$<i>187","<:mate/d:NK$<i>189","xip/p:PREP","xip/l:in","<>:xip/c:PREP#1191-1193$<i>189","<>:xip/c:PP#1191-1202$<i>190<b>2"],["s:Alphabet","i:alphabet","_189#1194-1202","opennlp/p:NN","cnx/l:alphabet","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1194-1202$<i>190","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>188","xip/p:NOUN","xip/l:Alphabet","<>:xip/c:NOUN#1194-1202$<i>190","<>:xip/c:NP#1194-1202$<i>190<b>3","<>:xip/c:NPA#1194-1202$<i>190<b>4"],["s:im","i:im","_190#1204-1206","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:MO$<i>192","<:mate/d:NK$<i>191","xip/p:PREP","xip/l:in","<>:xip/c:PREP#1204-1206$<i>191","<>:xip/c:MC#1204-1259$<i>199<b>1","<>:xip/c:PP#1204-1216$<i>192<b>2"],["s:Dänischen","i:dänischen","_191#1207-1216","opennlp/p:NN","cnx/l:Dänisch","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1207-1216$<i>192","tt/l:Dänische","tt/p:NN","mate/l:dänisch","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>190","xip/p:NOUN","xip/l:dänisch","<>:xip/c:NOUN#1207-1216$<i>192","<>:xip/c:NP#1207-1216$<i>192<b>3","<>:xip/c:NPA#1207-1216$<i>192<b>4"],["s:ist","i:ist","_192#1217-1220","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>190",">:mate/d:PAR$<i>178","<:mate/d:SB$<i>193","<:mate/d:PD$<i>196","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#1217-1220$<i>193","xip/d:VMAIN","<:xip/d:PRED$<i>193","<:xip/d:SUBJ$<i>196"],["s:es","i:es","_193#1221-1223","opennlp/p:PPER","cnx/l:es","cnx/p:PRON","cnx/syn:@NH","tt/l:es","tt/p:PPER","mate/l:es","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:person:3",">:mate/d:SB$<i>192","xip/p:PRON","xip/l:es","<>:xip/c:PRON#1221-1223$<i>194","<>:xip/c:NP#1221-1223$<i>194<b>2",">:xip/d:PRED$<i>192"],["s:der","i:der","_194#1224-1227","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>196","xip/p:DET","xip/l:der","<>:xip/c:DET#1224-1227$<i>195","<>:xip/c:NP#1224-1244$<i>197<b>2",">:xip/d:DETERM$<i>196"],["s:letzte","i:letzte","_195#1228-1234","opennlp/p:ADJA","cnx/l:letzt","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#1228-1244$<i>197","tt/l:letzt","tt/p:ADJA","mate/l:letzter","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>196","xip/p:ADJ","xip/l:letzt","<>:xip/c:ADJ#1228-1234$<i>196","<>:xip/c:NPA#1228-1244$<i>197<b>3","<>:xip/c:AP#1228-1234$<i>196<b>4",">:xip/d:NMOD$<i>196"],["s:Buchstabe","i:buchstabe","_196#1235-1244","opennlp/p:NN","cnx/l:buchstabe","cnx/p:N","cnx/syn:@NH","tt/l:Buchstabe","tt/p:NN","mate/l:buchstabe","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>194","<:mate/d:NK$<i>195",">:mate/d:PD$<i>192","<:mate/d:AG$<i>198","xip/p:NOUN","xip/l:Buchstabe","<>:xip/c:NOUN#1235-1244$<i>197","<:xip/d:DETERM$<i>194","<:xip/d:NMOD$<i>195",">:xip/d:SUBJ$<i>192","<:xip/d:NMOD$<i>198"],["s:des","i:des","_197#1245-1248","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>198","xip/p:DET","xip/l:der","<>:xip/c:DET#1245-1248$<i>198","<>:xip/c:NP#1245-1259$<i>199<b>2",">:xip/d:DETERM$<i>198"],["s:Alphabetes","i:alphabetes","_198#1249-1259","opennlp/p:NN","cnx/l:alphabetes","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1249-1259$<i>199","tt/l:Alphabet","tt/p:NN","mate/l:alphabet","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>197",">:mate/d:AG$<i>196","xip/p:NOUN","xip/l:Alphabet","<>:xip/c:NOUN#1249-1259$<i>199","<>:xip/c:NPA#1249-1259$<i>199<b>3","<:xip/d:DETERM$<i>197",">:xip/d:NMOD$<i>196"],["s:In","i:in","_199#1261-1263","<>:s#1261-1399$<i>222","<>:p#1261-1552$<i>245","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>208","<:mate/d:NK$<i>200","xip/p:PREP","xip/l:in","<>:xip/c:TOP#1261-1399$<i>222","<>:xip/c:MC#1261-1296$<i>206<b>1","<>:xip/c:PP#1261-1272$<i>201<b>2","<>:xip/c:PREP#1261-1263$<i>200"],["s:Dänemark","i:dänemark","_200#1264-1272","opennlp/p:NE","cnx/l:Dänemark","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#1264-1272$<i>201","tt/l:Dänemark","tt/p:NE","mate/l:dänemark","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>199","xip/p:NOUN","xip/l:Dänemark","<>:xip/c:NP#1264-1272$<i>201<b>3","<>:xip/c:NPA#1264-1272$<i>201<b>4","<>:xip/c:NOUN#1264-1272$<i>201","xip/d:LOC"],["s:ist","i:ist","_201#1273-1276","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@AUX","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>204","<:mate/d:OC$<i>209","<:mate/d:CJ$<i>214","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#1273-1276$<i>202","xip/d:VMAIN"],["s:der","i:der","_202#1277-1280","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>204","xip/p:DET","xip/l:der","<>:xip/c:NP#1277-1296$<i>206<b>2","<>:xip/c:DET#1277-1280$<i>203"],["s:alte","i:alte","_203#1281-1285","opennlp/p:ADJA","cnx/l:alt","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#1281-1296$<i>206","tt/l:alt","tt/p:ADJA","mate/l:alt","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>204","xip/p:ADJ","xip/l:alt","<>:xip/c:NPA#1281-1296$<i>206<b>3","<>:xip/c:AP#1281-1285$<i>204<b>4","<>:xip/c:ADJ#1281-1285$<i>204"],["s:Digraph","i:digraph","_204#1286-1293","opennlp/p:NN","cnx/l:digraph","cnx/p:N","cnx/syn:@PREMOD","tt/l:Digraph","tt/p:NN","mate/l:digraph","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>202","<:mate/d:NK$<i>203",">:mate/d:SB$<i>201","<:mate/d:NK$<i>205","xip/p:NOUN","xip/l:Digraph","<>:xip/c:NOUN#1286-1293$<i>205","<>:xip/c:NOUN#1286-1296$<i>206<b>4"],["s:Aa","i:aa","_205#1294-1296","opennlp/p:NE","cnx/l:aa","cnx/p:N","cnx/syn:@NH","tt/p:NE","tt/p:NN","mate/l:aa","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>204","xip/p:NOUN","xip/l:Aa","<>:xip/c:NOUN#1294-1296$<i>206"],["s:durch","i:durch","_206#1297-1302","opennlp/p:APPR","cnx/l:durch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR",">:mate/d:MO$<i>208","<:mate/d:NK$<i>207","xip/p:PREP","xip/l:durch","<>:xip/c:PREP#1297-1302$<i>207"],["s:Å","i:å","_207#1303-1304","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1303-1304$<i>208","tt/p:NN","tt/p:NE","mate/l:å","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>206","xip/p:ADV","xip/l:å","<>:xip/c:ADV#1303-1304$<i>208"],["s:ersetzt","i:ersetzt","_208#1305-1312","opennlp/p:VVPP","cnx/l:ersetzen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:ersetzen","tt/p:VVPP","mate/l:ersetzen","mate/p:VVPP","<:mate/d:MO$<i>199","<:mate/d:MO$<i>206",">:mate/d:OC$<i>209","xip/p:VERB","xip/l:ersetzen","<>:xip/c:VERB#1305-1312$<i>209"],["s:worden","i:worden","_209#1313-1319","opennlp/p:VAPP","cnx/l:werden","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@AUX","tt/l:werden","tt/p:VAPP","mate/l:werden","mate/p:VAPP","<:mate/d:OC$<i>208",">:mate/d:OC$<i>201","xip/p:VERB","xip/l:werden","<>:xip/c:VERB#1313-1319$<i>210"],["s:in","i:in","_210#1321-1323","opennlp/p:APPR","cnx/l:in","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:in","tt/p:APPR","mate/l:in","mate/p:APPR",">:mate/d:MO$<i>214","<:mate/d:NK$<i>211","xip/p:PREP","xip/l:in","<>:xip/c:MC#1321-1398$<i>222<b>1","<>:xip/c:PP#1321-1334$<i>212<b>2","<>:xip/c:PREP#1321-1323$<i>211"],["s:Eigennamen","i:eigennamen","_211#1324-1334","opennlp/p:NN","cnx/l:eigen","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1324-1334$<i>212","tt/l:Eigenname","tt/p:NN","mate/l:eigenname","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>210","<:mate/d:CD$<i>212","xip/p:NOUN","xip/l:eignen","xip/l:Name","xip/l:Eignenname","<>:xip/c:NP#1324-1334$<i>212<b>3","<>:xip/c:NPA#1324-1334$<i>212<b>4","<>:xip/c:NOUN#1324-1334$<i>212","<:xip/d:COORD$<i>212"],["s:und","i:und","_212#1335-1338","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>211","<:mate/d:CJ$<i>213","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#1335-1338$<i>213",">:xip/d:COORD$<i>211",">:xip/d:COORD$<i>213"],["s:Ortsnamen","i:ortsnamen","_213#1339-1348","opennlp/p:NN","cnx/l:ort","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1339-1348$<i>214","tt/l:Ortsname","tt/p:NN","mate/l:ortsname","mate/p:NN","mate/m:case:dat","mate/m:number:pl","mate/m:gender:masc",">:mate/d:CJ$<i>212","xip/p:NOUN","xip/l:Ort","xip/l:Name","xip/l:Ortsname","<>:xip/c:NP#1339-1348$<i>214<b>2","<>:xip/c:NPA#1339-1348$<i>214<b>3","<>:xip/c:NOUN#1339-1348$<i>214","<:xip/d:COORD$<i>212",">:xip/d:VMOD$<i>214"],["s:findet","i:findet","_214#1349-1355","opennlp/p:VVFIN","cnx/l:finden","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:finden","tt/p:VVFIN","mate/l:finden","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:MO$<i>210",">:mate/d:CJ$<i>201","<:mate/d:OA$<i>215","<:mate/d:MO$<i>216","<:mate/d:MO$<i>218","<:mate/d:OG$<i>221","xip/p:VERB","xip/l:finden","<>:xip/c:VERB#1349-1355$<i>215","<:xip/d:VMOD$<i>213","xip/d:VMAIN","<:xip/d:REFLEX$<i>215","<:xip/d:VMOD$<i>217","<:xip/d:VMOD$<i>218","<:xip/d:SUBJ$<i>221"],["s:sich","i:sich","_215#1356-1360","opennlp/p:PRF","cnx/l:sich","cnx/p:PRON","cnx/syn:@NH","tt/l:er|es|sie","tt/p:PRF","mate/l:sich","mate/p:PRF","mate/m:case:acc","mate/m:number:sg","mate/m:person:3",">:mate/d:OA$<i>214","xip/p:PRON","xip/l:sich","<>:xip/c:NP#1356-1360$<i>216<b>2","<>:xip/c:PRON#1356-1360$<i>216",">:xip/d:REFLEX$<i>214"],["s:jedoch","i:jedoch","_216#1361-1367","opennlp/p:ADV","cnx/l:jedoch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:jedoch","tt/p:ADV","mate/l:jedoch","mate/p:ADV",">:mate/d:MO$<i>214","xip/p:CONJ","xip/l:jedoch","<>:xip/c:CONJ#1361-1367$<i>217"],["s:noch","i:noch","_217#1368-1372","opennlp/p:ADV","cnx/l:noch","cnx/p:ADV","cnx/syn:@ADVL","tt/l:noch","tt/p:ADV","mate/l:noch","mate/p:ADV",">:mate/d:MO$<i>218","xip/p:ADV","xip/l:noch","<>:xip/c:ADV#1368-1372$<i>218",">:xip/d:VMOD$<i>214"],["s:häufig","i:häufig","_218#1373-1379","opennlp/p:ADJD","cnx/l:häufig","cnx/p:A","cnx/syn:@NH","tt/l:häufig","tt/p:ADJD","mate/l:häufig","mate/p:ADJD","mate/m:degree:pos","<:mate/d:MO$<i>217",">:mate/d:MO$<i>214","xip/p:ADJ","xip/l:häufig","<>:xip/c:AP#1373-1379$<i>219<b>2","<>:xip/c:ADJ#1373-1379$<i>219",">:xip/d:VMOD$<i>214"],["s:die","i:die","_219#1380-1383","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>221","xip/p:DET","xip/l:die","<>:xip/c:NP#1380-1398$<i>222<b>2","<>:xip/c:DET#1380-1383$<i>220",">:xip/d:DETERM$<i>221"],["s:alte","i:alte","_220#1384-1388","opennlp/p:ADJA","cnx/l:alt","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#1384-1398$<i>222","tt/l:alt","tt/p:ADJA","mate/l:alt","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>221","xip/p:ADJ","xip/l:alt","<>:xip/c:NPA#1384-1398$<i>222<b>3","<>:xip/c:AP#1384-1388$<i>221<b>4","<>:xip/c:ADJ#1384-1388$<i>221",">:xip/d:NMOD$<i>221"],["s:Scheibung","i:scheibung","_221#1389-1398","opennlp/p:NN","cnx/l:scheibung","cnx/p:N","cnx/syn:@NH","tt/p:NN","mate/l:scheibung","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>219","<:mate/d:NK$<i>220",">:mate/d:OG$<i>214","xip/p:NOUN","xip/l:Scheibung","<>:xip/c:NOUN#1389-1398$<i>222","<:xip/d:DETERM$<i>219","<:xip/d:NMOD$<i>220",">:xip/d:SUBJ$<i>214"],["s:Ein","i:ein","_222#1400-1403","<>:s#1400-1552$<i>245","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>223","xip/p:DET","xip/l:ein","<>:xip/c:DET#1400-1403$<i>223","<>:xip/c:TOP#1400-1532$<i>244","<>:xip/c:MC#1400-1432$<i>228<b>1","<>:xip/c:NP#1400-1412$<i>224<b>2",">:xip/d:DETERM$<i>223"],["s:Kuriosum","i:kuriosum","_223#1404-1412","opennlp/p:NE","cnx/l:kuriosum","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1404-1412$<i>224","tt/l:Kuriosum","tt/p:NN","mate/l:kuriosum","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>222",">:mate/d:PD$<i>224","xip/p:NOUN","xip/l:Kuriosum","<>:xip/c:NOUN#1404-1412$<i>224","<>:xip/c:NPA#1404-1412$<i>224<b>3","<:xip/d:DETERM$<i>222",">:xip/d:SUBJ$<i>224"],["s:ist","i:ist","_224#1413-1416","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:PD$<i>223","<:mate/d:SB$<i>226","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#1413-1416$<i>225","<:xip/d:SUBJ$<i>223","xip/d:VMAIN","<:xip/d:PRED$<i>226"],["s:die","i:die","_225#1417-1420","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>226","xip/p:DET","xip/l:die","<>:xip/c:DET#1417-1420$<i>226","<>:xip/c:NP#1417-1426$<i>227<b>2",">:xip/d:DETERM$<i>226"],["s:Stadt","i:stadt","_226#1421-1426","opennlp/p:NN","cnx/l:stadt","cnx/p:N","cnx/syn:@PREMOD","<>:cnx/c:np#1421-1432$<i>228","tt/l:Stadt","tt/p:NN","mate/l:stadt","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>225",">:mate/d:SB$<i>224","<:mate/d:NK$<i>227","<:mate/d:RC$<i>232","xip/p:NOUN","xip/l:Stadt","<>:xip/c:NPA#1421-1426$<i>227<b>3","<>:xip/c:NOUN#1421-1426$<i>227","<:xip/d:DETERM$<i>225",">:xip/d:PRED$<i>224","<:xip/d:NMOD$<i>227"],["s:Århus","i:århus","_227#1427-1432","opennlp/p:NE","cnx/l:Århus","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","tt/p:VVINF","tt/p:NN","tt/p:VVFIN","tt/p:ADJD","tt/p:VVPP","mate/l:århus","mate/p:NE",">:mate/d:NK$<i>226","xip/p:NOUN","xip/l:Århus","<>:xip/c:NOUN#1427-1432$<i>228","<>:xip/c:NP#1427-1432$<i>228<b>2","<>:xip/c:NPA#1427-1432$<i>228<b>3","xip/d:LOC",">:xip/d:NMOD$<i>226"],["s:die","i:die","_228#1434-1437","opennlp/p:PRELS","cnx/l:die","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:PRELS","mate/l:der","mate/p:PRELS","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:SB$<i>232","xip/p:PRON","xip/l:die","<>:xip/c:PRON#1434-1437$<i>229","<>:xip/c:NP#1434-1437$<i>229<b>1","xip/d:THEMA"],["s:sich","i:sich","_229#1438-1442","opennlp/p:PRF","cnx/l:sich","cnx/p:PRON","cnx/syn:@NH","tt/l:er|es|sie","tt/p:PRF","mate/l:sich","mate/p:PRF","mate/m:case:acc","mate/m:number:sg","mate/m:person:3",">:mate/d:OA$<i>232","xip/p:PRON","xip/l:sich","<>:xip/c:PRON#1438-1442$<i>230","<>:xip/c:NP#1438-1442$<i>230<b>1"],["s:mit","i:mit","_230#1443-1446","opennlp/p:APPR","cnx/l:mit","cnx/p:ADV","cnx/syn:@ADVL","tt/l:mit","tt/p:APPR","mate/l:mit","mate/p:APPR",">:mate/d:MO$<i>232","<:mate/d:NK$<i>231","xip/p:PREP","xip/l:mit","<>:xip/c:PREP#1443-1446$<i>231"],["s:Å","i:å","_231#1447-1448","opennlp/p:NN","cnx/l:Å","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1447-1448$<i>232","tt/p:NE","tt/p:NN","mate/l:å","mate/p:PPER","mate/m:case:dat","mate/m:number:sg","mate/m:gender:*",">:mate/d:NK$<i>230","xip/p:ADV","xip/l:å","<>:xip/c:ADV#1447-1448$<i>232","<>:xip/c:MC#1447-1457$<i>233<b>1",">:xip/d:VMOD$<i>232"],["s:schreibt","i:schreibt","_232#1449-1457","opennlp/p:VVFIN","cnx/l:schreiben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:schreiben","tt/p:VVFIN","mate/l:schreiben","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>228","<:mate/d:OA$<i>229","<:mate/d:MO$<i>230",">:mate/d:RC$<i>226","<:mate/d:MO$<i>243","xip/p:VERB","xip/l:schreiben","<>:xip/c:VERB#1449-1457$<i>233","<:xip/d:VMOD$<i>231","xip/d:VMAIN"],["s:während","i:während","_233#1459-1466","opennlp/p:KOUS","cnx/l:während","cnx/p:CS","cnx/syn:@PREMARK","tt/l:während","tt/p:KOUS","mate/l:während","mate/p:KOUS",">:mate/d:CP$<i>243","xip/p:ADJ","xip/l:währen","<>:xip/c:ADJ#1459-1466$<i>234","<>:xip/c:MC#1459-1531$<i>244<b>1","<>:xip/c:AP#1459-1466$<i>234<b>2",">:xip/d:VMOD$<i>242"],["s:im","i:im","_234#1467-1469","opennlp/p:APPRART","tt/l:im","tt/p:APPRART","mate/l:in","mate/p:APPRART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:MO$<i>242","<:mate/d:NK$<i>235","xip/p:PREP","xip/l:in","<>:xip/c:PREP#1467-1469$<i>235","<>:xip/c:PP#1467-1475$<i>236<b>2"],["s:Namen","i:namen","_235#1470-1475","opennlp/p:NN","cnx/l:name","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1470-1475$<i>236","tt/l:Name","tt/p:NN","mate/l:name","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>234","<:mate/d:AG$<i>237","xip/p:NOUN","xip/l:Name","<>:xip/c:NP#1470-1475$<i>236<b>3","<>:xip/c:NPA#1470-1475$<i>236<b>4","<>:xip/c:NOUN#1470-1475$<i>236","<:xip/d:NMOD$<i>237"],["s:der","i:der","_236#1476-1479","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>237","xip/p:DET","xip/l:der","<>:xip/c:DET#1476-1479$<i>237","<>:xip/c:NP#1476-1491$<i>238<b>2",">:xip/d:DETERM$<i>237"],["s:Universität","i:universität","_237#1480-1491","opennlp/p:NN","cnx/l:universität","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1480-1491$<i>238","tt/l:Universität","tt/p:NN","mate/l:universität","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>236",">:mate/d:AG$<i>235","<:mate/d:AG$<i>239","xip/p:NOUN","xip/l:Universität","<>:xip/c:NOUN#1480-1491$<i>238","<>:xip/c:NPA#1480-1491$<i>238<b>3","<:xip/d:DETERM$<i>236",">:xip/d:NMOD$<i>235","<:xip/d:NMOD$<i>239"],["s:der","i:der","_238#1492-1495","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>239","xip/p:DET","xip/l:der","<>:xip/c:NP#1492-1501$<i>240<b>2","<>:xip/c:DET#1492-1495$<i>239",">:xip/d:DETERM$<i>239"],["s:Stadt","i:stadt","_239#1496-1501","opennlp/p:NN","cnx/l:stadt","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1496-1501$<i>240","tt/l:Stadt","tt/p:NN","mate/l:stadt","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>238",">:mate/d:AG$<i>237","xip/p:NOUN","xip/l:Stadt","<>:xip/c:NPA#1496-1501$<i>240<b>3","<>:xip/c:NOUN#1496-1501$<i>240","<:xip/d:DETERM$<i>238",">:xip/d:NMOD$<i>237","<:xip/d:NMOD$<i>241"],["s:der","i:der","_240#1502-1505","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>241","xip/p:DET","xip/l:der","<>:xip/c:DET#1502-1505$<i>241","<>:xip/c:NP#1502-1513$<i>242<b>2",">:xip/d:DETERM$<i>241"],["s:Digraph","i:digraph","_241#1506-1513","opennlp/p:NN","cnx/l:digraph","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#1506-1513$<i>242","tt/l:Digraph","tt/p:NN","mate/l:digraph","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>240",">:mate/d:SB$<i>243","xip/p:NOUN","xip/l:Digraph","<>:xip/c:NOUN#1506-1513$<i>242","<>:xip/c:NPA#1506-1513$<i>242<b>3","<:xip/d:DETERM$<i>240",">:xip/d:NMOD$<i>239"],["s:beibehalten","i:beibehalten","_242#1514-1525","opennlp/p:VVPP","cnx/l:beibehalten","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:beibehalten","tt/p:VVPP","mate/l:beibehalten","mate/p:VVPP","<:mate/d:MO$<i>234",">:mate/d:OC$<i>243","<:mate/d:MO$<i>245","xip/p:VERB","xip/l:beibehalten","<>:xip/c:VERB#1514-1525$<i>243","<:xip/d:VMOD$<i>233",">:xip/d:AUXIL$<i>243","xip/d:VMAIN"],["s:wurde","i:wurde","_243#1526-1531","opennlp/p:VAFIN","cnx/l:werden","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@AUX","tt/l:werden","tt/p:VAFIN","mate/l:werden","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:CP$<i>233","<:mate/d:SB$<i>241","<:mate/d:OC$<i>242",">:mate/d:MO$<i>232","xip/p:VERB","xip/l:werden","<>:xip/c:VERB#1526-1531$<i>244","<:xip/d:AUXIL$<i>242"],["s:Aarhus","i:aarhus","_244#1533-1539","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Aarhus","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#1533-1551$<i>246","tt/p:NE","mate/l:aarhus","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>245","xip/p:NOUN","xip/l:Aarhus","<>:xip/c:NOUN#1533-1539$<i>245","<>:xip/c:TOP#1533-1552$<i>245","<>:xip/c:NP#1533-1551$<i>246<b>1","<>:xip/c:NPA#1533-1551$<i>246<b>2","<>:xip/c:NOUN#1533-1551$<i>246<b>3"],["s:Universitet","i:universitet","_245#1540-1551","opennlp/p:NE","cnx/l:universitet","cnx/p:N","cnx/syn:@NH","tt/p:NE","mate/l:universitet","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>244",">:mate/d:MO$<i>242","xip/p:NOUN","xip/l:Universitet","<>:xip/c:NOUN#1540-1551$<i>246"]],"layerInfo":"opennlp/p=pos cnx/l=lemma cnx/p=pos cnx/m=msd cnx/c=const tt/p=pos tt/l=lemma mate/l=lemma mate/p=pos mate/m=msd mate/d=dep xip/l=lemma xip/p=pos xip/c=const xip/d=dep","foundries":"mate mate/morpho mate/dependency base base/sentences base/paragraphs connexor connexor/morpho connexor/phrase opennlp opennlp/morpho corenlp corenlp/namedentities corenlp/namedentities/ne_dewac_175m_600 corenlp/namedentities corenlp/namedentities/ne_hgc_175m_600 treetagger treetagger/morpho xip xip/morpho xip/constituency xip/dependency","name":"tokens"}],"pubDate":"20050328","ID":"WPD_AAA.00002","author":"ErikDunsing,Ninjamask,JakobVoss"}
diff --git a/src/test/resources/wiki/00002.json.gz b/src/test/resources/wiki/00002.json.gz
index 7b2c673..74879ad 100644
--- a/src/test/resources/wiki/00002.json.gz
+++ b/src/test/resources/wiki/00002.json.gz
Binary files differ
diff --git a/src/test/resources/wiki/00006.json b/src/test/resources/wiki/00006.json
index a21cbd2..a357734 100644
--- a/src/test/resources/wiki/00006.json
+++ b/src/test/resources/wiki/00006.json
@@ -1 +1 @@
-{"author":"192.168.O.1,Srittau,Peterlustig","pubDate":"20050328","corpusID":"WPD","textClass":"freizeit-unterhaltung reisen","title":"A Bathing Ape","ID":"WPD_AAA.00006","fields":[{"primaryData":"A Bathing Ape oder einfach Bape ist eine japanisches Modeunternehmen. Das Unternehmen hat sich auf urbane Streetwear spezialisiert. Das Logo des Unternehmens und die verwendeten Motive sind dem Film Planet der Affen entlehnt. A Bathing Ape ist bekannt dafür, durch limitierte Auflagen seiner Produkte für steigende Nachfrage zu sorgen. Der 32-jährige Designer Nigo bekam von dem Unternehmen einen Lamborghini, einen Aston Martin, eine Bentley Continental Mulliner Edition, einen Ferrari 360 Modena und 30 Millionen US-Dollar, damit er als Chef-Designer bei A Bathing Ape arbeitet."},{"name":"tokens","tokenization":"opennlp#tokens","foundries":"xip xip/morpho xip/constituency xip/dependency mate mate/morpho mate/dependency opennlp opennlp/morpho treetagger treetagger/morpho base base/sentences base/paragraphs corenlp corenlp/namedentities corenlp/namedentities/ne_dewac_175m_600 corenlp/namedentities corenlp/namedentities/ne_hgc_175m_600 connexor connexor/morpho connexor/syntax connexor/phrase","data":[["s:A","i:a","_0#0-1","-:tokens$<i>84","-:sentences$<i>4","-:paragraphs$<i>1"],["s:Bathing","i:bathing","_1#2-9","opennlp/p:NE","cnx/l:Bathing","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#2-13$<i>3","tt/p:NE","mate/l:bathing","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>2","xip/p:ADJ","xip/l:bathing","<>:xip/c:NP#2-9$<i>2","<>:xip/c:AP#2-9$<i>2<b>1","<>:xip/c:ADJ#2-9$<i>2","xip/d:LOC",">:xip/d:PRED$<i>6","<:xip/d:NMOD$<i>2"],["s:Ape","i:ape","_2#10-13","opennlp/p:NE","cnx/l:Ape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:ape","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>1",">:mate/d:SB$<i>6","<:mate/d:CD$<i>3","xip/p:NOUN","xip/l:Ape","<>:xip/c:NP#10-13$<i>3","<>:xip/c:NPA#10-13$<i>3<b>1","<>:xip/c:NOUN#10-13$<i>3",">:xip/d:NMOD$<i>1"],["s:oder","i:oder","_3#14-18","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>2","<:mate/d:CJ$<i>5","xip/p:CONJ","xip/l:oder","<>:xip/c:INS#14-26$<i>5","<>:xip/c:CONJ#14-18$<i>4"],["s:einfach","i:einfach","_4#19-26","opennlp/p:ADV","cnx/l:einfach","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#19-31$<i>6","tt/l:einfach","tt/p:ADJD","mate/l:einfach","mate/p:ADV","mate/m:degree:pos",">:mate/d:MO$<i>5","xip/p:ADJ","xip/l:ein}fach","<>:xip/c:AP#19-26$<i>5<b>1","<>:xip/c:ADJ#19-26$<i>5"],["s:Bape","i:bape","_5#27-31","opennlp/p:NE","cnx/l:Bape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NN","tt/p:NE","mate/l:bape","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:MO$<i>4",">:mate/d:CJ$<i>3","xip/p:NOUN","xip/l:Bape","<>:xip/c:NOUN#27-31$<i>6","<>:xip/c:NP#27-31$<i>6","<>:xip/c:NPA#27-31$<i>6<b>1",">:xip/d:PRED$<i>6"],["s:ist","i:ist","_6#32-35","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>2","<:mate/d:PD$<i>9","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#32-35$<i>7","<:xip/d:PRED$<i>1","<:xip/d:PRED$<i>5","xip/d:VMAIN"],["s:eine","i:eine","_7#36-40","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>9","xip/p:DET","xip/l:ein","<>:xip/c:DET#36-40$<i>8"],["s:japanisches","i:japanisches","_8#41-52","opennlp/p:ADJA","cnx/l:japanisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#41-68$<i>10","tt/l:japanisch","tt/p:ADJA","mate/l:japanisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>9","xip/p:ADJ","xip/l:japanisch","<>:xip/c:ADJ#41-52$<i>9","<>:xip/c:NP#41-68$<i>10","<>:xip/c:NPA#41-68$<i>10<b>1","<>:xip/c:AP#41-52$<i>9<b>2",">:xip/d:NMOD$<i>9"],["s:Modeunternehmen","i:modeunternehmen","_9#53-68","opennlp/p:NN","cnx/l:mode","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","tt/l:Modeunternehmen","tt/p:NN","mate/l:modeunternehmen","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>7","<:mate/d:NK$<i>8",">:mate/d:PD$<i>6","xip/p:NOUN","xip/l:Mode","xip/l:unternehmen","xip/l:Modeunternehmen","<>:xip/c:NOUN#53-68$<i>10","<:xip/d:NMOD$<i>8","xip/d:THEMA"],["s:Das","i:das","_10#70-73","<>:s#70-131$<i>18","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>11","xip/p:DET","xip/l:das","<>:xip/c:TOP#70-131$<i>18","<>:xip/c:MC#70-130$<i>18<b>1","<>:xip/c:NP#70-85$<i>12<b>2","<>:xip/c:DET#70-73$<i>11",">:xip/d:DETERM$<i>11"],["s:Unternehmen","i:unternehmen","_11#74-85","opennlp/p:NN","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#74-85$<i>12","tt/l:Unternehmen","tt/p:NN","mate/l:unternehmen","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>10",">:mate/d:SB$<i>12","xip/p:NOUN","xip/l:unternehmen","<>:xip/c:NPA#74-85$<i>12<b>3","<>:xip/c:NOUN#74-85$<i>12","<:xip/d:DETERM$<i>10",">:xip/d:SUBJ$<i>17"],["s:hat","i:hat","_12#86-89","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>11","<:mate/d:OC$<i>17","xip/p:VERB","xip/l:haben","<>:xip/c:VERB#86-89$<i>13","<:xip/d:AUXIL$<i>17"],["s:sich","i:sich","_13#90-94","opennlp/p:PRF","cnx/l:sich","cnx/p:PRON","cnx/syn:@NH","tt/l:er|es|sie","tt/p:PRF","mate/l:sich","mate/p:PRF","mate/m:case:acc","mate/m:number:sg","mate/m:person:3",">:mate/d:OA$<i>17","xip/p:PRON","xip/l:sich","<>:xip/c:NP#90-94$<i>14<b>2","<>:xip/c:PRON#90-94$<i>14",">:xip/d:REFLEX$<i>17"],["s:auf","i:auf","_14#95-98","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:OP$<i>17","<:mate/d:NK$<i>16","xip/p:PREP","xip/l:auf","<>:xip/c:PP#95-116$<i>17<b>2","<>:xip/c:PREP#95-98$<i>15"],["s:urbane","i:urbane","_15#99-105","opennlp/p:ADJA","cnx/l:urban","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#99-116$<i>17","tt/l:urban","tt/p:ADJA","mate/l:urban","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>16","xip/p:ADJ","xip/l:urban","<>:xip/c:NP#99-116$<i>17<b>3","<>:xip/c:NPA#99-116$<i>17<b>4","<>:xip/c:AP#99-105$<i>16<b>5","<>:xip/c:ADJ#99-105$<i>16",">:xip/d:NMOD$<i>16"],["s:Streetwear","i:streetwear","_16#106-116","opennlp/p:NN","cnx/l:Streetwear","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NN","tt/p:NE","mate/l:streetwear","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>15",">:mate/d:NK$<i>14","xip/p:NOUN","xip/l:Streetwear","<>:xip/c:NOUN#106-116$<i>17","<:xip/d:NMOD$<i>15"],["s:spezialisiert","i:spezialisiert","_17#117-130","opennlp/p:VVPP","cnx/l:spezialisieren","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:spezialisieren","tt/p:VVPP","tt/l:spezialisiert","tt/p:ADJD","tt/p:VVFIN","mate/l:spezialisieren","mate/p:VVPP","<:mate/d:OA$<i>13","<:mate/d:OP$<i>14",">:mate/d:OC$<i>12","xip/p:VERB","xip/l:spezialisieren","<>:xip/c:VERB#117-130$<i>18","<:xip/d:SUBJ$<i>11","<:xip/d:REFLEX$<i>13",">:xip/d:AUXIL$<i>12","xip/d:VMAIN"],["s:Das","i:das","_18#132-135","<>:s#132-225$<i>33","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","tt/p:PDS","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>19","xip/p:DET","xip/l:das","<>:xip/c:DET#132-135$<i>19","<>:xip/c:TOP#132-225$<i>33","<>:xip/c:MC#132-224$<i>33<b>1","<>:xip/c:NP#132-140$<i>20<b>2",">:xip/d:DETERM$<i>19"],["s:Logo","i:logo","_19#136-140","opennlp/p:NN","cnx/l:logo","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#136-140$<i>20","tt/l:Logo","tt/p:NE","mate/l:logo","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>18",">:mate/d:SB$<i>26","<:mate/d:AG$<i>21","<:mate/d:CD$<i>22","xip/p:NOUN","xip/l:Logo","<>:xip/c:NOUN#136-140$<i>20","<>:xip/c:NPA#136-140$<i>20<b>3","<:xip/d:DETERM$<i>18",">:xip/d:OBJ$<i>32","<:xip/d:NMOD$<i>21"],["s:des","i:des","_20#141-144","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>21","xip/p:DET","xip/l:der","<>:xip/c:NP#141-157$<i>22<b>2","<>:xip/c:DET#141-144$<i>21",">:xip/d:DETERM$<i>21"],["s:Unternehmens","i:unternehmens","_21#145-157","opennlp/p:NN","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#145-157$<i>22","tt/l:Unternehmen","tt/p:NN","mate/l:unternehmen","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>20",">:mate/d:AG$<i>19","xip/p:NOUN","xip/l:unternehmen","<>:xip/c:NPA#145-157$<i>22<b>3","<>:xip/c:NOUN#145-157$<i>22","<:xip/d:DETERM$<i>20",">:xip/d:NMOD$<i>19"],["s:und","i:und","_22#158-161","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>19","<:mate/d:CJ$<i>25","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#158-161$<i>23"],["s:die","i:die","_23#162-165","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>25","xip/p:DET","xip/l:die","<>:xip/c:DET#162-165$<i>24","<>:xip/c:NP#162-184$<i>26<b>2",">:xip/d:DETERM$<i>25"],["s:verwendeten","i:verwendeten","_24#166-177","opennlp/p:ADJA","cnx/l:verwendet","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#166-184$<i>26","tt/l:verwandt","tt/p:ADJA","mate/l:verwendet","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>25","xip/p:ADJ","xip/l:verwenden","<>:xip/c:NPA#166-184$<i>26<b>3","<>:xip/c:AP#166-177$<i>25<b>4","<>:xip/c:ADJ#166-177$<i>25",">:xip/d:NMOD$<i>25"],["s:Motive","i:motive","_25#178-184","opennlp/p:NN","cnx/l:motiv","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Motiv","tt/p:NN","mate/l:motiv","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>23","<:mate/d:NK$<i>24",">:mate/d:CJ$<i>22","xip/p:NOUN","xip/l:Motiv","<>:xip/c:NOUN#178-184$<i>26","<:xip/d:DETERM$<i>23","<:xip/d:NMOD$<i>24",">:xip/d:SUBJ$<i>32"],["s:sind","i:sind","_26#185-189","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>19","<:mate/d:PD$<i>32","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#185-189$<i>27","<:xip/d:AUXIL$<i>32"],["s:dem","i:dem","_27#190-193","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>28","xip/p:DET","xip/l:der","<>:xip/c:DET#190-193$<i>28","<>:xip/c:NP#190-198$<i>29<b>2",">:xip/d:DETERM$<i>28"],["s:Film","i:film","_28#194-198","opennlp/p:NN","cnx/l:film","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#194-198$<i>29","tt/l:Film","tt/p:NN","mate/l:film","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>27",">:mate/d:DA$<i>32","<:mate/d:NK$<i>29","xip/p:NOUN","xip/l:Film","<>:xip/c:NPA#194-198$<i>29<b>3","<>:xip/c:NOUN#194-198$<i>29","<:xip/d:DETERM$<i>27",">:xip/d:OBJ$<i>32"],["s:Planet","i:planet","_29#199-205","opennlp/p:NN","cnx/l:planet","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#199-205$<i>30","tt/l:Planet","tt/p:NN","mate/l:planet","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>28","<:mate/d:AG$<i>31","xip/p:NOUN","xip/l:Planet","<>:xip/c:NP#199-205$<i>30<b>2","<>:xip/c:NPA#199-205$<i>30<b>3","<>:xip/c:NOUN#199-205$<i>30",">:xip/d:OBJ$<i>32","<:xip/d:NMOD$<i>31"],["s:der","i:der","_30#206-209","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>31","xip/p:DET","xip/l:der","<>:xip/c:NP#206-215$<i>32<b>2","<>:xip/c:DET#206-209$<i>31",">:xip/d:DETERM$<i>31"],["s:Affen","i:affen","_31#210-215","opennlp/p:NN","cnx/l:affe","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/c:np#210-215$<i>32","tt/l:Affe","tt/p:NN","mate/l:affen","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>30",">:mate/d:AG$<i>29","xip/p:NOUN","xip/l:Affe","<>:xip/c:NPA#210-215$<i>32<b>3","<>:xip/c:NOUN#210-215$<i>32","<:xip/d:DETERM$<i>30",">:xip/d:NMOD$<i>29"],["s:entlehnt","i:entlehnt","_32#216-224","opennlp/p:VVPP","cnx/l:entlehnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:entlehnen","tt/p:VVPP","tt/p:VVFIN","mate/l:entlehnen","mate/p:VVPP","<:mate/d:DA$<i>28",">:mate/d:PD$<i>26","xip/p:VERB","xip/l:entlehnen","<>:xip/c:VERB#216-224$<i>33","<:xip/d:OBJ$<i>19","<:xip/d:SUBJ$<i>25","<:xip/d:OBJ$<i>28","<:xip/d:OBJ$<i>29",">:xip/d:AUXIL$<i>26","xip/d:VMAIN"],["s:A","i:a","_33#226-227","<>:s#226-335$<i>49","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","tt/p:FM","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>35","xip/p:SYMBOL","xip/l:A","<>:xip/c:TOP#226-335$<i>49","<>:xip/c:MC#226-335$<i>49<b>1","<>:xip/c:NP#226-227$<i>34<b>2","<>:xip/c:NPA#226-227$<i>34<b>3","<>:xip/c:NOUN#226-227$<i>34<b>4","<>:xip/c:SYMBOL#226-227$<i>34",">:xip/d:SUBJ$<i>36"],["s:Bathing","i:bathing","_34#228-235","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","cnx/l:Bathing","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#228-239$<i>36","tt/p:NE","mate/l:bathing","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>35","xip/p:ADJ","xip/l:bathing","<>:xip/c:NP#228-235$<i>35<b>2","<>:xip/c:AP#228-235$<i>35<b>3","<>:xip/c:ADJ#228-235$<i>35","xip/d:LOC",">:xip/d:PRED$<i>36","<:xip/d:NMOD$<i>35"],["s:Ape","i:ape","_35#236-239","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","cnx/l:Ape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:ape","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>33","<:mate/d:PNC$<i>34",">:mate/d:SB$<i>36","xip/p:NOUN","xip/l:Ape","<>:xip/c:NP#236-239$<i>36<b>2","<>:xip/c:NPA#236-239$<i>36<b>3","<>:xip/c:NOUN#236-239$<i>36",">:xip/d:NMOD$<i>34"],["s:ist","i:ist","_36#240-243","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>35","<:mate/d:PD$<i>37","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#240-243$<i>37","<:xip/d:SUBJ$<i>33","<:xip/d:PRED$<i>34","xip/d:VMAIN","<:xip/d:PRED$<i>37","<:xip/d:VMOD$<i>38"],["s:bekannt","i:bekannt","_37#244-251","opennlp/p:ADJD","cnx/l:bekannt","cnx/p:A","cnx/syn:@NH","tt/l:bekannt","tt/p:ADJD","mate/l:bekannt","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>36","<:mate/d:MO$<i>38","xip/p:ADJ","xip/l:bekannt","<>:xip/c:AP#244-251$<i>38<b>2","<>:xip/c:ADJ#244-251$<i>38",">:xip/d:PRED$<i>36"],["s:dafür","i:dafür","_38#252-257","opennlp/p:PROAV","cnx/l:dafür","cnx/p:ADV","cnx/syn:@ADVL","tt/l:dafür","tt/p:PROAV","mate/l:dafür","mate/p:PROAV",">:mate/d:MO$<i>37","<:mate/d:RE$<i>48","xip/p:ADV","xip/l:dafür","<>:xip/c:ADV#252-257$<i>39",">:xip/d:VMOD$<i>36"],["s:durch","i:durch","_39#259-264","opennlp/p:APPR","cnx/l:durch","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR",">:mate/d:MO$<i>48","<:mate/d:NK$<i>41","xip/p:PREP","xip/l:durch","<>:xip/c:INFC#259-334$<i>49","<>:xip/c:PP#259-284$<i>42<b>1","<>:xip/c:PREP#259-264$<i>40"],["s:limitierte","i:limitierte","_40#265-275","opennlp/p:ADJA","cnx/l:limitiert","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#265-284$<i>42","tt/l:limitiert","tt/p:ADJA","mate/l:limitiert","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>41","xip/p:ADJ","xip/l:limitieren","<>:xip/c:ADJ#265-275$<i>41","<>:xip/c:NP#265-284$<i>42<b>2","<>:xip/c:NPA#265-284$<i>42<b>3","<>:xip/c:AP#265-275$<i>41<b>4",">:xip/d:NMOD$<i>41"],["s:Auflagen","i:auflagen","_41#276-284","opennlp/p:NN","cnx/l:auflage","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Auflage","tt/p:NN","mate/l:auflage","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>40",">:mate/d:NK$<i>39","<:mate/d:AG$<i>43","xip/p:NOUN","xip/l:Auflage","<>:xip/c:NOUN#276-284$<i>42","<:xip/d:NMOD$<i>40","<:xip/d:NMOD$<i>43"],["s:seiner","i:seiner","_42#285-291","opennlp/p:PPOSAT","cnx/l:sein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:sein","tt/p:PPOSAT","mate/l:sein","mate/p:PPOSAT","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>43","xip/p:DET","xip/l:sein","<>:xip/c:NP#285-300$<i>44<b>1","<>:xip/c:DET#285-291$<i>43",">:xip/d:DETERM$<i>43"],["s:Produkte","i:produkte","_43#292-300","opennlp/p:NN","cnx/l:produkt","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/c:np#292-324$<i>47","tt/l:Produkt","tt/p:NN","mate/l:produkt","mate/p:NN","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>42",">:mate/d:AG$<i>41","xip/p:NOUN","xip/l:Produkt","<>:xip/c:NPA#292-300$<i>44<b>2","<>:xip/c:NOUN#292-300$<i>44","<:xip/d:DETERM$<i>42",">:xip/d:NMOD$<i>41"],["s:für","i:für","_44#301-304","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:OP$<i>48","<:mate/d:NK$<i>46","xip/p:PREP","xip/l:für","<>:xip/c:PP#301-324$<i>47<b>1","<>:xip/c:PREP#301-304$<i>45"],["s:steigende","i:steigende","_45#305-314","opennlp/p:ADJA","cnx/l:steigend","cnx/p:A","cnx/syn:@PREMOD","tt/l:steigend","tt/p:ADJA","mate/l:steigend","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>46","xip/p:ADJ","xip/l:steigen","<>:xip/c:ADJ#305-314$<i>46","<>:xip/c:NP#305-324$<i>47<b>2","<>:xip/c:NPA#305-324$<i>47<b>3","<>:xip/c:AP#305-314$<i>46<b>4",">:xip/d:NMOD$<i>46"],["s:Nachfrage","i:nachfrage","_46#315-324","opennlp/p:NN","cnx/l:nachfrage","cnx/p:N","cnx/syn:@NH","tt/l:Nachfrage","tt/p:NN","mate/l:nachfrage","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>45",">:mate/d:NK$<i>44","xip/p:NOUN","xip/l:Nachfrage","<>:xip/c:NOUN#315-324$<i>47","<:xip/d:NMOD$<i>45"],["s:zu","i:zu","_47#325-327","opennlp/p:PTKZU","cnx/l:zu","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:zu","tt/p:PTKZU","mate/l:zu","mate/p:PTKZU",">:mate/d:PM$<i>48","xip/p:PTCL","xip/l:zu","<>:xip/c:PTCL#325-327$<i>48","<>:xip/c:VERB#325-334$<i>49<b>1"],["s:sorgen","i:sorgen","_48#328-334","opennlp/p:VVINF","cnx/l:sorgen","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:sorgen","tt/p:VVINF","mate/l:sorgen","mate/p:VVINF","<:mate/d:MO$<i>39","<:mate/d:OP$<i>44","<:mate/d:PM$<i>47",">:mate/d:RE$<i>38","xip/p:VERB","xip/l:sorgen","<>:xip/c:VERB#328-334$<i>49"],["s:Der","i:der","_49#336-339","<>:s#336-580$<i>83","<>:p#336-580$<i>83","opennlp/p:ART","cnx/l:der","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>51","xip/p:DET","xip/l:der","<>:xip/c:DET#336-339$<i>50","<>:xip/c:TOP#336-580$<i>83","<>:xip/c:MC#336-580$<i>83<b>1","<>:xip/c:NP#336-359$<i>52<b>2",">:xip/d:DETERM$<i>51"],["s:32-jährige","i:32-jährige","_50#340-350","opennlp/p:ADJA","tt/p:ADJA","mate/l:32-jährig","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>51","xip/p:ADJ","xip/l:32-jährig","<>:xip/c:ADJ#340-350$<i>51","<>:xip/c:NPA#340-359$<i>52<b>3","<>:xip/c:AP#340-350$<i>51<b>4",">:xip/d:NMOD$<i>51"],["s:Designer","i:designer","_51#351-359","opennlp/p:NN","cnx/l:designer","cnx/p:N","cnx/syn:@NH","tt/l:Designer","tt/p:NN","mate/l:designer","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>49","<:mate/d:NK$<i>50",">:mate/d:SB$<i>53","<:mate/d:NK$<i>52","xip/p:NOUN","xip/l:Designer","<>:xip/c:NOUN#351-359$<i>52","<:xip/d:DETERM$<i>49","<:xip/d:NMOD$<i>50",">:xip/d:SUBJ$<i>53","<:xip/d:NMOD$<i>52"],["s:Nigo","i:nigo","_52#360-364","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Nigo","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#360-364$<i>53","tt/p:NE","tt/p:NN","mate/l:nigo","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>51","xip/p:NOUN","xip/l:Nigo","<>:xip/c:NP#360-364$<i>53<b>2","<>:xip/c:NPA#360-364$<i>53<b>3","<>:xip/c:NOUN#360-364$<i>53",">:xip/d:NMOD$<i>51"],["s:bekam","i:bekam","_53#365-370","opennlp/p:VVFIN","cnx/l:bekommen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:bekommen","tt/p:VVFIN","mate/l:bekommen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>51","<:mate/d:SB$<i>58","<:mate/d:MO$<i>83","xip/p:VERB","xip/l:bekommen","<>:xip/c:VERB#365-370$<i>54","<:xip/d:SUBJ$<i>51","xip/d:VMAIN","<:xip/d:OBJ$<i>58"],["s:von","i:von","_54#371-374","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:PG$<i>58","<:mate/d:NK$<i>56","xip/p:PREP","xip/l:von","<>:xip/c:PP#371-390$<i>57<b>2","<>:xip/c:PREP#371-374$<i>55"],["s:dem","i:dem","_55#375-378","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>56","xip/p:DET","xip/l:der","<>:xip/c:NP#375-390$<i>57<b>3","<>:xip/c:DET#375-378$<i>56",">:xip/d:DETERM$<i>56"],["s:Unternehmen","i:unternehmen","_56#379-390","opennlp/p:NN","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#379-390$<i>57","tt/l:Unternehmen","tt/p:NN","mate/l:unternehmen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>55",">:mate/d:NK$<i>54","xip/p:NOUN","xip/l:unternehmen","<>:xip/c:NOUN#379-390$<i>57","<>:xip/c:NPA#379-390$<i>57<b>4","<:xip/d:DETERM$<i>55"],["s:einen","i:einen","_57#391-396","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>58","xip/p:DET","xip/l:ein","<>:xip/c:NP#391-408$<i>59<b>2","<>:xip/c:DET#391-396$<i>58",">:xip/d:DETERM$<i>58"],["s:Lamborghini","i:lamborghini","_58#397-408","opennlp/p:NN","cnx/l:Lamborghini","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#397-408$<i>59","tt/l:Lamborghini","tt/p:NE","mate/l:lamborghini","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PG$<i>54","<:mate/d:NK$<i>57",">:mate/d:SB$<i>53","<:mate/d:CJ$<i>61","xip/p:NOUN","xip/l:Lamborghini","<>:xip/c:NPA#397-408$<i>59<b>3","<>:xip/c:NOUN#397-408$<i>59","<:xip/d:DETERM$<i>57",">:xip/d:OBJ$<i>53"],["s:einen","i:einen","_59#410-415","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>61","xip/p:DET","xip/l:ein","<>:xip/c:NP#410-421$<i>61","<>:xip/c:DET#410-415$<i>60",">:xip/d:DETERM$<i>60"],["s:Aston","i:aston","_60#416-421","opennlp/p:NN","cnx/l:Aston","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#416-428$<i>62","tt/l:Aston","tt/p:NN","mate/l:aston","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>61","xip/p:NOUN","xip/l:Aston","<>:xip/c:NOUN#416-421$<i>61","<>:xip/c:NPA#416-421$<i>61<b>1","<:xip/d:DETERM$<i>59","xip/d:PERSON","<:xip/d:NMOD$<i>61"],["s:Martin","i:martin","_61#422-428","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Martin","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Martin","tt/p:NE","mate/l:martin","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>59","<:mate/d:PNC$<i>60",">:mate/d:CJ$<i>58","<:mate/d:APP$<i>66","<:mate/d:CJ$<i>68","xip/p:NOUN","xip/l:Martin","<>:xip/c:NP#422-428$<i>62","<>:xip/c:NPA#422-428$<i>62<b>1","<>:xip/c:NOUN#422-428$<i>62",">:xip/d:NMOD$<i>60","xip/d:PERSON"],["s:eine","i:eine","_62#430-434","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>66","xip/p:DET","xip/l:ein","<>:xip/c:DET#430-434$<i>63"],["s:Bentley","i:bentley","_63#435-442","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","cnx/l:Bentley","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#435-471$<i>67","tt/p:NE","tt/p:NN","mate/l:bentley","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>64","xip/p:NOUN","xip/l:Bentley","<>:xip/c:NOUN#435-442$<i>64"],["s:Continental","i:continental","_64#443-454","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Continental","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:continental","mate/p:NE","<:mate/d:PNC$<i>63",">:mate/d:MO$<i>65","xip/p:NOUN","xip/l:Continental","<>:xip/c:NOUN#443-454$<i>65"],["s:Mulliner","i:mulliner","_65#455-463","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Mulliner","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","tt/p:ADJA","mate/l:mulliner","mate/p:ADJA","mate/m:case:*","mate/m:number:*","mate/m:gender:*","mate/m:degree:pos","<:mate/d:MO$<i>64",">:mate/d:NK$<i>66","xip/p:NOUN","xip/l:Mulliner","<>:xip/c:NOUN#455-463$<i>66"],["s:Edition","i:edition","_66#464-471","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:edition","cnx/p:N","cnx/syn:@NH","tt/l:Edition","tt/p:NN","mate/l:edition","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>62","<:mate/d:NK$<i>65",">:mate/d:APP$<i>61","xip/p:NOUN","xip/l:Edition","<>:xip/c:NOUN#464-471$<i>67"],["s:einen","i:einen","_67#473-478","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>68","xip/p:DET","xip/l:ein","<>:xip/c:NP#473-486$<i>69","<>:xip/c:DET#473-478$<i>68",">:xip/d:DETERM$<i>68"],["s:Ferrari","i:ferrari","_68#479-486","opennlp/p:NN","cnx/l:Ferrari","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#479-497$<i>71","tt/l:Ferrari","tt/p:NN","tt/p:NE","mate/l:ferrari","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>67",">:mate/d:CJ$<i>61","<:mate/d:CJ$<i>70","xip/p:NOUN","xip/l:Ferrari","<>:xip/c:NPA#479-486$<i>69<b>1","<>:xip/c:NOUN#479-486$<i>69","<:xip/d:DETERM$<i>67","xip/d:PERSON"],["s:360","i:360","_69#487-490","opennlp/p:CARD","cnx/l:360","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:@card@","tt/p:CARD","mate/l:360","mate/p:CARD",">:mate/d:NK$<i>70","xip/p:NUM","xip/l:360","<>:xip/c:NUM#487-490$<i>70","<>:xip/c:NP#487-497$<i>71","<>:xip/c:NPA#487-497$<i>71<b>1","<>:xip/c:NUM#487-490$<i>70<b>2",">:xip/d:NMOD$<i>70"],["s:Modena","i:modena","_70#491-497","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Modena","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Modena","tt/p:NE","mate/l:modena","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>69",">:mate/d:CJ$<i>68","<:mate/d:CD$<i>71","xip/p:NOUN","xip/l:Modena","<>:xip/c:NOUN#491-497$<i>71","<:xip/d:NMOD$<i>69","<:xip/d:COORD$<i>71"],["s:und","i:und","_71#498-501","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>70","<:mate/d:CJ$<i>73","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#498-501$<i>72",">:xip/d:COORD$<i>70",">:xip/d:COORD$<i>74"],["s:30","i:30","_72#502-504","opennlp/p:CARD","cnx/l:30","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:30","tt/p:CARD","mate/l:30","mate/p:CARD",">:mate/d:NMC$<i>73","xip/p:NUM","xip/l:30","<>:xip/c:NUM#502-504$<i>73","<>:xip/c:NP#502-524$<i>75","<>:xip/c:NPA#502-524$<i>75<b>1","<>:xip/c:NUM#502-514$<i>74<b>2","<>:xip/c:NUM#502-514$<i>74<b>3"],["s:Millionen","i:millionen","_73#505-514","opennlp/p:NN","cnx/l:million","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:Million","tt/p:NN","mate/l:million","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NMC$<i>72",">:mate/d:CJ$<i>71","<:mate/d:NK$<i>74","xip/p:NOUN","xip/l:Million","<>:xip/c:NOUN#505-514$<i>74"],["s:US-Dollar","i:us-dollar","_74#515-524","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","tt/l:US-Dollar","tt/p:NN","mate/l:us-dollar","mate/p:NN","mate/m:case:*","mate/m:number:*","mate/m:gender:masc",">:mate/d:NK$<i>73","xip/p:NOUN","xip/l:US-Dollar","<>:xip/c:NOUN#515-524$<i>75","<:xip/d:COORD$<i>71"],["s:damit","i:damit","_75#526-531","opennlp/p:KOUS","cnx/l:damit","cnx/p:CS","cnx/syn:@PREMARK","tt/l:damit","tt/p:KOUS","tt/p:PROAV","mate/l:damit","mate/p:KOUS",">:mate/d:CP$<i>83","xip/p:CONJ","xip/l:damit","<>:xip/c:CONJ#526-531$<i>76",">:xip/d:CONNECT$<i>83"],["s:er","i:er","_76#532-534","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>83","xip/p:PRON","xip/l:er","<>:xip/c:PRON#532-534$<i>77",">:xip/d:SUBJ$<i>83"],["s:als","i:als","_77#535-538","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>83","<:mate/d:NK$<i>78","xip/p:PREP","xip/l:als","<>:xip/c:PREP#535-538$<i>78"],["s:Chef-Designer","i:chef-designer","_78#539-552","opennlp/p:NN","cnx/l:chef","cnx/l:designer","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#539-552$<i>79","tt/p:NN","mate/l:chef-designer","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>77","xip/p:NOUN","xip/l:Chef-Designer","<>:xip/c:NOUN#539-552$<i>79"],["s:bei","i:bei","_79#553-556","opennlp/p:APPR","cnx/l:bei","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:bei","tt/p:APPR","mate/l:bei","mate/p:APPR",">:mate/d:MO$<i>83","<:mate/d:NK$<i>82","xip/p:PREP","xip/l:bei","<>:xip/c:PREP#553-556$<i>80"],["s:A","i:a","_80#557-558","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>82","xip/p:SYMBOL","xip/l:A","<>:xip/c:SYMBOL#557-558$<i>81"],["s:Bathing","i:bathing","_81#559-566","opennlp/p:NE","cnx/l:Bathing","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#559-570$<i>83","tt/p:NE","mate/l:bathing","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>82","xip/p:ADJ","xip/l:bathing","<>:xip/c:ADJ#559-566$<i>82","xip/d:LOC",">:xip/d:OBJ$<i>83","<:xip/d:NMOD$<i>82"],["s:Ape","i:ape","_82#567-570","opennlp/p:NE","cnx/l:Ape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:ape","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>80","<:mate/d:PNC$<i>81",">:mate/d:NK$<i>79","xip/p:NOUN","xip/l:Ape","<>:xip/c:NOUN#567-570$<i>83",">:xip/d:NMOD$<i>81"],["s:arbeitet","i:arbeitet","_83#571-579","opennlp/p:VVFIN","cnx/l:arbeiten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:arbeiten","tt/p:VVFIN","mate/l:arbeiten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:CP$<i>75","<:mate/d:SB$<i>76","<:mate/d:MO$<i>77","<:mate/d:MO$<i>79",">:mate/d:MO$<i>53","xip/p:VERB","xip/l:arbeiten","<>:xip/c:VERB#571-579$<i>84","<:xip/d:CONNECT$<i>75","<:xip/d:SUBJ$<i>76","<:xip/d:OBJ$<i>81","xip/d:VMAIN"]],"layerInfo":"opennlp/p=pos cnx/l=lemma cnx/p=pos cnx/m=msd cnx/c=const tt/p=pos tt/l=lemma mate/l=lemma mate/p=pos mate/m=msd mate/d=dep xip/l=lemma xip/p=pos xip/c=const xip/d=dep"}]}
\ No newline at end of file
+{"author":"192.168.O.1,Srittau,Peterlustig","pubDate":"20050328","corpusID":"WPD","textClass":"freizeit-unterhaltung reisen unternehmen","title":"A Bathing Ape","ID":"WPD_AAA.00006","fields":[{"primaryData":"A Bathing Ape oder einfach Bape ist eine japanisches Modeunternehmen. Das Unternehmen hat sich auf urbane Streetwear spezialisiert. Das Logo des Unternehmens und die verwendeten Motive sind dem Film Planet der Affen entlehnt. A Bathing Ape ist bekannt dafür, durch limitierte Auflagen seiner Produkte für steigende Nachfrage zu sorgen. Der 32-jährige Designer Nigo bekam von dem Unternehmen einen Lamborghini, einen Aston Martin, eine Bentley Continental Mulliner Edition, einen Ferrari 360 Modena und 30 Millionen US-Dollar, damit er als Chef-Designer bei A Bathing Ape arbeitet."},{"name":"tokens","tokenization":"opennlp#tokens","foundries":"xip xip/morpho xip/constituency xip/dependency mate mate/morpho mate/dependency opennlp opennlp/morpho treetagger treetagger/morpho base base/sentences base/paragraphs corenlp corenlp/namedentities corenlp/namedentities/ne_dewac_175m_600 corenlp/namedentities corenlp/namedentities/ne_hgc_175m_600 connexor connexor/morpho connexor/syntax connexor/phrase","data":[["s:A","i:a","_0#0-1","-:tokens$<i>84","-:sentences$<i>4","-:paragraphs$<i>1"],["s:Bathing","i:bathing","_1#2-9","opennlp/p:NE","cnx/l:Bathing","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#2-13$<i>3","tt/p:NE","mate/l:bathing","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*",">:mate/d:PNC$<i>2","xip/p:ADJ","xip/l:bathing","<>:xip/c:NP#2-9$<i>2","<>:xip/c:AP#2-9$<i>2<b>1","<>:xip/c:ADJ#2-9$<i>2","xip/d:LOC",">:xip/d:PRED$<i>6","<:xip/d:NMOD$<i>2"],["s:Ape","i:ape","_2#10-13","opennlp/p:NE","cnx/l:Ape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:ape","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>1",">:mate/d:SB$<i>6","<:mate/d:CD$<i>3","xip/p:NOUN","xip/l:Ape","<>:xip/c:NP#10-13$<i>3","<>:xip/c:NPA#10-13$<i>3<b>1","<>:xip/c:NOUN#10-13$<i>3",">:xip/d:NMOD$<i>1"],["s:oder","i:oder","_3#14-18","opennlp/p:KON","cnx/l:oder","cnx/p:CC","cnx/syn:@CC","tt/l:oder","tt/p:KON","mate/l:oder","mate/p:KON",">:mate/d:CD$<i>2","<:mate/d:CJ$<i>5","xip/p:CONJ","xip/l:oder","<>:xip/c:INS#14-26$<i>5","<>:xip/c:CONJ#14-18$<i>4"],["s:einfach","i:einfach","_4#19-26","opennlp/p:ADV","cnx/l:einfach","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#19-31$<i>6","tt/l:einfach","tt/p:ADJD","mate/l:einfach","mate/p:ADV","mate/m:degree:pos",">:mate/d:MO$<i>5","xip/p:ADJ","xip/l:ein}fach","<>:xip/c:AP#19-26$<i>5<b>1","<>:xip/c:ADJ#19-26$<i>5"],["s:Bape","i:bape","_5#27-31","opennlp/p:NE","cnx/l:Bape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NN","tt/p:NE","mate/l:bape","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:MO$<i>4",">:mate/d:CJ$<i>3","xip/p:NOUN","xip/l:Bape","<>:xip/c:NOUN#27-31$<i>6","<>:xip/c:NP#27-31$<i>6","<>:xip/c:NPA#27-31$<i>6<b>1",">:xip/d:PRED$<i>6"],["s:ist","i:ist","_6#32-35","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>2","<:mate/d:PD$<i>9","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#32-35$<i>7","<:xip/d:PRED$<i>1","<:xip/d:PRED$<i>5","xip/d:VMAIN"],["s:eine","i:eine","_7#36-40","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>9","xip/p:DET","xip/l:ein","<>:xip/c:DET#36-40$<i>8"],["s:japanisches","i:japanisches","_8#41-52","opennlp/p:ADJA","cnx/l:japanisch","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#41-68$<i>10","tt/l:japanisch","tt/p:ADJA","mate/l:japanisch","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>9","xip/p:ADJ","xip/l:japanisch","<>:xip/c:ADJ#41-52$<i>9","<>:xip/c:NP#41-68$<i>10","<>:xip/c:NPA#41-68$<i>10<b>1","<>:xip/c:AP#41-52$<i>9<b>2",">:xip/d:NMOD$<i>9"],["s:Modeunternehmen","i:modeunternehmen","_9#53-68","opennlp/p:NN","cnx/l:mode","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","tt/l:Modeunternehmen","tt/p:NN","mate/l:modeunternehmen","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>7","<:mate/d:NK$<i>8",">:mate/d:PD$<i>6","xip/p:NOUN","xip/l:Mode","xip/l:unternehmen","xip/l:Modeunternehmen","<>:xip/c:NOUN#53-68$<i>10","<:xip/d:NMOD$<i>8","xip/d:THEMA"],["s:Das","i:das","_10#70-73","<>:s#70-131$<i>18","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>11","xip/p:DET","xip/l:das","<>:xip/c:TOP#70-131$<i>18","<>:xip/c:MC#70-130$<i>18<b>1","<>:xip/c:NP#70-85$<i>12<b>2","<>:xip/c:DET#70-73$<i>11",">:xip/d:DETERM$<i>11"],["s:Unternehmen","i:unternehmen","_11#74-85","opennlp/p:NN","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#74-85$<i>12","tt/l:Unternehmen","tt/p:NN","mate/l:unternehmen","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>10",">:mate/d:SB$<i>12","xip/p:NOUN","xip/l:unternehmen","<>:xip/c:NPA#74-85$<i>12<b>3","<>:xip/c:NOUN#74-85$<i>12","<:xip/d:DETERM$<i>10",">:xip/d:SUBJ$<i>17"],["s:hat","i:hat","_12#86-89","opennlp/p:VAFIN","cnx/l:haben","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:haben","tt/p:VAFIN","mate/l:haben","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>11","<:mate/d:OC$<i>17","xip/p:VERB","xip/l:haben","<>:xip/c:VERB#86-89$<i>13","<:xip/d:AUXIL$<i>17"],["s:sich","i:sich","_13#90-94","opennlp/p:PRF","cnx/l:sich","cnx/p:PRON","cnx/syn:@NH","tt/l:er|es|sie","tt/p:PRF","mate/l:sich","mate/p:PRF","mate/m:case:acc","mate/m:number:sg","mate/m:person:3",">:mate/d:OA$<i>17","xip/p:PRON","xip/l:sich","<>:xip/c:NP#90-94$<i>14<b>2","<>:xip/c:PRON#90-94$<i>14",">:xip/d:REFLEX$<i>17"],["s:auf","i:auf","_14#95-98","opennlp/p:APPR","cnx/l:auf","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:auf","tt/p:APPR","mate/l:auf","mate/p:APPR",">:mate/d:OP$<i>17","<:mate/d:NK$<i>16","xip/p:PREP","xip/l:auf","<>:xip/c:PP#95-116$<i>17<b>2","<>:xip/c:PREP#95-98$<i>15"],["s:urbane","i:urbane","_15#99-105","opennlp/p:ADJA","cnx/l:urban","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#99-116$<i>17","tt/l:urban","tt/p:ADJA","mate/l:urban","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","mate/m:degree:pos",">:mate/d:NK$<i>16","xip/p:ADJ","xip/l:urban","<>:xip/c:NP#99-116$<i>17<b>3","<>:xip/c:NPA#99-116$<i>17<b>4","<>:xip/c:AP#99-105$<i>16<b>5","<>:xip/c:ADJ#99-105$<i>16",">:xip/d:NMOD$<i>16"],["s:Streetwear","i:streetwear","_16#106-116","opennlp/p:NN","cnx/l:Streetwear","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NN","tt/p:NE","mate/l:streetwear","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:neut","<:mate/d:NK$<i>15",">:mate/d:NK$<i>14","xip/p:NOUN","xip/l:Streetwear","<>:xip/c:NOUN#106-116$<i>17","<:xip/d:NMOD$<i>15"],["s:spezialisiert","i:spezialisiert","_17#117-130","opennlp/p:VVPP","cnx/l:spezialisieren","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:spezialisieren","tt/p:VVPP","tt/l:spezialisiert","tt/p:ADJD","tt/p:VVFIN","mate/l:spezialisieren","mate/p:VVPP","<:mate/d:OA$<i>13","<:mate/d:OP$<i>14",">:mate/d:OC$<i>12","xip/p:VERB","xip/l:spezialisieren","<>:xip/c:VERB#117-130$<i>18","<:xip/d:SUBJ$<i>11","<:xip/d:REFLEX$<i>13",">:xip/d:AUXIL$<i>12","xip/d:VMAIN"],["s:Das","i:das","_18#132-135","<>:s#132-225$<i>33","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","tt/p:PDS","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>19","xip/p:DET","xip/l:das","<>:xip/c:DET#132-135$<i>19","<>:xip/c:TOP#132-225$<i>33","<>:xip/c:MC#132-224$<i>33<b>1","<>:xip/c:NP#132-140$<i>20<b>2",">:xip/d:DETERM$<i>19"],["s:Logo","i:logo","_19#136-140","opennlp/p:NN","cnx/l:logo","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#136-140$<i>20","tt/l:Logo","tt/p:NE","mate/l:logo","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>18",">:mate/d:SB$<i>26","<:mate/d:AG$<i>21","<:mate/d:CD$<i>22","xip/p:NOUN","xip/l:Logo","<>:xip/c:NOUN#136-140$<i>20","<>:xip/c:NPA#136-140$<i>20<b>3","<:xip/d:DETERM$<i>18",">:xip/d:OBJ$<i>32","<:xip/d:NMOD$<i>21"],["s:des","i:des","_20#141-144","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>21","xip/p:DET","xip/l:der","<>:xip/c:NP#141-157$<i>22<b>2","<>:xip/c:DET#141-144$<i>21",">:xip/d:DETERM$<i>21"],["s:Unternehmens","i:unternehmens","_21#145-157","opennlp/p:NN","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#145-157$<i>22","tt/l:Unternehmen","tt/p:NN","mate/l:unternehmen","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>20",">:mate/d:AG$<i>19","xip/p:NOUN","xip/l:unternehmen","<>:xip/c:NPA#145-157$<i>22<b>3","<>:xip/c:NOUN#145-157$<i>22","<:xip/d:DETERM$<i>20",">:xip/d:NMOD$<i>19"],["s:und","i:und","_22#158-161","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>19","<:mate/d:CJ$<i>25","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#158-161$<i>23"],["s:die","i:die","_23#162-165","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem",">:mate/d:NK$<i>25","xip/p:DET","xip/l:die","<>:xip/c:DET#162-165$<i>24","<>:xip/c:NP#162-184$<i>26<b>2",">:xip/d:DETERM$<i>25"],["s:verwendeten","i:verwendeten","_24#166-177","opennlp/p:ADJA","cnx/l:verwendet","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#166-184$<i>26","tt/l:verwandt","tt/p:ADJA","mate/l:verwendet","mate/p:ADJA","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>25","xip/p:ADJ","xip/l:verwenden","<>:xip/c:NPA#166-184$<i>26<b>3","<>:xip/c:AP#166-177$<i>25<b>4","<>:xip/c:ADJ#166-177$<i>25",">:xip/d:NMOD$<i>25"],["s:Motive","i:motive","_25#178-184","opennlp/p:NN","cnx/l:motiv","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Motiv","tt/p:NN","mate/l:motiv","mate/p:NN","mate/m:case:nom","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>23","<:mate/d:NK$<i>24",">:mate/d:CJ$<i>22","xip/p:NOUN","xip/l:Motiv","<>:xip/c:NOUN#178-184$<i>26","<:xip/d:DETERM$<i>23","<:xip/d:NMOD$<i>24",">:xip/d:SUBJ$<i>32"],["s:sind","i:sind","_26#185-189","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:pl","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>19","<:mate/d:PD$<i>32","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#185-189$<i>27","<:xip/d:AUXIL$<i>32"],["s:dem","i:dem","_27#190-193","opennlp/p:ART","cnx/l:der","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>28","xip/p:DET","xip/l:der","<>:xip/c:DET#190-193$<i>28","<>:xip/c:NP#190-198$<i>29<b>2",">:xip/d:DETERM$<i>28"],["s:Film","i:film","_28#194-198","opennlp/p:NN","cnx/l:film","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#194-198$<i>29","tt/l:Film","tt/p:NN","mate/l:film","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>27",">:mate/d:DA$<i>32","<:mate/d:NK$<i>29","xip/p:NOUN","xip/l:Film","<>:xip/c:NPA#194-198$<i>29<b>3","<>:xip/c:NOUN#194-198$<i>29","<:xip/d:DETERM$<i>27",">:xip/d:OBJ$<i>32"],["s:Planet","i:planet","_29#199-205","opennlp/p:NN","cnx/l:planet","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#199-205$<i>30","tt/l:Planet","tt/p:NN","mate/l:planet","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>28","<:mate/d:AG$<i>31","xip/p:NOUN","xip/l:Planet","<>:xip/c:NP#199-205$<i>30<b>2","<>:xip/c:NPA#199-205$<i>30<b>3","<>:xip/c:NOUN#199-205$<i>30",">:xip/d:OBJ$<i>32","<:xip/d:NMOD$<i>31"],["s:der","i:der","_30#206-209","opennlp/p:ART","cnx/l:die","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>31","xip/p:DET","xip/l:der","<>:xip/c:NP#206-215$<i>32<b>2","<>:xip/c:DET#206-209$<i>31",">:xip/d:DETERM$<i>31"],["s:Affen","i:affen","_31#210-215","opennlp/p:NN","cnx/l:affe","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/c:np#210-215$<i>32","tt/l:Affe","tt/p:NN","mate/l:affen","mate/p:NN","mate/m:case:gen","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>30",">:mate/d:AG$<i>29","xip/p:NOUN","xip/l:Affe","<>:xip/c:NPA#210-215$<i>32<b>3","<>:xip/c:NOUN#210-215$<i>32","<:xip/d:DETERM$<i>30",">:xip/d:NMOD$<i>29"],["s:entlehnt","i:entlehnt","_32#216-224","opennlp/p:VVPP","cnx/l:entlehnen","cnx/p:V","cnx/m:PCP","cnx/m:PERF","cnx/syn:@MAIN","tt/l:entlehnen","tt/p:VVPP","tt/p:VVFIN","mate/l:entlehnen","mate/p:VVPP","<:mate/d:DA$<i>28",">:mate/d:PD$<i>26","xip/p:VERB","xip/l:entlehnen","<>:xip/c:VERB#216-224$<i>33","<:xip/d:OBJ$<i>19","<:xip/d:SUBJ$<i>25","<:xip/d:OBJ$<i>28","<:xip/d:OBJ$<i>29",">:xip/d:AUXIL$<i>26","xip/d:VMAIN"],["s:A","i:a","_33#226-227","<>:s#226-335$<i>49","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","tt/p:FM","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>35","xip/p:SYMBOL","xip/l:A","<>:xip/c:TOP#226-335$<i>49","<>:xip/c:MC#226-335$<i>49<b>1","<>:xip/c:NP#226-227$<i>34<b>2","<>:xip/c:NPA#226-227$<i>34<b>3","<>:xip/c:NOUN#226-227$<i>34<b>4","<>:xip/c:SYMBOL#226-227$<i>34",">:xip/d:SUBJ$<i>36"],["s:Bathing","i:bathing","_34#228-235","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","cnx/l:Bathing","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#228-239$<i>36","tt/p:NE","mate/l:bathing","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>35","xip/p:ADJ","xip/l:bathing","<>:xip/c:NP#228-235$<i>35<b>2","<>:xip/c:AP#228-235$<i>35<b>3","<>:xip/c:ADJ#228-235$<i>35","xip/d:LOC",">:xip/d:PRED$<i>36","<:xip/d:NMOD$<i>35"],["s:Ape","i:ape","_35#236-239","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-LOC","cnx/l:Ape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:ape","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>33","<:mate/d:PNC$<i>34",">:mate/d:SB$<i>36","xip/p:NOUN","xip/l:Ape","<>:xip/c:NP#236-239$<i>36<b>2","<>:xip/c:NPA#236-239$<i>36<b>3","<>:xip/c:NOUN#236-239$<i>36",">:xip/d:NMOD$<i>34"],["s:ist","i:ist","_36#240-243","opennlp/p:VAFIN","cnx/l:sein","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:sein","tt/p:VAFIN","mate/l:sein","mate/p:VAFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:SB$<i>35","<:mate/d:PD$<i>37","xip/p:VERB","xip/l:sein","<>:xip/c:VERB#240-243$<i>37","<:xip/d:SUBJ$<i>33","<:xip/d:PRED$<i>34","xip/d:VMAIN","<:xip/d:PRED$<i>37","<:xip/d:VMOD$<i>38"],["s:bekannt","i:bekannt","_37#244-251","opennlp/p:ADJD","cnx/l:bekannt","cnx/p:A","cnx/syn:@NH","tt/l:bekannt","tt/p:ADJD","mate/l:bekannt","mate/p:ADJD","mate/m:degree:pos",">:mate/d:PD$<i>36","<:mate/d:MO$<i>38","xip/p:ADJ","xip/l:bekannt","<>:xip/c:AP#244-251$<i>38<b>2","<>:xip/c:ADJ#244-251$<i>38",">:xip/d:PRED$<i>36"],["s:dafür","i:dafür","_38#252-257","opennlp/p:PROAV","cnx/l:dafür","cnx/p:ADV","cnx/syn:@ADVL","tt/l:dafür","tt/p:PROAV","mate/l:dafür","mate/p:PROAV",">:mate/d:MO$<i>37","<:mate/d:RE$<i>48","xip/p:ADV","xip/l:dafür","<>:xip/c:ADV#252-257$<i>39",">:xip/d:VMOD$<i>36"],["s:durch","i:durch","_39#259-264","opennlp/p:APPR","cnx/l:durch","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:durch","tt/p:APPR","mate/l:durch","mate/p:APPR",">:mate/d:MO$<i>48","<:mate/d:NK$<i>41","xip/p:PREP","xip/l:durch","<>:xip/c:INFC#259-334$<i>49","<>:xip/c:PP#259-284$<i>42<b>1","<>:xip/c:PREP#259-264$<i>40"],["s:limitierte","i:limitierte","_40#265-275","opennlp/p:ADJA","cnx/l:limitiert","cnx/p:A","cnx/syn:@PREMOD","<>:cnx/c:np#265-284$<i>42","tt/l:limitiert","tt/p:ADJA","mate/l:limitiert","mate/p:ADJA","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>41","xip/p:ADJ","xip/l:limitieren","<>:xip/c:ADJ#265-275$<i>41","<>:xip/c:NP#265-284$<i>42<b>2","<>:xip/c:NPA#265-284$<i>42<b>3","<>:xip/c:AP#265-275$<i>41<b>4",">:xip/d:NMOD$<i>41"],["s:Auflagen","i:auflagen","_41#276-284","opennlp/p:NN","cnx/l:auflage","cnx/p:N","cnx/m:PL","cnx/syn:@NH","tt/l:Auflage","tt/p:NN","mate/l:auflage","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NK$<i>40",">:mate/d:NK$<i>39","<:mate/d:AG$<i>43","xip/p:NOUN","xip/l:Auflage","<>:xip/c:NOUN#276-284$<i>42","<:xip/d:NMOD$<i>40","<:xip/d:NMOD$<i>43"],["s:seiner","i:seiner","_42#285-291","opennlp/p:PPOSAT","cnx/l:sein","cnx/p:PRON","cnx/syn:@PREMOD","tt/l:sein","tt/p:PPOSAT","mate/l:sein","mate/p:PPOSAT","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc",">:mate/d:NK$<i>43","xip/p:DET","xip/l:sein","<>:xip/c:NP#285-300$<i>44<b>1","<>:xip/c:DET#285-291$<i>43",">:xip/d:DETERM$<i>43"],["s:Produkte","i:produkte","_43#292-300","opennlp/p:NN","cnx/l:produkt","cnx/p:N","cnx/m:PL","cnx/syn:@NH","<>:cnx/c:np#292-324$<i>47","tt/l:Produkt","tt/p:NN","mate/l:produkt","mate/p:NN","mate/m:case:gen","mate/m:number:pl","mate/m:gender:masc","<:mate/d:NK$<i>42",">:mate/d:AG$<i>41","xip/p:NOUN","xip/l:Produkt","<>:xip/c:NPA#292-300$<i>44<b>2","<>:xip/c:NOUN#292-300$<i>44","<:xip/d:DETERM$<i>42",">:xip/d:NMOD$<i>41"],["s:für","i:für","_44#301-304","opennlp/p:APPR","cnx/l:für","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:für","tt/p:APPR","mate/l:für","mate/p:APPR",">:mate/d:OP$<i>48","<:mate/d:NK$<i>46","xip/p:PREP","xip/l:für","<>:xip/c:PP#301-324$<i>47<b>1","<>:xip/c:PREP#301-304$<i>45"],["s:steigende","i:steigende","_45#305-314","opennlp/p:ADJA","cnx/l:steigend","cnx/p:A","cnx/syn:@PREMOD","tt/l:steigend","tt/p:ADJA","mate/l:steigend","mate/p:ADJA","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","mate/m:degree:pos",">:mate/d:NK$<i>46","xip/p:ADJ","xip/l:steigen","<>:xip/c:ADJ#305-314$<i>46","<>:xip/c:NP#305-324$<i>47<b>2","<>:xip/c:NPA#305-324$<i>47<b>3","<>:xip/c:AP#305-314$<i>46<b>4",">:xip/d:NMOD$<i>46"],["s:Nachfrage","i:nachfrage","_46#315-324","opennlp/p:NN","cnx/l:nachfrage","cnx/p:N","cnx/syn:@NH","tt/l:Nachfrage","tt/p:NN","mate/l:nachfrage","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>45",">:mate/d:NK$<i>44","xip/p:NOUN","xip/l:Nachfrage","<>:xip/c:NOUN#315-324$<i>47","<:xip/d:NMOD$<i>45"],["s:zu","i:zu","_47#325-327","opennlp/p:PTKZU","cnx/l:zu","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:zu","tt/p:PTKZU","mate/l:zu","mate/p:PTKZU",">:mate/d:PM$<i>48","xip/p:PTCL","xip/l:zu","<>:xip/c:PTCL#325-327$<i>48","<>:xip/c:VERB#325-334$<i>49<b>1"],["s:sorgen","i:sorgen","_48#328-334","opennlp/p:VVINF","cnx/l:sorgen","cnx/p:V","cnx/m:INF","cnx/syn:@MAIN","tt/l:sorgen","tt/p:VVINF","mate/l:sorgen","mate/p:VVINF","<:mate/d:MO$<i>39","<:mate/d:OP$<i>44","<:mate/d:PM$<i>47",">:mate/d:RE$<i>38","xip/p:VERB","xip/l:sorgen","<>:xip/c:VERB#328-334$<i>49"],["s:Der","i:der","_49#336-339","<>:s#336-580$<i>83","<>:p#336-580$<i>83","opennlp/p:ART","cnx/l:der","cnx/p:PRON","cnx/syn:@NH","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>51","xip/p:DET","xip/l:der","<>:xip/c:DET#336-339$<i>50","<>:xip/c:TOP#336-580$<i>83","<>:xip/c:MC#336-580$<i>83<b>1","<>:xip/c:NP#336-359$<i>52<b>2",">:xip/d:DETERM$<i>51"],["s:32-jährige","i:32-jährige","_50#340-350","opennlp/p:ADJA","tt/p:ADJA","mate/l:32-jährig","mate/p:ADJA","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:degree:pos",">:mate/d:NK$<i>51","xip/p:ADJ","xip/l:32-jährig","<>:xip/c:ADJ#340-350$<i>51","<>:xip/c:NPA#340-359$<i>52<b>3","<>:xip/c:AP#340-350$<i>51<b>4",">:xip/d:NMOD$<i>51"],["s:Designer","i:designer","_51#351-359","opennlp/p:NN","cnx/l:designer","cnx/p:N","cnx/syn:@NH","tt/l:Designer","tt/p:NN","mate/l:designer","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>49","<:mate/d:NK$<i>50",">:mate/d:SB$<i>53","<:mate/d:NK$<i>52","xip/p:NOUN","xip/l:Designer","<>:xip/c:NOUN#351-359$<i>52","<:xip/d:DETERM$<i>49","<:xip/d:NMOD$<i>50",">:xip/d:SUBJ$<i>53","<:xip/d:NMOD$<i>52"],["s:Nigo","i:nigo","_52#360-364","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Nigo","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#360-364$<i>53","tt/p:NE","tt/p:NN","mate/l:nigo","mate/p:NE","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>51","xip/p:NOUN","xip/l:Nigo","<>:xip/c:NP#360-364$<i>53<b>2","<>:xip/c:NPA#360-364$<i>53<b>3","<>:xip/c:NOUN#360-364$<i>53",">:xip/d:NMOD$<i>51"],["s:bekam","i:bekam","_53#365-370","opennlp/p:VVFIN","cnx/l:bekommen","cnx/p:V","cnx/m:IND","cnx/m:PAST","cnx/syn:@MAIN","tt/l:bekommen","tt/p:VVFIN","mate/l:bekommen","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:past","mate/m:mood:ind","<:mate/d:SB$<i>51","<:mate/d:SB$<i>58","<:mate/d:MO$<i>83","xip/p:VERB","xip/l:bekommen","<>:xip/c:VERB#365-370$<i>54","<:xip/d:SUBJ$<i>51","xip/d:VMAIN","<:xip/d:OBJ$<i>58"],["s:von","i:von","_54#371-374","opennlp/p:APPR","cnx/l:von","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:von","tt/p:APPR","mate/l:von","mate/p:APPR",">:mate/d:PG$<i>58","<:mate/d:NK$<i>56","xip/p:PREP","xip/l:von","<>:xip/c:PP#371-390$<i>57<b>2","<>:xip/c:PREP#371-374$<i>55"],["s:dem","i:dem","_55#375-378","opennlp/p:ART","cnx/l:das","cnx/p:DET","cnx/syn:@PREMOD","tt/l:die","tt/p:ART","mate/l:der","mate/p:ART","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut",">:mate/d:NK$<i>56","xip/p:DET","xip/l:der","<>:xip/c:NP#375-390$<i>57<b>3","<>:xip/c:DET#375-378$<i>56",">:xip/d:DETERM$<i>56"],["s:Unternehmen","i:unternehmen","_56#379-390","opennlp/p:NN","cnx/l:unternehmen","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#379-390$<i>57","tt/l:Unternehmen","tt/p:NN","mate/l:unternehmen","mate/p:NN","mate/m:case:dat","mate/m:number:sg","mate/m:gender:neut","<:mate/d:NK$<i>55",">:mate/d:NK$<i>54","xip/p:NOUN","xip/l:unternehmen","<>:xip/c:NOUN#379-390$<i>57","<>:xip/c:NPA#379-390$<i>57<b>4","<:xip/d:DETERM$<i>55"],["s:einen","i:einen","_57#391-396","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>58","xip/p:DET","xip/l:ein","<>:xip/c:NP#391-408$<i>59<b>2","<>:xip/c:DET#391-396$<i>58",">:xip/d:DETERM$<i>58"],["s:Lamborghini","i:lamborghini","_58#397-408","opennlp/p:NN","cnx/l:Lamborghini","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","<>:cnx/c:np#397-408$<i>59","tt/l:Lamborghini","tt/p:NE","mate/l:lamborghini","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:PG$<i>54","<:mate/d:NK$<i>57",">:mate/d:SB$<i>53","<:mate/d:CJ$<i>61","xip/p:NOUN","xip/l:Lamborghini","<>:xip/c:NPA#397-408$<i>59<b>3","<>:xip/c:NOUN#397-408$<i>59","<:xip/d:DETERM$<i>57",">:xip/d:OBJ$<i>53"],["s:einen","i:einen","_59#410-415","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>61","xip/p:DET","xip/l:ein","<>:xip/c:NP#410-421$<i>61","<>:xip/c:DET#410-415$<i>60",">:xip/d:DETERM$<i>60"],["s:Aston","i:aston","_60#416-421","opennlp/p:NN","cnx/l:Aston","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#416-428$<i>62","tt/l:Aston","tt/p:NN","mate/l:aston","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>61","xip/p:NOUN","xip/l:Aston","<>:xip/c:NOUN#416-421$<i>61","<>:xip/c:NPA#416-421$<i>61<b>1","<:xip/d:DETERM$<i>59","xip/d:PERSON","<:xip/d:NMOD$<i>61"],["s:Martin","i:martin","_61#422-428","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-PER","cnx/l:Martin","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Martin","tt/p:NE","mate/l:martin","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>59","<:mate/d:PNC$<i>60",">:mate/d:CJ$<i>58","<:mate/d:APP$<i>66","<:mate/d:CJ$<i>68","xip/p:NOUN","xip/l:Martin","<>:xip/c:NP#422-428$<i>62","<>:xip/c:NPA#422-428$<i>62<b>1","<>:xip/c:NOUN#422-428$<i>62",">:xip/d:NMOD$<i>60","xip/d:PERSON"],["s:eine","i:eine","_62#430-434","opennlp/p:ART","cnx/l:eine","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:NK$<i>66","xip/p:DET","xip/l:ein","<>:xip/c:DET#430-434$<i>63"],["s:Bentley","i:bentley","_63#435-442","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","cnx/l:Bentley","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#435-471$<i>67","tt/p:NE","tt/p:NN","mate/l:bentley","mate/p:NE","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem",">:mate/d:PNC$<i>64","xip/p:NOUN","xip/l:Bentley","<>:xip/c:NOUN#435-442$<i>64"],["s:Continental","i:continental","_64#443-454","opennlp/p:NE","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Continental","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","mate/l:continental","mate/p:NE","<:mate/d:PNC$<i>63",">:mate/d:MO$<i>65","xip/p:NOUN","xip/l:Continental","<>:xip/c:NOUN#443-454$<i>65"],["s:Mulliner","i:mulliner","_65#455-463","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:Mulliner","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/p:NE","tt/p:ADJA","mate/l:mulliner","mate/p:ADJA","mate/m:case:*","mate/m:number:*","mate/m:gender:*","mate/m:degree:pos","<:mate/d:MO$<i>64",">:mate/d:NK$<i>66","xip/p:NOUN","xip/l:Mulliner","<>:xip/c:NOUN#455-463$<i>66"],["s:Edition","i:edition","_66#464-471","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-PER","corenlp/ne_hgc_175m_600:I-ORG","cnx/l:edition","cnx/p:N","cnx/syn:@NH","tt/l:Edition","tt/p:NN","mate/l:edition","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:fem","<:mate/d:NK$<i>62","<:mate/d:NK$<i>65",">:mate/d:APP$<i>61","xip/p:NOUN","xip/l:Edition","<>:xip/c:NOUN#464-471$<i>67"],["s:einen","i:einen","_67#473-478","opennlp/p:ART","cnx/l:ein","cnx/p:DET","cnx/syn:@PREMOD","tt/l:eine","tt/p:ART","mate/l:ein","mate/p:ART","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>68","xip/p:DET","xip/l:ein","<>:xip/c:NP#473-486$<i>69","<>:xip/c:DET#473-478$<i>68",">:xip/d:DETERM$<i>68"],["s:Ferrari","i:ferrari","_68#479-486","opennlp/p:NN","cnx/l:Ferrari","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#479-497$<i>71","tt/l:Ferrari","tt/p:NN","tt/p:NE","mate/l:ferrari","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>67",">:mate/d:CJ$<i>61","<:mate/d:CJ$<i>70","xip/p:NOUN","xip/l:Ferrari","<>:xip/c:NPA#479-486$<i>69<b>1","<>:xip/c:NOUN#479-486$<i>69","<:xip/d:DETERM$<i>67","xip/d:PERSON"],["s:360","i:360","_69#487-490","opennlp/p:CARD","cnx/l:360","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","tt/l:@card@","tt/p:CARD","mate/l:360","mate/p:CARD",">:mate/d:NK$<i>70","xip/p:NUM","xip/l:360","<>:xip/c:NUM#487-490$<i>70","<>:xip/c:NP#487-497$<i>71","<>:xip/c:NPA#487-497$<i>71<b>1","<>:xip/c:NUM#487-490$<i>70<b>2",">:xip/d:NMOD$<i>70"],["s:Modena","i:modena","_70#491-497","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-LOC","corenlp/ne_hgc_175m_600:I-LOC","cnx/l:Modena","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/l:Modena","tt/p:NE","mate/l:modena","mate/p:NN","mate/m:case:acc","mate/m:number:sg","mate/m:gender:masc","<:mate/d:NK$<i>69",">:mate/d:CJ$<i>68","<:mate/d:CD$<i>71","xip/p:NOUN","xip/l:Modena","<>:xip/c:NOUN#491-497$<i>71","<:xip/d:NMOD$<i>69","<:xip/d:COORD$<i>71"],["s:und","i:und","_71#498-501","opennlp/p:KON","cnx/l:und","cnx/p:CC","cnx/syn:@CC","tt/l:und","tt/p:KON","mate/l:und","mate/p:KON",">:mate/d:CD$<i>70","<:mate/d:CJ$<i>73","xip/p:CONJ","xip/l:und","<>:xip/c:CONJ#498-501$<i>72",">:xip/d:COORD$<i>70",">:xip/d:COORD$<i>74"],["s:30","i:30","_72#502-504","opennlp/p:CARD","cnx/l:30","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:30","tt/p:CARD","mate/l:30","mate/p:CARD",">:mate/d:NMC$<i>73","xip/p:NUM","xip/l:30","<>:xip/c:NUM#502-504$<i>73","<>:xip/c:NP#502-524$<i>75","<>:xip/c:NPA#502-524$<i>75<b>1","<>:xip/c:NUM#502-514$<i>74<b>2","<>:xip/c:NUM#502-514$<i>74<b>3"],["s:Millionen","i:millionen","_73#505-514","opennlp/p:NN","cnx/l:million","cnx/p:NUM","cnx/syn:@PREMOD","tt/l:Million","tt/p:NN","mate/l:million","mate/p:NN","mate/m:case:acc","mate/m:number:pl","mate/m:gender:fem","<:mate/d:NMC$<i>72",">:mate/d:CJ$<i>71","<:mate/d:NK$<i>74","xip/p:NOUN","xip/l:Million","<>:xip/c:NOUN#505-514$<i>74"],["s:US-Dollar","i:us-dollar","_74#515-524","opennlp/p:NN","corenlp/ne_dewac_175m_600:I-MISC","corenlp/ne_hgc_175m_600:I-MISC","tt/l:US-Dollar","tt/p:NN","mate/l:us-dollar","mate/p:NN","mate/m:case:*","mate/m:number:*","mate/m:gender:masc",">:mate/d:NK$<i>73","xip/p:NOUN","xip/l:US-Dollar","<>:xip/c:NOUN#515-524$<i>75","<:xip/d:COORD$<i>71"],["s:damit","i:damit","_75#526-531","opennlp/p:KOUS","cnx/l:damit","cnx/p:CS","cnx/syn:@PREMARK","tt/l:damit","tt/p:KOUS","tt/p:PROAV","mate/l:damit","mate/p:KOUS",">:mate/d:CP$<i>83","xip/p:CONJ","xip/l:damit","<>:xip/c:CONJ#526-531$<i>76",">:xip/d:CONNECT$<i>83"],["s:er","i:er","_76#532-534","opennlp/p:PPER","cnx/l:er","cnx/p:PRON","cnx/syn:@NH","tt/l:er","tt/p:PPER","mate/l:er","mate/p:PPER","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc","mate/m:person:3",">:mate/d:SB$<i>83","xip/p:PRON","xip/l:er","<>:xip/c:PRON#532-534$<i>77",">:xip/d:SUBJ$<i>83"],["s:als","i:als","_77#535-538","opennlp/p:APPR","cnx/l:als","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:als","tt/p:KOKOM","mate/l:als","mate/p:APPR",">:mate/d:MO$<i>83","<:mate/d:NK$<i>78","xip/p:PREP","xip/l:als","<>:xip/c:PREP#535-538$<i>78"],["s:Chef-Designer","i:chef-designer","_78#539-552","opennlp/p:NN","cnx/l:chef","cnx/l:designer","cnx/p:N","cnx/syn:@NH","<>:cnx/c:np#539-552$<i>79","tt/p:NN","mate/l:chef-designer","mate/p:NN","mate/m:case:nom","mate/m:number:sg","mate/m:gender:masc",">:mate/d:NK$<i>77","xip/p:NOUN","xip/l:Chef-Designer","<>:xip/c:NOUN#539-552$<i>79"],["s:bei","i:bei","_79#553-556","opennlp/p:APPR","cnx/l:bei","cnx/p:PREP","cnx/syn:@POSTMOD","tt/l:bei","tt/p:APPR","mate/l:bei","mate/p:APPR",">:mate/d:MO$<i>83","<:mate/d:NK$<i>82","xip/p:PREP","xip/l:bei","<>:xip/c:PREP#553-556$<i>80"],["s:A","i:a","_80#557-558","opennlp/p:NE","cnx/l:a","cnx/p:PREP","cnx/syn:@PREMARK","tt/l:A","tt/p:NN","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>82","xip/p:SYMBOL","xip/l:A","<>:xip/c:SYMBOL#557-558$<i>81"],["s:Bathing","i:bathing","_81#559-566","opennlp/p:NE","cnx/l:Bathing","cnx/p:N","cnx/m:Prop","cnx/syn:@PREMOD","<>:cnx/c:np#559-570$<i>83","tt/p:NE","mate/l:bathing","mate/p:NE","mate/m:case:*","mate/m:number:*","mate/m:gender:*",">:mate/d:PNC$<i>82","xip/p:ADJ","xip/l:bathing","<>:xip/c:ADJ#559-566$<i>82","xip/d:LOC",">:xip/d:OBJ$<i>83","<:xip/d:NMOD$<i>82"],["s:Ape","i:ape","_82#567-570","opennlp/p:NE","cnx/l:Ape","cnx/p:N","cnx/m:Prop","cnx/syn:@NH","tt/p:NE","mate/l:ape","mate/p:NE","mate/m:case:dat","mate/m:number:sg","mate/m:gender:*","<:mate/d:PNC$<i>80","<:mate/d:PNC$<i>81",">:mate/d:NK$<i>79","xip/p:NOUN","xip/l:Ape","<>:xip/c:NOUN#567-570$<i>83",">:xip/d:NMOD$<i>81"],["s:arbeitet","i:arbeitet","_83#571-579","opennlp/p:VVFIN","cnx/l:arbeiten","cnx/p:V","cnx/m:IND","cnx/m:PRES","cnx/syn:@MAIN","tt/l:arbeiten","tt/p:VVFIN","mate/l:arbeiten","mate/p:VVFIN","mate/m:number:sg","mate/m:person:3","mate/m:tense:pres","mate/m:mood:ind","<:mate/d:CP$<i>75","<:mate/d:SB$<i>76","<:mate/d:MO$<i>77","<:mate/d:MO$<i>79",">:mate/d:MO$<i>53","xip/p:VERB","xip/l:arbeiten","<>:xip/c:VERB#571-579$<i>84","<:xip/d:CONNECT$<i>75","<:xip/d:SUBJ$<i>76","<:xip/d:OBJ$<i>81","xip/d:VMAIN"]],"layerInfo":"opennlp/p=pos cnx/l=lemma cnx/p=pos cnx/m=msd cnx/c=const tt/p=pos tt/l=lemma mate/l=lemma mate/p=pos mate/m=msd mate/d=dep xip/l=lemma xip/p=pos xip/c=const xip/d=dep"}]}
diff --git a/src/test/resources/wiki/00006.json.gz b/src/test/resources/wiki/00006.json.gz
index dba89fe..6c21658 100644
--- a/src/test/resources/wiki/00006.json.gz
+++ b/src/test/resources/wiki/00006.json.gz
Binary files differ