mexico 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/.document +5 -0
- data/.gitmodules +3 -0
- data/.project +14 -0
- data/.rspec +2 -0
- data/Gemfile +31 -0
- data/LICENSE.txt +165 -0
- data/README.md +116 -0
- data/Rakefile +66 -0
- data/VERSION +1 -0
- data/assets/TESTCORPUS/Corpus.xml +26 -0
- data/assets/fiesta/b6/layer_connectors.fst +16 -0
- data/assets/fiesta/b6/match_jones_161_CM_neu_checked.parsed.xml +1225 -0
- data/assets/fiesta/elan/ElanFileFormat.eaf +76 -0
- data/assets/fiesta/elan/ElanFileFormat.pfsx +8 -0
- data/assets/fiesta/elan/ElanFileFormatComplexInterLayerLinks.eaf +107 -0
- data/assets/fiesta/elan/reflinks_example.eaf +270 -0
- data/assets/fiesta/elan/test_all_interlayerrelations.fst +43 -0
- data/assets/fiesta/head/head.fst +24 -0
- data/assets/fiesta/praat/mexico.ShortTextGrid +81 -0
- data/assets/fiesta/praat/mexico.TextGrid +104 -0
- data/assets/helpers/collection_ref_handler.rb +29 -0
- data/assets/helpers/id_ref_handler.rb +29 -0
- data/assets/helpers/roxml_attribute_handler.rb +57 -0
- data/assets/out_only/construct_and_write_spec.toe +99 -0
- data/assets/spec.html +554 -0
- data/bin/mexico +5 -0
- data/features/mexico.feature +9 -0
- data/features/step_definitions/mexico_steps.rb +0 -0
- data/features/support/env.rb +15 -0
- data/info/releasenotes/0.0.1.md +5 -0
- data/info/releasenotes/0.0.2.md +5 -0
- data/info/releasenotes/0.0.3.md +5 -0
- data/info/releasenotes/0.0.4.md +5 -0
- data/info/releasenotes/0.0.5.md +8 -0
- data/info/releasenotes/0.0.6.md +3 -0
- data/info/releasenotes/0.0.7.md +4 -0
- data/info/releasenotes/0.0.8.md +9 -0
- data/info/releasenotes/0.0.9.md +7 -0
- data/lib/mexico/cmd.rb +210 -0
- data/lib/mexico/constants.rb +82 -0
- data/lib/mexico/constraints/constraint.rb +85 -0
- data/lib/mexico/constraints/fiesta_constraints.rb +209 -0
- data/lib/mexico/constraints.rb +27 -0
- data/lib/mexico/core/corpus_core.rb +39 -0
- data/lib/mexico/core/design_core.rb +31 -0
- data/lib/mexico/core/media_type.rb +61 -0
- data/lib/mexico/core.rb +36 -0
- data/lib/mexico/fiesta/interfaces/b6_chat_game_interface.rb +222 -0
- data/lib/mexico/fiesta/interfaces/elan_interface.rb +143 -0
- data/lib/mexico/fiesta/interfaces/short_text_grid_interface.rb +99 -0
- data/lib/mexico/fiesta/interfaces/text_grid_interface.rb +103 -0
- data/lib/mexico/fiesta/interfaces.rb +31 -0
- data/lib/mexico/fiesta.rb +27 -0
- data/lib/mexico/file_system/bound_to_corpus.rb +37 -0
- data/lib/mexico/file_system/corpus.rb +207 -0
- data/lib/mexico/file_system/data.rb +96 -0
- data/lib/mexico/file_system/design.rb +75 -0
- data/lib/mexico/file_system/design_component.rb +78 -0
- data/lib/mexico/file_system/entry.rb +59 -0
- data/lib/mexico/file_system/fiesta_document.rb +344 -0
- data/lib/mexico/file_system/fiesta_map.rb +112 -0
- data/lib/mexico/file_system/head.rb +33 -0
- data/lib/mexico/file_system/id_ref.rb +46 -0
- data/lib/mexico/file_system/implicit_item_link.rb +19 -0
- data/lib/mexico/file_system/interval_link.rb +84 -0
- data/lib/mexico/file_system/item.rb +166 -0
- data/lib/mexico/file_system/item_link.rb +98 -0
- data/lib/mexico/file_system/item_links_proxy.rb +13 -0
- data/lib/mexico/file_system/layer.rb +89 -0
- data/lib/mexico/file_system/layer_connector.rb +74 -0
- data/lib/mexico/file_system/layer_link.rb +75 -0
- data/lib/mexico/file_system/local_file.rb +101 -0
- data/lib/mexico/file_system/participant.rb +69 -0
- data/lib/mexico/file_system/participant_role.rb +43 -0
- data/lib/mexico/file_system/point_link.rb +79 -0
- data/lib/mexico/file_system/property.rb +35 -0
- data/lib/mexico/file_system/property_map.rb +37 -0
- data/lib/mexico/file_system/resource.rb +174 -0
- data/lib/mexico/file_system/scale.rb +125 -0
- data/lib/mexico/file_system/section.rb +41 -0
- data/lib/mexico/file_system/static_collection_ref.rb +64 -0
- data/lib/mexico/file_system/template.rb +23 -0
- data/lib/mexico/file_system/trial.rb +87 -0
- data/lib/mexico/file_system/url.rb +65 -0
- data/lib/mexico/file_system.rb +62 -0
- data/lib/mexico/not_yet_implemented_error.rb +28 -0
- data/lib/mexico/util/fancy_container.rb +57 -0
- data/lib/mexico/util.rb +51 -0
- data/lib/mexico.rb +36 -0
- data/spec/constraints/constraints_spec.rb +306 -0
- data/spec/core/media_type_spec.rb +50 -0
- data/spec/fiesta/b6_spec.rb +43 -0
- data/spec/fiesta/elan_spec.rb +43 -0
- data/spec/fiesta/head_spec.rb +54 -0
- data/spec/fiesta/praat_spec.rb +54 -0
- data/spec/fiesta/read_spec.rb +76 -0
- data/spec/file_system_based/better_collection_spec.rb +142 -0
- data/spec/file_system_based/corpus_spec.rb +194 -0
- data/spec/file_system_based/design_spec.rb +100 -0
- data/spec/file_system_based/inter_links_spec.rb +100 -0
- data/spec/file_system_based/item_links_spec.rb +76 -0
- data/spec/file_system_based/rdf_spec.rb +177 -0
- data/spec/file_system_based/resource_spec.rb +111 -0
- data/spec/file_system_based/trial_spec.rb +129 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/toe/construct_and_write_spec.rb +82 -0
- data/spec/toe/construction_spec.rb +110 -0
- data/spec/toe/item_spec.rb +58 -0
- data/spec/toe/layer_spec.rb +63 -0
- data/spec/toe/scale_spec.rb +89 -0
- data/spec/toe/toe_document_spec.rb +39 -0
- data/test/helper.rb +19 -0
- data/test/test_mexico.rb +7 -0
- metadata +357 -0
|
@@ -0,0 +1,1225 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<match startTime="16.11.11 11:22">
|
|
3
|
+
<player name="shariar" age="30" gender="MALE"/>
|
|
4
|
+
<player name="Flo" age="40" gender="FEMALE"/>
|
|
5
|
+
<round timeStarted="16.11.11 11:22" roundId="1">
|
|
6
|
+
<player name="Flo" role="CHATTER"/>
|
|
7
|
+
<player name="shariar" role="SLIDER"/>
|
|
8
|
+
<state>
|
|
9
|
+
<shape id="pink_rectangle" pos="-1,0" target="215,533"/>
|
|
10
|
+
<shape id="cyan_circle" pos="-1,0" target="115,415"/>
|
|
11
|
+
<shape id="magenta_square" pos="-1,0" target="15,315"/>
|
|
12
|
+
<shape id="red_triangle" pos="-1,0" target="515,315"/>
|
|
13
|
+
</state>
|
|
14
|
+
<active player="CHATTER"/>
|
|
15
|
+
<chat message="grauer kreis linke haelfte obere haelfte" time="+105"/>
|
|
16
|
+
<annotation id="annotation1">
|
|
17
|
+
<spelling id="spelling1">
|
|
18
|
+
<word id="word1">grauer</word><correction id="correction1">Grauer</correction>
|
|
19
|
+
<word id="word2">kreis</word><correction id="correction2">Kreis</correction>, linke
|
|
20
|
+
<word id="word3">haelfte</word><correction id="correction3">Hälfte</correction>, obere
|
|
21
|
+
<word id="word4">haelfte</word><correction id="correction4">Hälfte</correction>
|
|
22
|
+
<forms><form shape="circle">kreis</form></forms>
|
|
23
|
+
<colors><color shape="grey">grauer</color></colors>
|
|
24
|
+
</spelling>
|
|
25
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial" id="sentence1">
|
|
26
|
+
grauer kreis linke haelfte obere haelfte
|
|
27
|
+
<parsetree id="parsetree1" tiefe="2" verzweigung="3.0" hoeflichkeit="2">
|
|
28
|
+
<CNP>
|
|
29
|
+
<NP>
|
|
30
|
+
<ADJA lemma="grau">Grauer</ADJA>
|
|
31
|
+
<NN lemma="Kreis">Kreis</NN>
|
|
32
|
+
</NP>
|
|
33
|
+
<PUNCTUATION_COMMA>,</PUNCTUATION_COMMA>
|
|
34
|
+
<NP><ADJA lemma="links">linke</ADJA>
|
|
35
|
+
<NN lemma="Hälfte">Hälfte</NN>
|
|
36
|
+
</NP>
|
|
37
|
+
<PUNCTUATION_COMMA>,</PUNCTUATION_COMMA>
|
|
38
|
+
<NP>
|
|
39
|
+
<ADJA lemma="oben">obere</ADJA>
|
|
40
|
+
<NN lemma="Hälfte">Hälfte</NN>
|
|
41
|
+
</NP>
|
|
42
|
+
<PUNCTUATION_STOP>.</PUNCTUATION_STOP>
|
|
43
|
+
</CNP>
|
|
44
|
+
</parsetree>
|
|
45
|
+
</sentence>
|
|
46
|
+
</annotation>
|
|
47
|
+
<move shape="gray_circle" from="-1,0" to="215,215" distance="999" time="+133"/>
|
|
48
|
+
<move shape="gray_circle" from="215,215" to="215,15" distance="999" time="+136"/>
|
|
49
|
+
<chat message="gr kreis etws weiter runter und nach links" time="+156"/>
|
|
50
|
+
<annotation id="annotation2">
|
|
51
|
+
<spelling id="spelling2">
|
|
52
|
+
<word id="word5">gr</word><correction id="correction5">Grauer</correction>
|
|
53
|
+
<word id="word6">kreis</word><correction id="correction6">Kreis</correction>,
|
|
54
|
+
<word id="word7">etws</word><correction id="correction7">Etwas</correction> weiter runter und
|
|
55
|
+
nach links<forms><form shape="circle">kreis</form></forms><colors><color shape="grey"
|
|
56
|
+
>gr</color></colors></spelling>
|
|
57
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="direction"
|
|
58
|
+
id="sentence2"> gr kreis etws weiter runter und nach links<parsetree id="parsetree2"
|
|
59
|
+
tiefe="4" verzweigung="2.8" hoeflichkeit="2"><NP><ADJA lemma="grau">Grauer</ADJA><NN
|
|
60
|
+
lemma="Kreis"
|
|
61
|
+
>Kreis</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><CS><S><PIS>Etwas</PIS><ADV>weiter</ADV><ADV>runter</ADV></S><KON>und</KON><S><ISU><APPR>nach</APPR><ADV>links</ADV></ISU></S></CS><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NP></parsetree></sentence>
|
|
62
|
+
</annotation>
|
|
63
|
+
<move shape="gray_circle" from="215,15" to="115,115" distance="989" time="+162"/>
|
|
64
|
+
<chat message="blauer kreis gleiche spalte weiter runter" time="+177"/>
|
|
65
|
+
<annotation id="annotation3">
|
|
66
|
+
<spelling id="spelling3"><word id="word8">blauer</word><correction id="correction8"
|
|
67
|
+
>Blauer</correction>
|
|
68
|
+
<word id="word9">kreis</word><correction id="correction9">Kreis</correction>, gleiche <word
|
|
69
|
+
id="word10">spalte</word><correction id="correction10">Spalte</correction>, weiter
|
|
70
|
+
runter<forms><form shape="circle">kreis</form></forms><colors><color shape="cyan"
|
|
71
|
+
>blauer</color></colors></spelling>
|
|
72
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial+direction"
|
|
73
|
+
id="sentence3"> blauer kreis gleiche spalte weiter runter<parsetree id="parsetree3"
|
|
74
|
+
tiefe="2" verzweigung="3.6666666666666665" hoeflichkeit="2"><S><NPSB><ADJA lemma="blau"
|
|
75
|
+
>Blauer</ADJA><NN lemma="Kreis"
|
|
76
|
+
>Kreis</NN></NPSB><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADJA lemma="gleich"
|
|
77
|
+
>gleiche</ADJA><NN lemma="Spalte"
|
|
78
|
+
>Spalte</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><VP><ADV lemma="weiter"
|
|
79
|
+
>weiter</ADV><ADV lemma="runter"
|
|
80
|
+
>runter</ADV></VP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
81
|
+
</annotation>
|
|
82
|
+
<move shape="cyan_circle" from="-1,0" to="215,215" distance="918" time="+188"/>
|
|
83
|
+
<move shape="cyan_circle" from="215,215" to="115,215" distance="913" time="+191"/>
|
|
84
|
+
<chat message="bl kreis weiter runter" time="+205"/>
|
|
85
|
+
<annotation id="annotation4">
|
|
86
|
+
<spelling id="spelling4"><word id="word11">bl</word><correction id="correction11"
|
|
87
|
+
>Blauer</correction>
|
|
88
|
+
<word id="word12">kreis</word><correction id="correction12">Kreis</correction>, weiter
|
|
89
|
+
runter<forms><form shape="circle">kreis</form></forms><colors><color shape="cyan"
|
|
90
|
+
>bl</color></colors></spelling>
|
|
91
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="direction"
|
|
92
|
+
id="sentence4">bl kreis weiter runter <parsetree id="parsetree4" tiefe="2" verzweigung="3.5"
|
|
93
|
+
hoeflichkeit="2"><NP><ADJA lemma="blau">Blauer</ADJA><NN lemma="Kreis"
|
|
94
|
+
>Kreis</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><VP><ADV lemma="weiter"
|
|
95
|
+
>weiter</ADV><ADV lemma="runter"
|
|
96
|
+
>runter</ADV></VP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NP></parsetree></sentence>
|
|
97
|
+
</annotation>
|
|
98
|
+
<move shape="cyan_circle" from="115,215" to="115,315" distance="897" time="+210"/>
|
|
99
|
+
<chat message="noch weiter" time="+215"/>
|
|
100
|
+
<annotation id="annotation5">
|
|
101
|
+
<spelling id="spelling5"><word id="word13">noch</word><correction id="correction13"
|
|
102
|
+
>Noch</correction> weiter</spelling>
|
|
103
|
+
<sentence no="1" value="fragment without verb" type="correction" lok="none" id="sentence5">
|
|
104
|
+
noch weiter<parsetree id="parsetree5" tiefe="1" verzweigung="3.0" hoeflichkeit="2"><NUR><ADV
|
|
105
|
+
lemma="noch">Noch</ADV><ADV lemma="weiter"
|
|
106
|
+
>weiter</ADV><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
107
|
+
</annotation>
|
|
108
|
+
<move shape="cyan_circle" from="115,315" to="115,415" distance="891" time="+220"/>
|
|
109
|
+
<chat message="pinkfarbenes quadrat linke obere diagonale von blauem kreis" time="+268"/>
|
|
110
|
+
<annotation id="annotation6">
|
|
111
|
+
<spelling id="spelling6"><word id="word14">pinkfarbenes</word><correction id="correction14"
|
|
112
|
+
>Pinkfarbenes</correction>
|
|
113
|
+
<word id="word15">quadrat</word><correction id="correction15">Quadrat</correction>, linke
|
|
114
|
+
obere <word id="word16">diagonale</word><correction id="correction16"
|
|
115
|
+
>Diagonale</correction>, von blauem <word id="word17">kreis</word><correction
|
|
116
|
+
id="correction17">Kreis</correction><forms><form shape="square">quadrat</form><form
|
|
117
|
+
shape="circle">kreis</form></forms><colors><color shape="magenta"
|
|
118
|
+
>pinkfarbenes</color><color shape="cyan">blauem</color></colors></spelling>
|
|
119
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="relation"
|
|
120
|
+
id="sentence6"> pinkfarbenes quadrat linke obere diagonale von blauem kreis<parsetree
|
|
121
|
+
id="parsetree6" tiefe="3" verzweigung="3.0" hoeflichkeit="2"><S><NP><MPN><ADJA
|
|
122
|
+
lemma="pinkfarben">Pinkfarbenes</ADJA><NN lemma="Quadrat"
|
|
123
|
+
>Quadrat</NN></MPN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NP><ADJA lemma="links"
|
|
124
|
+
>linke</ADJA><ADJA lemma="oben">obere</ADJA><NN lemma="Diagonale"
|
|
125
|
+
>Diagonale</NN></NP></NP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><PP><APPR>von</APPR><ADJA
|
|
126
|
+
lemma="blau">blauem</ADJA><NN lemma="Kreis"
|
|
127
|
+
>Kreis</NN></PP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
128
|
+
</annotation>
|
|
129
|
+
<move shape="magenta_square" from="-1,0" to="215,215" distance="863" time="+285"/>
|
|
130
|
+
<move shape="magenta_square" from="215,215" to="15,315" distance="833" time="+287"/>
|
|
131
|
+
<chat
|
|
132
|
+
message="hautfarbenes rechteck auf freies feld in gleicher diagonale pinkes quadrat und blauer kreis"
|
|
133
|
+
time="+348"/>
|
|
134
|
+
<annotation id="annotation7">
|
|
135
|
+
<spelling id="spelling7"><word id="word18">hautfarbenes</word><correction id="correction18"
|
|
136
|
+
>Hautfarbenes</correction>
|
|
137
|
+
<word id="word19">rechteck</word><correction id="correction19">Rechteck</correction>, auf
|
|
138
|
+
freies <word id="word20">feld</word><correction id="correction20">Feld</correction>, in
|
|
139
|
+
gleicher <word id="word21">diagonale</word><correction id="correction21"
|
|
140
|
+
>Diagonale</correction>, pinkes <word id="word22">quadrat</word><correction
|
|
141
|
+
id="correction22">Quadrat</correction> und blauer <word id="word23"
|
|
142
|
+
>kreis</word><correction id="correction23">Kreis</correction><forms><form
|
|
143
|
+
shape="rectangle">rechteck</form><form shape="square">quadrat</form><form shape="circle"
|
|
144
|
+
>kreis</form></forms><colors><color shape="pink">hautfarbenes</color><color
|
|
145
|
+
shape="magenta">pinkes</color><color shape="cyan">blauer</color></colors></spelling>
|
|
146
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="relation"
|
|
147
|
+
id="sentence7"> hautfarbenes rechteck auf freies feld in gleicher diagonale pinkes quadrat
|
|
148
|
+
und blauer kreis<parsetree id="parsetree7" tiefe="5" verzweigung="2.7777777777777777"
|
|
149
|
+
hoeflichkeit="2"><S><NP><ADJA lemma="hautfarben">Hautfarbenes</ADJA><NN lemma="Rechteck"
|
|
150
|
+
>Rechteck</NN></NP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><CPP><PP><APPR
|
|
151
|
+
lemma="auf">auf</APPR><ADJA lemma="frei">freies</ADJA><NN lemma="Feld"
|
|
152
|
+
>Feld</NN></PP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><PP><APPR lemma="in"
|
|
153
|
+
>in</APPR><CNP><NP><ADJA lemma="gleich">gleicher</ADJA><NN lemma="Diagonale"
|
|
154
|
+
>Diagonale</NN></NP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NP><ADJA
|
|
155
|
+
lemma="pink">pinkes</ADJA><NN lemma="Quadrat">Quadrat</NN></NP><KON
|
|
156
|
+
lemma="und">und</KON><NP><ADJA lemma="blau">blauer</ADJA><NN lemma="Kreis"
|
|
157
|
+
>Kreis</NN></NP></CNP></PP></CPP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
158
|
+
</annotation>
|
|
159
|
+
<move shape="pink_rectangle" from="-1,0" to="215,233" distance="674" time="+359"/>
|
|
160
|
+
<move shape="pink_rectangle" from="215,233" to="215,533" distance="604" time="+361"/>
|
|
161
|
+
<chat message="rotes dreieck gleiche zeile pinkes quadrat ganz rechts aussen" time="+385"/>
|
|
162
|
+
<annotation id="annotation8">
|
|
163
|
+
<spelling id="spelling8"><word id="word24">rotes</word><correction id="correction24"
|
|
164
|
+
>Rotes</correction>
|
|
165
|
+
<word id="word25">dreieck</word><correction id="correction25">Dreieck</correction>, gleiche
|
|
166
|
+
<word id="word26">zeile</word><correction id="correction26">Zeile</correction>, pinkes
|
|
167
|
+
<word id="word27">quadrat</word><correction id="correction27">Quadrat</correction>, ganz
|
|
168
|
+
rechts <word id="word28">aussen</word><correction id="correction28"
|
|
169
|
+
>außen</correction><forms><form shape="triangle">dreieck</form><form shape="square"
|
|
170
|
+
>quadrat</form></forms><colors><color shape="red">rotes</color><color shape="magenta"
|
|
171
|
+
>pinkes</color></colors></spelling>
|
|
172
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="relation"
|
|
173
|
+
id="sentence8"> rotes dreieck gleiche zeile pinkes quadrat ganz rechts aussen<parsetree
|
|
174
|
+
id="parsetree8" tiefe="3" verzweigung="3.4" hoeflichkeit="2"><S><NPSB><MPN><ADJA
|
|
175
|
+
lemma="rot">Rotes</ADJA><NN lemma="Dreieck"
|
|
176
|
+
>Dreieck</NN></MPN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NP><ADJA lemma="gleich"
|
|
177
|
+
>gleiche</ADJA><NN lemma="Zeile"
|
|
178
|
+
>Zeile</NN></NP></NPSB><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADJA lemma="pink"
|
|
179
|
+
>pinkes</ADJA><NN lemma="Quadrat"
|
|
180
|
+
>Quadrat</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADV lemma="ganz"
|
|
181
|
+
>ganz</ADV><AVP><ADV lemma="rechts">rechts</ADV><ADV lemma="außen"
|
|
182
|
+
>außen</ADV></AVP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
183
|
+
</annotation>
|
|
184
|
+
<move shape="red_triangle" from="-1,0" to="215,215" distance="316" time="+393"/>
|
|
185
|
+
<move shape="red_triangle" from="215,215" to="515,315" distance="0" time="+395"/>
|
|
186
|
+
<endRound timeEnd="16.11.11 11:29"/>
|
|
187
|
+
<state>
|
|
188
|
+
<shape id="pink_rectangle" pos="215,533" target="215,533"/>
|
|
189
|
+
<shape id="gray_circle" pos="115,115" target="115,115"/>
|
|
190
|
+
<shape id="cyan_circle" pos="115,415" target="115,415"/>
|
|
191
|
+
<shape id="magenta_square" pos="15,315" target="15,315"/>
|
|
192
|
+
<shape id="red_triangle" pos="515,315" target="515,315"/>
|
|
193
|
+
</state>
|
|
194
|
+
</round>
|
|
195
|
+
<round timeStarted="16.11.11 11:29" roundId="2">
|
|
196
|
+
<player name="shariar" role="CHATTER"/>
|
|
197
|
+
<player name="Flo" role="SLIDER"/>
|
|
198
|
+
<state>
|
|
199
|
+
<shape id="pink_rectangle" pos="-1,0" target="515,533"/>
|
|
200
|
+
<shape id="yellow_triangle" pos="-1,0" target="15,115"/>
|
|
201
|
+
<shape id="green_circle" pos="-1,0" target="515,215"/>
|
|
202
|
+
<shape id="pink_triangle" pos="-1,0" target="415,315"/>
|
|
203
|
+
<shape id="gray_circle" pos="-1,0" target="515,315"/>
|
|
204
|
+
</state>
|
|
205
|
+
<active player="CHATTER"/>
|
|
206
|
+
<chat message="guten morgen! gelbes dreieck fast ganz oben links" time="+46"/>
|
|
207
|
+
<annotation id="annotation9">
|
|
208
|
+
<spelling id="spelling9"><word id="word29">guten</word><correction id="correction29"
|
|
209
|
+
>Guten</correction>
|
|
210
|
+
<word id="word30">morgen</word><correction id="correction30">Morgen</correction>! gelbes
|
|
211
|
+
dreieck, fast ganz oben links<forms><form shape="triangle"
|
|
212
|
+
>dreieck</form></forms><colors><color shape="yellow">gelbes</color></colors></spelling>
|
|
213
|
+
<sentence no="1" value="fragment without verb" type="greeting" lok="none" id="sentence9">
|
|
214
|
+
guten morgen! <parsetree id="parsetree9" tiefe="1" verzweigung="3.0" hoeflichkeit="2"
|
|
215
|
+
><NP><ADJA lemma="gut">Guten</ADJA><NN lemma="Morgen"
|
|
216
|
+
>Morgen</NN><PUNCTUATION_STOP>!</PUNCTUATION_STOP></NP></parsetree></sentence>
|
|
217
|
+
<sentence no="2" value="fragment without verb" type="instruction" lok="destination"
|
|
218
|
+
id="sentence10">gelbes dreieck fast ganz oben links<parsetree id="parsetree10" tiefe="2"
|
|
219
|
+
verzweigung="4.5" hoeflichkeit="2"><S><ADJA lemma="gelb">gelbes</ADJA><NN lemma="Dreieck"
|
|
220
|
+
>dreieck</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADV lemma="fast">fast</ADV><ADV
|
|
221
|
+
lemma="ganz">ganz</ADV><AVP><ADV lemma="oben">oben</ADV><ADV lemma="links"
|
|
222
|
+
>links</ADV></AVP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
223
|
+
</annotation>
|
|
224
|
+
<move shape="yellow_triangle" from="-1,0" to="215,215" distance="1244" time="+57"/>
|
|
225
|
+
<move shape="yellow_triangle" from="215,215" to="15,115" distance="1223" time="+64"/>
|
|
226
|
+
<chat message="'hautfarbenes' viereck unten rechts außen" time="+95"/>
|
|
227
|
+
<annotation id="annotation10">
|
|
228
|
+
<spelling id="spelling10"><word id="word31">hautfarbenes</word><correction id="correction31"
|
|
229
|
+
>Hautfarbenes</correction>
|
|
230
|
+
<word id="word32">viereck</word><correction id="correction32">Viereck</correction>, unten,
|
|
231
|
+
rechts außen<forms><form shape="rectangle">viereck</form></forms><colors><color shape="pink"
|
|
232
|
+
>hautfarbenes</color></colors></spelling>
|
|
233
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="destination"
|
|
234
|
+
id="sentence11"> hautfarbenes' viereck unten rechts außen<parsetree id="parsetree11"
|
|
235
|
+
tiefe="2" verzweigung="2.75" hoeflichkeit="2"><S><NP><ADJ lemma="hautfarben"
|
|
236
|
+
>Hautfarbenes</ADJ><NN lemma="Viereck"
|
|
237
|
+
>Viereck</NN></NP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><AVP><ADV lemma="unten"
|
|
238
|
+
>unten</ADV></AVP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><ADV lemma="rechts"
|
|
239
|
+
>rechts</ADV><ADV lemma="außen"
|
|
240
|
+
>außen</ADV></S><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
241
|
+
</annotation>
|
|
242
|
+
<move shape="pink_rectangle" from="-1,0" to="215,233" distance="1062" time="+107"/>
|
|
243
|
+
<move shape="pink_rectangle" from="215,233" to="515,533" distance="974" time="+110"/>
|
|
244
|
+
<chat message="hautfarbenes dreieck mehr als fast über hautf 4eck und bissel links" time="+166"/>
|
|
245
|
+
<annotation id="annotation11">
|
|
246
|
+
<spelling id="spelling11"><word id="word33">hautfarbenes</word><correction id="correction33"
|
|
247
|
+
>Hautfarbenes</correction>
|
|
248
|
+
<word id="word34">dreieck</word><correction id="correction34">Dreieck</correction>, mehr als
|
|
249
|
+
fast über <word id="word35">hautf</word><correction id="correction35"
|
|
250
|
+
>hautfarbenes</correction>
|
|
251
|
+
<word id="word36">4eck</word><correction id="correction36">Viereck</correction> und <word
|
|
252
|
+
id="word37">bissel</word><correction id="correction37">ein bisschen</correction>
|
|
253
|
+
links<forms><form shape="triangle">dreieck</form><form shape="rectangle"
|
|
254
|
+
>4eck</form></forms><colors><color shape="pink">hautfarbenes</color><color shape="pink"
|
|
255
|
+
>hautf</color></colors></spelling>
|
|
256
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="relation+destination"
|
|
257
|
+
id="sentence12">hautfarbenes dreieck mehr als fast über hautf 4eck und bissel links
|
|
258
|
+
<parsetree id="parsetree12" tiefe="5" verzweigung="2.857142857142857" hoeflichkeit="2"
|
|
259
|
+
><S><S><ADJA lemma="hautfarben">Hautfarbenes</ADJA><NN lemma="Dreieck"
|
|
260
|
+
>Dreieck</NN></S><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADV lemma="mehr"
|
|
261
|
+
>mehr</ADV><AVP><KOKOM lemma="als">als</KOKOM><ADV lemma="fast">fast</ADV><PP><APPR
|
|
262
|
+
lemma="über">über</APPR><CNP><NP><ADJA lemma="hautfarben">hautfarbenes</ADJA><NN
|
|
263
|
+
lemma="Viereck">Viereck</NN></NP><KON lemma="und">und</KON><NP><ART
|
|
264
|
+
lemma="ein">ein</ART><PIS lemma="bisschen">bisschen</PIS></NP></CNP><ADV
|
|
265
|
+
lemma="links"
|
|
266
|
+
>links</ADV></PP></AVP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
267
|
+
</annotation>
|
|
268
|
+
<move shape="pink_triangle" from="-1,0" to="215,215" distance="852" time="+173"/>
|
|
269
|
+
<move shape="pink_triangle" from="215,215" to="415,315" distance="822" time="+196"/>
|
|
270
|
+
<chat message="klasse. rechts daneben grauer kreis und über grauen kreis der gruene :-)"
|
|
271
|
+
time="+223"/>
|
|
272
|
+
<annotation id="annotation12">
|
|
273
|
+
<spelling id="spelling12"><word id="word38">klasse</word><correction id="correction38"
|
|
274
|
+
>Klasse</correction>. <word id="word39">rechts</word><correction id="correction39"
|
|
275
|
+
>Rechts</correction> daneben, grauer <word id="word40">kreis</word><correction
|
|
276
|
+
id="correction40">Kreis</correction> und über grauen <word id="word41"
|
|
277
|
+
>kreis</word><correction id="correction41">Kreis</correction>, der gruene<forms><form
|
|
278
|
+
shape="circle">kreis</form><form shape="circle">kreis</form><form shape="circle">der
|
|
279
|
+
gruene</form></forms><colors><color shape="gray">grauer</color><color shape="gray"
|
|
280
|
+
>grauen</color><color shape="green">gruene</color></colors></spelling>
|
|
281
|
+
<sentence no="1" value="fragment without verb" type="feedback" lok="none" id="sentence13">
|
|
282
|
+
klasse.<parsetree id="parsetree13" tiefe="1" verzweigung="2.0" hoeflichkeit="2"><NUR><ADV
|
|
283
|
+
lemma="klasse"
|
|
284
|
+
>Klasse</ADV><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
285
|
+
<sentence no="2" value="fragment without verb" type="instruction" lok="relation"
|
|
286
|
+
id="sentence14">rechts daneben grauer kreis und über grauen kreis der gruene :-)<parsetree
|
|
287
|
+
id="parsetree14" tiefe="4" verzweigung="2.7142857142857144" hoeflichkeit="2"><CO><AVP><ADV
|
|
288
|
+
lemma="rechts">Rechts</ADV><PROAV lemma="daneben"
|
|
289
|
+
>daneben</PROAV><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NP><ADJA lemma="grau"
|
|
290
|
+
>grauer</ADJA><NN lemma="Kreis">Kreis</NN></NP></AVP><KON lemma="und"
|
|
291
|
+
>und</KON><PP><APPR lemma="über">über</APPR><CNP><NP><ADJA lemma="grau"
|
|
292
|
+
>grauen</ADJA><NN lemma="Kreis"
|
|
293
|
+
>Kreis</NN></NP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NP><ART lemma="der"
|
|
294
|
+
>der</ART><ADJA lemma="grün"
|
|
295
|
+
>gruene</ADJA></NP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></CNP></PP></CO></parsetree></sentence>
|
|
296
|
+
</annotation>
|
|
297
|
+
<move shape="gray_circle" from="-1,0" to="215,215" distance="642" time="+231"/>
|
|
298
|
+
<move shape="gray_circle" from="215,215" to="515,315" distance="559" time="+235"/>
|
|
299
|
+
<chat message="gruen über grau" time="+250"/>
|
|
300
|
+
<annotation id="annotation13">
|
|
301
|
+
<spelling id="spelling13"><word id="word42">gruen</word><correction id="correction42"
|
|
302
|
+
>Grün</correction> über <word id="word43">grau</word><correction id="correction43"
|
|
303
|
+
>Grau</correction><colors><color shape="green">gruen</color><color shape="gray"
|
|
304
|
+
>grau</color></colors></spelling>
|
|
305
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="relation"
|
|
306
|
+
id="sentence15">gruen über grau<parsetree id="parsetree15" tiefe="2" verzweigung="2.5"
|
|
307
|
+
hoeflichkeit="2"><S><NN lemma="Grün">Grün</NN><PP><APPR lemma="über">über</APPR><NN
|
|
308
|
+
lemma="Grau"
|
|
309
|
+
>Grau</NN></PP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
310
|
+
</annotation>
|
|
311
|
+
<move shape="green_circle" from="-1,0" to="215,215" distance="300" time="+254"/>
|
|
312
|
+
<move shape="green_circle" from="215,215" to="515,215" distance="0" time="+256"/>
|
|
313
|
+
<chat message="geschafft" time="+264"/>
|
|
314
|
+
<annotation id="annotation14">
|
|
315
|
+
<spelling id="spelling14">
|
|
316
|
+
<word id="word44">geschafft</word>
|
|
317
|
+
<correction id="correction44">Geschafft</correction>
|
|
318
|
+
</spelling>
|
|
319
|
+
<sentence no="1" value="fragment without verb" type="feedback" lok="none" id="sentence16">
|
|
320
|
+
geschafft<parsetree id="parsetree16" tiefe="1" verzweigung="2.0" hoeflichkeit="2"
|
|
321
|
+
><NUR><VVPP lemma="schaffen"
|
|
322
|
+
>Geschafft</VVPP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
323
|
+
</annotation>
|
|
324
|
+
<endRound timeEnd="16.11.11 11:34"/>
|
|
325
|
+
<state>
|
|
326
|
+
<shape id="pink_rectangle" pos="515,533" target="515,533"/>
|
|
327
|
+
<shape id="yellow_triangle" pos="15,115" target="15,115"/>
|
|
328
|
+
<shape id="green_circle" pos="515,215" target="515,215"/>
|
|
329
|
+
<shape id="pink_triangle" pos="415,315" target="415,315"/>
|
|
330
|
+
<shape id="gray_circle" pos="515,315" target="515,315"/>
|
|
331
|
+
</state>
|
|
332
|
+
</round>
|
|
333
|
+
<round timeStarted="16.11.11 11:34" roundId="3">
|
|
334
|
+
<player name="Flo" role="CHATTER"/>
|
|
335
|
+
<player name="shariar" role="SLIDER"/>
|
|
336
|
+
<state>
|
|
337
|
+
<shape id="pink_circle" pos="-1,0" target="315,515"/>
|
|
338
|
+
<shape id="red_ellipse" pos="-1,0" target="415,333"/>
|
|
339
|
+
<shape id="gray_triangle" pos="-1,0" target="515,315"/>
|
|
340
|
+
<shape id="orange_triangle" pos="-1,0" target="415,415"/>
|
|
341
|
+
<shape id="black_rectangle" pos="-1,0" target="415,233"/>
|
|
342
|
+
</state>
|
|
343
|
+
<active player="CHATTER"/>
|
|
344
|
+
<chat message="hautfarbener kreis etwas rechts von mitte ganz unten" time="+52"/>
|
|
345
|
+
<annotation id="annotation15">
|
|
346
|
+
<spelling id="spelling15"><word id="word45">hautfarbener</word><correction id="correction45"
|
|
347
|
+
>Hautfarbener</correction>
|
|
348
|
+
<word id="word46">kreis</word><correction id="correction46">Kreis</correction>, etwas rechts
|
|
349
|
+
von <word id="word47">mitte</word><correction id="correction47">Mitte</correction>, ganz
|
|
350
|
+
unten<forms><form shape="circle">kreis</form></forms><colors><color shape="pink"
|
|
351
|
+
>hautfarbener</color></colors></spelling>
|
|
352
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial+destination"
|
|
353
|
+
id="sentence17">hautfarbener kreis etwas rechts von mitte ganz unten <parsetree
|
|
354
|
+
id="parsetree17" tiefe="4" verzweigung="3.0" hoeflichkeit="2"><NP><ADJA lemma="hautfarben"
|
|
355
|
+
>Hautfarbener</ADJA><NN lemma="Kreis"
|
|
356
|
+
>Kreis</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><CS><S><PIS lemma="etwas"
|
|
357
|
+
>etwas</PIS><PP><ADV lemma="rechts">rechts</ADV><APPR lemma="von">von</APPR><NN
|
|
358
|
+
lemma="Mitte">Mitte</NN></PP></S><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><ADV
|
|
359
|
+
lemma="ganz">ganz</ADV><ADV lemma="unten"
|
|
360
|
+
>unten</ADV></S></CS><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NP></parsetree></sentence>
|
|
361
|
+
</annotation>
|
|
362
|
+
<move shape="pink_circle" from="-1,0" to="215,215" distance="1148" time="+62"/>
|
|
363
|
+
<move shape="pink_circle" from="215,215" to="315,515" distance="1104" time="+68"/>
|
|
364
|
+
<chat message="gelbes dreieck rechte diagonale vom kreis" time="+113"/>
|
|
365
|
+
<annotation id="annotation16">
|
|
366
|
+
<spelling id="spelling16"><word id="word48">gelbes</word><correction id="correction48"
|
|
367
|
+
>Gelbes</correction>
|
|
368
|
+
<word id="word49">dreieck</word><correction id="correction49">Dreieck</correction>, rechte
|
|
369
|
+
<word id="word50">diagonale</word><correction id="correction50">Diagonale</correction> vom
|
|
370
|
+
<word id="word51">kreis</word><correction id="correction51">Kreis</correction><forms><form
|
|
371
|
+
shape="triangle">dreieck</form><form shape="circle">kreis</form></forms><colors><color
|
|
372
|
+
shape="orange">gelbes</color></colors></spelling>
|
|
373
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial+relation"
|
|
374
|
+
id="sentence18"> gelbes dreieck rechte diagonale vom kreis<parsetree id="parsetree18"
|
|
375
|
+
tiefe="3" verzweigung="2.75" hoeflichkeit="2"><NUR><MPN><ADJA lemma="gelb"
|
|
376
|
+
>Gelbes</ADJA><NN lemma="Dreieck"
|
|
377
|
+
>Dreieck</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA></MPN><NP><ADJA lemma="rechts"
|
|
378
|
+
>rechte</ADJA><NN lemma="Diagonale">Diagonale</NN><PP><APPRART lemma="vom"
|
|
379
|
+
>vom</APPRART><NN lemma="Kreis"
|
|
380
|
+
>Kreis</NN></PP></NP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
381
|
+
</annotation>
|
|
382
|
+
<move shape="orange_triangle" from="-1,0" to="215,215" distance="976" time="+120"/>
|
|
383
|
+
<move shape="orange_triangle" from="215,215" to="415,415" distance="935" time="+121"/>
|
|
384
|
+
<chat message="mit grauem dreieck die diagonale fortsetzen" time="+165"/>
|
|
385
|
+
<annotation id="annotation17">
|
|
386
|
+
<spelling id="spelling17"><word id="word52">mit</word><correction id="correction52"
|
|
387
|
+
>Mit</correction> grauem <word id="word53">dreieck</word><correction id="correction53"
|
|
388
|
+
>Dreieck</correction>, die <word id="word54">diagonale</word><correction id="correction54"
|
|
389
|
+
>Diagonale</correction> fortsetzen<forms><form shape="triangle"
|
|
390
|
+
>dreieck</form></forms><colors><color shape="gray">grauem</color></colors></spelling>
|
|
391
|
+
<sentence no="1" value="fragment with verb" type="instruction" lok="spatial" id="sentence19"
|
|
392
|
+
>mit grauem dreieck die diagonale fortsetzen <parsetree id="parsetree19" tiefe="3"
|
|
393
|
+
verzweigung="2.75" hoeflichkeit="3"><S><PP><APPR>Mit</APPR><ADJA lemma="grau"
|
|
394
|
+
>grauem</ADJA><NN lemma="Dreieck"
|
|
395
|
+
>Dreieck</NN></PP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><VP><NPOA><ART lemma="die"
|
|
396
|
+
>die</ART><NN lemma="Diagonale">Diagonale</NN></NPOA><VVINF lemma="fortsetzen"
|
|
397
|
+
>fortsetzen</VVINF></VP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
398
|
+
</annotation>
|
|
399
|
+
<move shape="gray_triangle" from="-1,0" to="215,215" distance="780" time="+172"/>
|
|
400
|
+
<move shape="gray_triangle" from="215,215" to="515,315" distance="713" time="+175"/>
|
|
401
|
+
<chat message="rotes etwas (ich weiss nicht wie das heisst!?) links neben graues dreieck"
|
|
402
|
+
time="+221"/>
|
|
403
|
+
<annotation id="annotation18">
|
|
404
|
+
<spelling id="spelling18"><word id="word55">rotes</word><correction id="correction55"
|
|
405
|
+
>Rotes</correction><word id="word56">etwas</word><correction id="correction56"
|
|
406
|
+
>Etwas</correction>, <word id="word57">ich</word><correction id="correction57"
|
|
407
|
+
>ich</correction><word id="word58">weiss</word><correction id="correction58"
|
|
408
|
+
>weiß</correction> nicht, wie das <word id="word59">heisst</word><correction
|
|
409
|
+
id="correction59">heißt</correction>, links neben graues <word id="word60"
|
|
410
|
+
>dreieck</word><correction id="correction60">Dreieck</correction><forms><form
|
|
411
|
+
shape="ellipse">etwas</form><form shape="triangle">dreieck</form></forms><colors><color
|
|
412
|
+
shape="red">rotes</color><color shape="gray">graues</color></colors></spelling>
|
|
413
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="relation"
|
|
414
|
+
id="sentence20">rotes etwas (ich weiss nicht wie das heisst!?) links neben graues dreieck
|
|
415
|
+
<parsetree id="parsetree20" tiefe="3" verzweigung="5.0" hoeflichkeit="2"><S><S><ADJA
|
|
416
|
+
lemma="rot">Rotes</ADJA><NN lemma="Etwas"
|
|
417
|
+
>Etwas</NN></S><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><PPER>ich</PPER><VVFIN
|
|
418
|
+
lemma="wissen">weiß</VVFIN><PTKNEG lemma="nicht"
|
|
419
|
+
>nicht</PTKNEG><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><PWAV lemma="wie"
|
|
420
|
+
>wie</PWAV><PDS>das</PDS><VVFIN lemma="heißen"
|
|
421
|
+
>heißt</VVFIN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADV lemma="links"
|
|
422
|
+
>links</ADV><PP><APPR lemma="neben">neben</APPR><ADJA lemma="grau"
|
|
423
|
+
>graues</ADJA><NN lemma="Dreieck"
|
|
424
|
+
>Dreieck</NN></PP></S><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
425
|
+
</annotation>
|
|
426
|
+
<move shape="red_ellipse" from="-1,0" to="215,233" distance="525" time="+234"/>
|
|
427
|
+
<move shape="red_ellipse" from="215,233" to="415,333" distance="476" time="+237"/>
|
|
428
|
+
<chat message="und das schwarze rechteck ueber das rote dingens" time="+261"/>
|
|
429
|
+
<annotation id="annotation19">
|
|
430
|
+
<spelling id="spelling19"><word id="word61">und</word><correction id="correction61"
|
|
431
|
+
>Und</correction> das schwarze <word id="word62">rechteck</word><correction
|
|
432
|
+
id="correction62">Rechteck</correction>, <word id="word63">ueber</word><correction
|
|
433
|
+
id="correction63">über</correction> das rote <word id="word64">dingens</word><correction
|
|
434
|
+
id="correction64">Dingens</correction><forms><form shape="rectangle">rechteck</form><form
|
|
435
|
+
shape="ellipse">dingens</form></forms><colors><color shape="black"
|
|
436
|
+
>schwarze</color><color shape="red">rote</color></colors></spelling>
|
|
437
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="relation"
|
|
438
|
+
id="sentence22"> und das schwarze rechteck ueber das rote dingens<parsetree id="parsetree22"
|
|
439
|
+
tiefe="3" verzweigung="4.0" hoeflichkeit="2"><S><KON lemma="und">Und</KON><NPSB><ART
|
|
440
|
+
lemma="das">das</ART><ADJA lemma="schwarz">schwarze</ADJA><NN lemma="Rechteck"
|
|
441
|
+
>Rechteck</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><PP><APPR lemma="über"
|
|
442
|
+
>über</APPR><ART lemma="das">das</ART><ADJA lemma="rot">rote</ADJA><NN
|
|
443
|
+
lemma="Ding"
|
|
444
|
+
>Dingens</NN></PP></NPSB><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
445
|
+
</annotation>
|
|
446
|
+
<move shape="black_rectangle" from="-1,0" to="215,233" distance="200" time="+268"/>
|
|
447
|
+
<move shape="black_rectangle" from="215,233" to="415,233" distance="0" time="+271"/>
|
|
448
|
+
<endRound timeEnd="16.11.11 11:38"/>
|
|
449
|
+
<state>
|
|
450
|
+
<shape id="pink_circle" pos="315,515" target="315,515"/>
|
|
451
|
+
<shape id="red_ellipse" pos="415,333" target="415,333"/>
|
|
452
|
+
<shape id="gray_triangle" pos="515,315" target="515,315"/>
|
|
453
|
+
<shape id="orange_triangle" pos="415,415" target="415,415"/>
|
|
454
|
+
<shape id="black_rectangle" pos="415,233" target="415,233"/>
|
|
455
|
+
</state>
|
|
456
|
+
</round>
|
|
457
|
+
<round timeStarted="16.11.11 11:38" roundId="4">
|
|
458
|
+
<player name="shariar" role="CHATTER"/>
|
|
459
|
+
<player name="Flo" role="SLIDER"/>
|
|
460
|
+
<state>
|
|
461
|
+
<shape id="orange_circle" pos="-1,0" target="215,15"/>
|
|
462
|
+
<shape id="black_triangle" pos="-1,0" target="415,15"/>
|
|
463
|
+
<shape id="black_rectangle" pos="-1,0" target="515,433"/>
|
|
464
|
+
<shape id="magenta_circle" pos="-1,0" target="415,215"/>
|
|
465
|
+
<shape id="orange_rectangle" pos="-1,0" target="215,333"/>
|
|
466
|
+
</state>
|
|
467
|
+
<active player="CHATTER"/>
|
|
468
|
+
<chat message="hallo. gelber kreis ganz oben mittig links" time="+46"/>
|
|
469
|
+
<annotation id="annotation20">
|
|
470
|
+
<spelling id="spelling20"><word id="word65">hallo</word><correction id="correction65"
|
|
471
|
+
>Hallo</correction>. <word id="word66">gelber</word><correction id="correction66"
|
|
472
|
+
>Gelber</correction>
|
|
473
|
+
<word id="word67">kreis</word><correction id="correction67">Kreis</correction>, ganz oben,
|
|
474
|
+
mittig links<forms><form shape="circle">kreis</form></forms><colors><color shape="orange"
|
|
475
|
+
>gelber</color></colors></spelling>
|
|
476
|
+
<sentence no="1" value="fragment without verb" type="greeting" lok="none" id="sentence23">
|
|
477
|
+
hallo.<parsetree id="parsetree23" tiefe="1" verzweigung="2.0" hoeflichkeit="2"><NUR><ITJ
|
|
478
|
+
lemma="hallo"
|
|
479
|
+
>Hallo</ITJ><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
480
|
+
<sentence no="2" value="fragment without verb" type="instruction" lok="destination"
|
|
481
|
+
id="sentence24">gelber kreis ganz oben mittig links<parsetree id="parsetree24" tiefe="2"
|
|
482
|
+
verzweigung="3.6666666666666665" hoeflichkeit="2"><S><NPSB><ADJA lemma="gelb"
|
|
483
|
+
>Gelber</ADJA><NN lemma="Kreis"
|
|
484
|
+
>Kreis</NN></NPSB><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><AVP><ADV lemma="ganz"
|
|
485
|
+
>ganz</ADV><ADV lemma="oben"
|
|
486
|
+
>oben</ADV></AVP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADV lemma="mittig"
|
|
487
|
+
>mittig</ADV><ADV lemma="links"
|
|
488
|
+
>links</ADV><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
489
|
+
</annotation>
|
|
490
|
+
<move shape="orange_circle" from="-1,0" to="215,215" distance="1020" time="+60"/>
|
|
491
|
+
<move shape="orange_circle" from="215,215" to="115,15" distance="1005" time="+64"/>
|
|
492
|
+
<chat message="weißt es" time="+80"/>
|
|
493
|
+
<annotation id="annotation21">
|
|
494
|
+
<spelling id="spelling21"><word id="word68">weißt</word><correction id="correction68"
|
|
495
|
+
>Weißt</correction> es</spelling>
|
|
496
|
+
<sentence no="1" value="fragment with verb" type="notice" lok="none" id="sentence25">weißt es
|
|
497
|
+
<parsetree id="parsetree25" tiefe="2" verzweigung="1.6666666666666667" hoeflichkeit="3"
|
|
498
|
+
><S><NP><VVFIN lemma="wissen">Weißt</VVFIN></NP><NPSB><PPER lemma="es"
|
|
499
|
+
>es</PPER></NPSB><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
500
|
+
</annotation>
|
|
501
|
+
<move shape="orange_circle" from="115,15" to="215,15" distance="1000" time="+87"/>
|
|
502
|
+
<chat message="genau. schwarzes 3eck fast daneben rechts" time="+104"/>
|
|
503
|
+
<annotation id="annotation22">
|
|
504
|
+
<spelling id="spelling22"><word id="word69">genau</word><correction id="correction69"
|
|
505
|
+
>Genau</correction>. <word id="word70">schwarzes</word><correction id="correction70"
|
|
506
|
+
>Schwarzes</correction>
|
|
507
|
+
<word id="word71">3eck</word><correction id="correction71">Dreieck</correction>, fast
|
|
508
|
+
daneben rechts<forms><form shape="triangle">3eck</form></forms><colors><color shape="black"
|
|
509
|
+
>schwarzes</color></colors></spelling>
|
|
510
|
+
<sentence no="1" value="fragment without verb" type="feedback" lok="none" id="sentence26"
|
|
511
|
+
>genau. <parsetree id="parsetree26" tiefe="1" verzweigung="2.0" hoeflichkeit="2"
|
|
512
|
+
><NUR><PTKANT lemma="Genau"
|
|
513
|
+
>Genau</PTKANT><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
514
|
+
<sentence no="2" value="fragment without verb" type="instruction" lok="relation"
|
|
515
|
+
id="sentence27">schwarzes 3eck fast daneben rechts<parsetree id="parsetree27" tiefe="3"
|
|
516
|
+
verzweigung="3.0" hoeflichkeit="2"><NUR><ADJA lemma="schwarz">Schwarzes</ADJA><NP><NN
|
|
517
|
+
lemma="Dreieck">Dreieck</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><AVP><ADV
|
|
518
|
+
lemma="fast">fast</ADV><PROAV lemma="daneben">daneben</PROAV><ADV lemma="rechts"
|
|
519
|
+
>rechts</ADV></AVP></NP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
520
|
+
</annotation>
|
|
521
|
+
<move shape="black_triangle" from="-1,0" to="215,215" distance="953" time="+113"/>
|
|
522
|
+
<move shape="black_triangle" from="215,215" to="415,15" distance="910" time="+115"/>
|
|
523
|
+
<chat message="genau. pinker kreis fast genau unter schwarz 3eck" time="+142"/>
|
|
524
|
+
<annotation id="annotation23">
|
|
525
|
+
<spelling id="spelling23"><word id="word72">genau</word><correction id="correction72"
|
|
526
|
+
>Genau</correction>. <word id="word73">pinker</word><correction id="correction73"
|
|
527
|
+
>Pinker</correction>
|
|
528
|
+
<word id="word74">kreis</word><correction id="correction74">Kreis</correction>, fast genau
|
|
529
|
+
unter <word id="word75">schwarz </word><correction id="correction75"
|
|
530
|
+
>schwarzes</correction><word id="word76">3eck</word><correction id="correction76"
|
|
531
|
+
>Dreieck</correction><forms><form shape="circle">kreis</form><form shape="triangle"
|
|
532
|
+
>3eck</form></forms><colors><color shape="magenta">pinker</color><color shape="black"
|
|
533
|
+
>schwarz</color></colors></spelling>
|
|
534
|
+
<sentence no="1" value="fragment without verb" type="feedback" lok="none" id="sentence28"
|
|
535
|
+
>genau. <parsetree id="parsetree28" tiefe="1" verzweigung="2.0" hoeflichkeit="2"
|
|
536
|
+
><NUR><PTKANT lemma="Genau"
|
|
537
|
+
>Genau</PTKANT><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
538
|
+
<sentence no="2" value="fragment without verb" type="instruction" lok="relation"
|
|
539
|
+
id="sentence29">pinker kreis fast genau unter schwarz 3eck<parsetree id="parsetree29"
|
|
540
|
+
tiefe="2" verzweigung="3.0" hoeflichkeit="2"><NUR><NP><ADJA lemma="pink">Pinker</ADJA><NN
|
|
541
|
+
lemma="Kreis">Kreis</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA></NP><AVP><ADV
|
|
542
|
+
lemma="fast">fast</ADV><ADJD lemma="genau">genau</ADJD></AVP><PP><APPR lemma="unter"
|
|
543
|
+
>unter</APPR><ADJA lemma="schwarz">schwarzes</ADJA><NN lemma="Dreieck"
|
|
544
|
+
>Dreieck</NN></PP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
545
|
+
</annotation>
|
|
546
|
+
<move shape="magenta_circle" from="-1,0" to="215,215" distance="806" time="+148"/>
|
|
547
|
+
<move shape="magenta_circle" from="215,215" to="415,215" distance="780" time="+153"/>
|
|
548
|
+
<chat message="gelbes 4eck unter gelben kreis legen, bissel tiefer als pinker kreis" time="+198"/>
|
|
549
|
+
<annotation id="annotation24">
|
|
550
|
+
<spelling id="spelling24"><word id="word77">gelbes</word><correction id="correction77"
|
|
551
|
+
>Gelbes</correction>
|
|
552
|
+
<word id="word78">4eck</word><correction id="correction78">Viereck</correction> unter gelben
|
|
553
|
+
<word id="word79">kreis</word><correction id="correction79">Kreis</correction> legen,
|
|
554
|
+
<word id="word80">bissel</word><correction id="correction80">ein bisschen</correction>
|
|
555
|
+
tiefer als <word id="word81">pinker</word><correction id="correction81">pinken</correction>
|
|
556
|
+
<word id="word82">kreis</word><correction id="correction82">Kreis</correction><forms><form
|
|
557
|
+
shape="rectangle">4eck</form><form shape="circle">kreis</form><form shape="circle"
|
|
558
|
+
>kreis</form></forms><colors><color shape="orange">gelbes</color><color shape="orange"
|
|
559
|
+
>gelben</color><color shape="magenta">pinker</color></colors></spelling>
|
|
560
|
+
<sentence no="1" value="fragment with verb" type="instruction" lok="relation" id="sentence30">
|
|
561
|
+
gelbes 4eck unter gelben kreis legen, bissel tiefer als pinker kreis<parsetree
|
|
562
|
+
id="parsetree30" tiefe="5" verzweigung="2.857142857142857" hoeflichkeit="3"><CS><S><ADJA
|
|
563
|
+
lemma="gelb">Gelbes</ADJA><VP><NPOA><NN lemma="Viereck">Viereck</NN><PP><APPR
|
|
564
|
+
lemma="unter">unter</APPR><ADJA lemma="gelb">gelben</ADJA><NN lemma="Kreis"
|
|
565
|
+
>Kreis</NN></PP></NPOA><VVINF lemma="legen"
|
|
566
|
+
>legen</VVINF></VP></S><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><ART lemma="ein"
|
|
567
|
+
>ein</ART><PIS lemma="bisschen">bisschen</PIS><ADJD lemma="tief"
|
|
568
|
+
>tiefer</ADJD><PP><APPR lemma="als">als</APPR><ADJA lemma="pink">pinken</ADJA><NN
|
|
569
|
+
lemma="Kreis"
|
|
570
|
+
>Kreis</NN></PP></S><PUNCTUATION_STOP>.</PUNCTUATION_STOP></CS></parsetree></sentence>
|
|
571
|
+
</annotation>
|
|
572
|
+
<move shape="orange_rectangle" from="-1,0" to="215,233" distance="680" time="+204"/>
|
|
573
|
+
<move shape="orange_rectangle" from="215,233" to="215,333" distance="673" time="+209"/>
|
|
574
|
+
<chat message="ja. und zu guter letzt schwarzes 4eck rechts außen bissel unter gelbem 4eck"
|
|
575
|
+
time="+254"/>
|
|
576
|
+
<annotation id="annotation25">
|
|
577
|
+
<spelling id="spelling25"><word id="word83">ja</word><correction id="correction83"
|
|
578
|
+
>Ja</correction>. <word id="word84">und</word><correction id="correction84"
|
|
579
|
+
>Und</correction> zu guter <word id="word85">letzt</word><correction id="correction85"
|
|
580
|
+
>Letzt</correction>, schwarzes <word id="word86">4eck</word><correction id="correction86"
|
|
581
|
+
>Viereck</correction> rechts außen, <word id="word87">bissel</word><correction
|
|
582
|
+
id="correction87">ein bisschen</correction>unter gelbem <word id="word88"
|
|
583
|
+
>4eck</word><correction id="correction88">Viereck</correction><forms><form
|
|
584
|
+
shape="rectangle">4eck</form><form shape="rectangle">4eck</form></forms><colors><color
|
|
585
|
+
shape="black">schwarzes</color><color shape="orange">gelbem</color></colors></spelling>
|
|
586
|
+
<sentence no="1" value="fragment without verb" type="feedback" lok="none" id="sentence31">
|
|
587
|
+
ja.<parsetree id="parsetree31" tiefe="1" verzweigung="2.0" hoeflichkeit="2"><NUR><PTKANT
|
|
588
|
+
lemma="Ja"
|
|
589
|
+
>Ja</PTKANT><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
590
|
+
<sentence no="2" value="fragment without verb" type="instruction" lok="relation"
|
|
591
|
+
id="sentence32">und zu guter letzt schwarzes 4eck rechts außen bissel unter gelbem
|
|
592
|
+
4eck<parsetree id="parsetree32" tiefe="3" verzweigung="3.5" hoeflichkeit="2"><S><KON
|
|
593
|
+
lemma="und">Und</KON><PP><PTKA lemma="zu">zu</PTKA><ADJA lemma="gut">guter</ADJA><NN
|
|
594
|
+
lemma="Letzt">Letzt</NN></PP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADJA
|
|
595
|
+
lemma="schwarz">schwarzes</ADJA><NPSB><NN lemma="Viereck">Viereck</NN><AVP><ADV
|
|
596
|
+
lemma="rechts">rechts</ADV><ADV lemma="außen"
|
|
597
|
+
>außen</ADV></AVP></NPSB><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NP><ART lemma="ein"
|
|
598
|
+
>ein</ART><PIS lemma="bisschen">bisschen</PIS><PP><APPR lemma="unter"
|
|
599
|
+
>unter</APPR><ADJA lemma="gelb">gelbem</ADJA><NN lemma="Viereck"
|
|
600
|
+
>Viereck</NN></PP></NP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
601
|
+
</annotation>
|
|
602
|
+
<move shape="black_rectangle" from="-1,0" to="215,233" distance="360" time="+259"/>
|
|
603
|
+
<move shape="black_rectangle" from="215,233" to="315,433" distance="200" time="+267"/>
|
|
604
|
+
<chat message="rechts außen" time="+280"/>
|
|
605
|
+
<annotation id="annotation26">
|
|
606
|
+
<spelling id="spelling26"><word id="word89">rechts</word><correction id="correction89"
|
|
607
|
+
>Rechts</correction> außen</spelling>
|
|
608
|
+
<sentence no="1" value="fragment without verb" type="correction" lok="correction"
|
|
609
|
+
id="sentence33"> rechts außen<parsetree id="parsetree33" tiefe="1" verzweigung="3.0"
|
|
610
|
+
hoeflichkeit="2"><NUR><ADV lemma="rechts">Rechts</ADV><ADV lemma="außen"
|
|
611
|
+
>außen</ADV><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
612
|
+
</annotation>
|
|
613
|
+
<move shape="black_rectangle" from="315,433" to="515,433" distance="0" time="+291"/>
|
|
614
|
+
<endRound timeEnd="16.11.11 11:43"/>
|
|
615
|
+
<state>
|
|
616
|
+
<shape id="orange_circle" pos="215,15" target="215,15"/>
|
|
617
|
+
<shape id="black_triangle" pos="415,15" target="415,15"/>
|
|
618
|
+
<shape id="black_rectangle" pos="515,433" target="515,433"/>
|
|
619
|
+
<shape id="magenta_circle" pos="415,215" target="415,215"/>
|
|
620
|
+
<shape id="orange_rectangle" pos="215,333" target="215,333"/>
|
|
621
|
+
</state>
|
|
622
|
+
</round>
|
|
623
|
+
<round timeStarted="16.11.11 11:43" roundId="5">
|
|
624
|
+
<player name="Flo" role="CHATTER"/>
|
|
625
|
+
<player name="shariar" role="SLIDER"/>
|
|
626
|
+
<state>
|
|
627
|
+
<shape id="cyan_square" pos="-1,0" target="15,515"/>
|
|
628
|
+
<shape id="pink_rectangle" pos="-1,0" target="515,233"/>
|
|
629
|
+
<shape id="blue_square" pos="-1,0" target="515,115"/>
|
|
630
|
+
<shape id="magenta_ellipse" pos="-1,0" target="115,533"/>
|
|
631
|
+
<shape id="yellow_circle" pos="-1,0" target="215,315"/>
|
|
632
|
+
</state>
|
|
633
|
+
<active player="CHATTER"/>
|
|
634
|
+
<chat message="hellblaues dreieck untere linke ecke" time="+35"/>
|
|
635
|
+
<annotation id="annotation27">
|
|
636
|
+
<spelling id="spelling27"><word id="word90">hellblaues</word><correction id="correction90"
|
|
637
|
+
>Hellblaues</correction>
|
|
638
|
+
<word id="word91">dreieck</word><correction id="correction91">Dreieck</correction>, untere
|
|
639
|
+
linke <word id="word92">ecke</word><correction id="correction92"
|
|
640
|
+
>Ecke</correction><forms><form shape="square">dreieck</form></forms><colors><color
|
|
641
|
+
shape="cyan">hellblaues</color></colors></spelling>
|
|
642
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="destination"
|
|
643
|
+
id="sentence34"> hellblaues dreieck untere linke ecke<parsetree id="parsetree34" tiefe="2"
|
|
644
|
+
verzweigung="3.0" hoeflichkeit="2"><NUR><MPN><ADJA lemma="hellblau">Hellblaues</ADJA><NN
|
|
645
|
+
lemma="Dreieck">Dreieck</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA></MPN><NP><ADJA
|
|
646
|
+
lemma="unten">untere</ADJA><ADJA lemma="links">linke</ADJA><NN lemma="Ecke"
|
|
647
|
+
>Ecke</NN></NP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
648
|
+
</annotation>
|
|
649
|
+
<move shape="cyan_square" from="-1,0" to="215,215" distance="1082" time="+41"/>
|
|
650
|
+
<move shape="cyan_square" from="215,215" to="15,515" distance="1020" time="+43"/>
|
|
651
|
+
<chat message="rechts daneben das pinkne etwas" time="+63"/>
|
|
652
|
+
<annotation id="annotation28">
|
|
653
|
+
<spelling id="spelling28"><word id="word93">rechts</word><correction id="correction93"
|
|
654
|
+
>Rechts</correction> daneben, das <word id="word94">pinkne</word><correction
|
|
655
|
+
id="correction94">pinke</correction>
|
|
656
|
+
<word id="word95">etwas</word><correction id="correction95">Etwas</correction><forms><form
|
|
657
|
+
shape="ellipse">etwas</form></forms><colors><color shape="magenta"
|
|
658
|
+
>pinkne</color></colors></spelling>
|
|
659
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="relation"
|
|
660
|
+
id="sentence35"> rechts daneben das pinkne etwas<parsetree id="parsetree35" tiefe="3"
|
|
661
|
+
verzweigung="2.5" hoeflichkeit="2"><CS><S><ADV lemma="rechts">Rechts</ADV><PP><PROAV
|
|
662
|
+
lemma="daneben"
|
|
663
|
+
>daneben</PROAV></PP></S><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><ART lemma="das"
|
|
664
|
+
>das</ART><ADJA lemma="pink">pinke</ADJA><NN lemma="Etwas"
|
|
665
|
+
>Etwas</NN></S><PUNCTUATION_STOP>.</PUNCTUATION_STOP></CS></parsetree></sentence>
|
|
666
|
+
</annotation>
|
|
667
|
+
<move shape="magenta_ellipse" from="-1,0" to="215,233" distance="918" time="+73"/>
|
|
668
|
+
<move shape="magenta_ellipse" from="215,233" to="115,533" distance="862" time="+75"/>
|
|
669
|
+
<chat
|
|
670
|
+
message="der gelbe kreis: spalte neben pink etwas mehr als etwas hoeher d.h. diagonal mit hellblauem viereck"
|
|
671
|
+
time="+181"/>
|
|
672
|
+
<annotation id="annotation29">
|
|
673
|
+
<spelling id="spelling29"><word id="word96">der</word><correction id="correction96"
|
|
674
|
+
>Der</correction><word id="word97">gelbe</word><correction id="correction97"
|
|
675
|
+
>gelbe</correction><word id="word98">kreis</word><correction id="correction98"
|
|
676
|
+
>Kreis</correction>: <word id="word99">spalte</word><correction id="correction99"
|
|
677
|
+
>Spalte</correction> neben <word id="word100">pink</word><correction id="correction100"
|
|
678
|
+
>Pink</correction>, etwas mehr als etwas <word id="word101">hoeher</word><correction
|
|
679
|
+
id="correction101">höher</correction>, <word id="word102">d.h.</word><correction
|
|
680
|
+
id="correction102">das heißt</correction> diagonal mit hellblauem <word id="word103"
|
|
681
|
+
>viereck</word><correction id="correction103">Viereck</correction><forms><form
|
|
682
|
+
shape="circle">kreis</form><form shape="ellipse">etwas</form><form shape="square"
|
|
683
|
+
>viereck</form></forms><colors><color shape="yellow">gelbe</color><color shape="magenta"
|
|
684
|
+
>pink</color><color shape="cyan">hellblauem</color></colors></spelling>
|
|
685
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial+relation"
|
|
686
|
+
id="sentence36"> der gelbe kreis: spalte neben pink etwas mehr als etwas hoeher d.h.
|
|
687
|
+
diagonal mit hellblauem viereck<parsetree id="parsetree36" tiefe="6"
|
|
688
|
+
verzweigung="2.8181818181818183" hoeflichkeit="2"><CS><S><NPOA><ART lemma="der"
|
|
689
|
+
>Der</ART><ADJA lemma="gelb">gelbe</ADJA><NN lemma="Kreis"
|
|
690
|
+
>Kreis</NN><PUNCTUATION_STOP>:</PUNCTUATION_STOP><NN lemma="Spalte"
|
|
691
|
+
>Spalte</NN></NPOA><PP><APPR lemma="neben">neben</APPR><NN lemma="pink"
|
|
692
|
+
>Pink</NN></PP></S><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><PIS lemma="etwas"
|
|
693
|
+
>etwas</PIS><AP><AVP><ADV lemma="mehr">mehr</ADV><NP><KOKOM lemma="als"
|
|
694
|
+
>als</KOKOM><PIS lemma="etwas">etwas</PIS></NP></AVP><ADJD lemma="höher"
|
|
695
|
+
>höher</ADJD><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><PDS lemma="das"
|
|
696
|
+
>das</PDS><VVFIN lemma="heißen">heißt</VVFIN><AP><ADJD lemma="diagonal"
|
|
697
|
+
>diagonal</ADJD><PP><APPR lemma="mit">mit</APPR><ADJA lemma="hellblau"
|
|
698
|
+
>hellblauem</ADJA><NN lemma="Viereck"
|
|
699
|
+
>Viereck</NN></PP></AP></S></AP></S><PUNCTUATION_STOP>.</PUNCTUATION_STOP></CS></parsetree></sentence>
|
|
700
|
+
</annotation>
|
|
701
|
+
<move shape="yellow_circle" from="-1,0" to="215,215" distance="780" time="+196"/>
|
|
702
|
+
<move shape="yellow_circle" from="215,215" to="215,315" distance="774" time="+207"/>
|
|
703
|
+
<chat
|
|
704
|
+
message="schoen, dass du das verstanden hast! hautfarbenes rechteck eine zeile hoeher als kreis, ganz rechts aussen"
|
|
705
|
+
time="+256"/>
|
|
706
|
+
<annotation id="annotation30">
|
|
707
|
+
<spelling id="spelling30"><word id="word104">schoen</word><correction id="correction104"
|
|
708
|
+
>Schön</correction>, dass du das verstanden hast! <word id="word105"
|
|
709
|
+
>hautfarbenes</word><correction id="correction105">Hautfarbenes</correction>
|
|
710
|
+
<word id="word106">rechteck</word><correction id="correction106">Rechteck</correction>, eine
|
|
711
|
+
<word id="word107">zeile</word><correction id="correction107">Zeile</correction>
|
|
712
|
+
<word id="word108">hoeher</word><correction id="correction108">höher</correction> als <word
|
|
713
|
+
id="word109">kreis</word><correction id="correction109">Kreis</correction>, ganz rechts
|
|
714
|
+
<word id="word110">aussen</word><correction id="correction110"
|
|
715
|
+
>außen</correction><forms><form shape="rectangle">rechteck</form><form shape="circle"
|
|
716
|
+
>kreis</form></forms><colors><color shape="pink"
|
|
717
|
+
>hautfarbenes</color></colors></spelling>
|
|
718
|
+
<sentence no="1" value="sentence declarative" type="feedback" lok="none" syn="complex"
|
|
719
|
+
top="no" ellipse="ja" transORintrans="none" paraORhypo="hypo" verbMC="none" verbC1="VEnd"
|
|
720
|
+
id="sentence37"> schoen, dass du das verstanden hast!<parsetree id="parsetree37" tiefe="3"
|
|
721
|
+
verzweigung="3.3333333333333335" hoeflichkeit="-98"><NP><ADJA lemma="schön"
|
|
722
|
+
>Schön</ADJA><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><KOUS lemma="dass"
|
|
723
|
+
>dass</KOUS><PPER lemma="du">du</PPER><VP><PDS lemma="das">das</PDS><VVPP
|
|
724
|
+
lemma="verstehen">verstanden</VVPP></VP><VAFIN lemma="haben"
|
|
725
|
+
>hast</VAFIN></S><PUNCTUATION_STOP>!</PUNCTUATION_STOP></NP></parsetree></sentence>
|
|
726
|
+
<sentence no="2" value="fragment without verb" type="instruction" lok="spatial+relation"
|
|
727
|
+
id="sentence38"> hautfarbenes rechteck eine zeile hoeher als kreis, ganz rechts
|
|
728
|
+
aussen<parsetree id="parsetree38" tiefe="4" verzweigung="2.3333333333333335"
|
|
729
|
+
hoeflichkeit="2"><CS><S><NPSB><MPN><ADJA lemma="hautfarben">Hautfarbenes</ADJA><NN
|
|
730
|
+
lemma="Rechteck"
|
|
731
|
+
>Rechteck</NN></MPN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NP><ART
|
|
732
|
+
lemma="eine">eine</ART><NN lemma="Zeile">Zeile</NN></NP></NPSB><AP><ADJD
|
|
733
|
+
lemma="höher">höher</ADJD><NP><KOKOM lemma="als">als</KOKOM><NN lemma="Kreis"
|
|
734
|
+
>Kreis</NN></NP></AP></S><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><ADV
|
|
735
|
+
lemma="ganz">ganz</ADV><AVP><ADV lemma="rechts">rechts</ADV><ADV lemma="außen"
|
|
736
|
+
>außen</ADV></AVP></S><PUNCTUATION_STOP>.</PUNCTUATION_STOP></CS></parsetree></sentence>
|
|
737
|
+
</annotation>
|
|
738
|
+
<move shape="pink_rectangle" from="-1,0" to="215,233" distance="607" time="+268"/>
|
|
739
|
+
<move shape="pink_rectangle" from="215,233" to="515,233" distance="528" time="+274"/>
|
|
740
|
+
<chat message="und zu guter letzt: dunkelblaues quadrat genau ueber dem haufarbenen rechteck"
|
|
741
|
+
time="+306"/>
|
|
742
|
+
<annotation id="annotation31">
|
|
743
|
+
<spelling id="spelling31"><word id="word111">und</word><correction id="correction111"
|
|
744
|
+
>Und</correction> zu guter <word id="word112">letzt</word><correction id="correction112"
|
|
745
|
+
>Letzt</correction>: dunkelblaues <word id="word113">quadrat</word><correction
|
|
746
|
+
id="correction113">Quadrat</correction>, genau <word id="word114">ueber</word><correction
|
|
747
|
+
id="correction114">über</correction> dem haufarbenen <word id="word115"
|
|
748
|
+
>rechteck</word><correction id="correction115">Rechteck</correction><forms><form
|
|
749
|
+
shape="square">quadrat</form><form shape="rectangle"
|
|
750
|
+
>rechteck</form></forms><colors><color shape="blue">dunkelblaues</color><color
|
|
751
|
+
shape="pink">hautfarbenen</color></colors></spelling>
|
|
752
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="relation"
|
|
753
|
+
id="sentence39"> und zu guter letzt: dunkelblaues quadrat genau ueber dem haufarbenen
|
|
754
|
+
rechteck<parsetree id="parsetree39" tiefe="4" verzweigung="3.1666666666666665"
|
|
755
|
+
hoeflichkeit="2"><S><KON lemma="und">Und</KON><S><NPSB><AP><PTKA lemma="zu">zu</PTKA><ADJA
|
|
756
|
+
lemma="gut">guter</ADJA></AP><NN lemma="Letzt"
|
|
757
|
+
>Letzt</NN></NPSB><PUNCTUATION_STOP>:</PUNCTUATION_STOP><NP><ADJA lemma="dunkelblau"
|
|
758
|
+
>dunkelblaues</ADJA><NN lemma="Quadrat"
|
|
759
|
+
>Quadrat</NN></NP></S><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><PP><ADJD lemma="genau"
|
|
760
|
+
>genau</ADJD><APPR lemma="über">über</APPR><ART lemma="dem">dem</ART><ADJA
|
|
761
|
+
lemma="hautfarben">haufarbenen</ADJA><NN lemma="Rechteck"
|
|
762
|
+
>Rechteck</NN></PP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
763
|
+
</annotation>
|
|
764
|
+
<move shape="blue_square" from="-1,0" to="215,215" distance="316" time="+316"/>
|
|
765
|
+
<move shape="blue_square" from="215,215" to="515,115" distance="0" time="+318"/>
|
|
766
|
+
<endRound timeEnd="16.11.11 11:49"/>
|
|
767
|
+
<state>
|
|
768
|
+
<shape id="cyan_square" pos="15,515" target="15,515"/>
|
|
769
|
+
<shape id="pink_rectangle" pos="515,233" target="515,233"/>
|
|
770
|
+
<shape id="blue_square" pos="515,115" target="515,115"/>
|
|
771
|
+
<shape id="magenta_ellipse" pos="115,533" target="115,533"/>
|
|
772
|
+
<shape id="yellow_circle" pos="215,315" target="215,315"/>
|
|
773
|
+
</state>
|
|
774
|
+
</round>
|
|
775
|
+
<round timeStarted="16.11.11 11:49" roundId="6">
|
|
776
|
+
<player name="shariar" role="CHATTER"/>
|
|
777
|
+
<player name="Flo" role="SLIDER"/>
|
|
778
|
+
<state>
|
|
779
|
+
<shape id="yellow_triangle" pos="-1,0" target="215,415"/>
|
|
780
|
+
<shape id="green_ellipse" pos="-1,0" target="415,333"/>
|
|
781
|
+
<shape id="black_rectangle" pos="-1,0" target="515,533"/>
|
|
782
|
+
<shape id="red_circle" pos="-1,0" target="515,115"/>
|
|
783
|
+
<shape id="blue_triangle" pos="-1,0" target="215,515"/>
|
|
784
|
+
</state>
|
|
785
|
+
<active player="CHATTER"/>
|
|
786
|
+
<chat message="war gut erklärt. schwarzes 4eck unten rechts außen" time="+36"/>
|
|
787
|
+
<annotation id="annotation32">
|
|
788
|
+
<spelling id="spelling32"><word id="word116">war</word><correction id="correction116"
|
|
789
|
+
>War</correction> gut erklärt. <word id="word117">schwarzes</word><correction
|
|
790
|
+
id="correction117">Schwarzes</correction>
|
|
791
|
+
<word id="word118">4eck</word><correction id="correction118">Viereck</correction>, unten
|
|
792
|
+
rechts außen<forms><form shape="rectangle">4eck</form></forms><colors><color shape="black"
|
|
793
|
+
>schwarzes</color></colors></spelling>
|
|
794
|
+
<sentence no="1" value="fragment with verb" type="feedback" lok="none" id="sentence40"> war
|
|
795
|
+
gut erklärt.<parsetree id="parsetree40" tiefe="2" verzweigung="2.5" hoeflichkeit="3"
|
|
796
|
+
><S><VAFIN lemma="sein">War</VAFIN><VP><ADJD lemma="gut">gut</ADJD><VVPP
|
|
797
|
+
lemma="erklären"
|
|
798
|
+
>erklärt</VVPP></VP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
799
|
+
<sentence no="2" value="fragment with verb" type="instruction" lok="destination"
|
|
800
|
+
id="sentence41"> schwarzes 4eck unten rechts außen<parsetree id="parsetree41" tiefe="3"
|
|
801
|
+
verzweigung="3.0" hoeflichkeit="3"><NUR><ADJA lemma="schwarz">Schwarzes</ADJA><NP><NN
|
|
802
|
+
lemma="Viereck">Viereck</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><AVP><ADV
|
|
803
|
+
lemma="unten">unten</ADV><ADV lemma="rechts">rechts</ADV><ADV lemma="außen"
|
|
804
|
+
>außen</ADV></AVP></NP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
805
|
+
</annotation>
|
|
806
|
+
<move shape="black_rectangle" from="-1,0" to="215,233" distance="1127" time="+43"/>
|
|
807
|
+
<move shape="black_rectangle" from="215,233" to="515,533" distance="1044" time="+46"/>
|
|
808
|
+
<chat message="roter kreis gleiche spalte, fast ganz oben" time="+67"/>
|
|
809
|
+
<annotation id="annotation33">
|
|
810
|
+
<spelling id="spelling33"><word id="word119">roter</word><correction id="correction119"
|
|
811
|
+
>Roter</correction>
|
|
812
|
+
<word id="word120">kreis</word><correction id="correction120">Kreis</correction>, gleiche
|
|
813
|
+
<word id="word121">spalte</word><correction id="correction121">Spalte</correction>, fast
|
|
814
|
+
ganz oben<forms><form shape="circle">kreis</form></forms><colors><color shape="red"
|
|
815
|
+
>roter</color></colors></spelling>
|
|
816
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial"
|
|
817
|
+
id="sentence42"> roter kreis gleiche spalte, fast ganz oben<parsetree id="parsetree42"
|
|
818
|
+
tiefe="4" verzweigung="2.5" hoeflichkeit="2"><CS><S><ADJA lemma="rot">Roter</ADJA><NP><NN
|
|
819
|
+
lemma="Kreis">Kreis</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NP><ADJA
|
|
820
|
+
lemma="gleich">gleiche</ADJA><NN lemma="Spalte"
|
|
821
|
+
>Spalte</NN></NP></NP></S><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><ADV lemma="fast"
|
|
822
|
+
>fast</ADV><AVP><ADV lemma="ganz">ganz</ADV><ADV lemma="oben"
|
|
823
|
+
>oben</ADV></AVP></S><PUNCTUATION_STOP>.</PUNCTUATION_STOP></CS></parsetree></sentence>
|
|
824
|
+
</annotation>
|
|
825
|
+
<move shape="red_circle" from="-1,0" to="215,215" distance="955" time="+72"/>
|
|
826
|
+
<move shape="red_circle" from="215,215" to="515,115" distance="901" time="+74"/>
|
|
827
|
+
<chat message="genau. blaues viereck zeile wie schwarzes viereck, aber fast daneben" time="+110"/>
|
|
828
|
+
<annotation id="annotation34">
|
|
829
|
+
<spelling id="spelling34"><word id="word122">genau</word><correction id="correction122"
|
|
830
|
+
>Genau</correction>. <word id="word123">blaues</word><correction id="correction123"
|
|
831
|
+
>Blaues</correction>
|
|
832
|
+
<word id="word124">viereck</word><correction id="correction124">Viereck</correction>, <word
|
|
833
|
+
id="word125">zeile</word><correction id="correction125">Zeile</correction>, wie schwarzes
|
|
834
|
+
<word id="word126">viereck</word><correction id="correction126">Viereck</correction>, aber
|
|
835
|
+
fast daneben<forms><form shape="triangle">viereck</form><form shape="rectangle"
|
|
836
|
+
>viereck</form></forms><colors><color shape="blue">blaues</color><color shape="black"
|
|
837
|
+
>schwarzes</color></colors></spelling>
|
|
838
|
+
<sentence no="1" value="fragment without verb" type="feedback" lok="none" id="sentence43">
|
|
839
|
+
genau. <parsetree id="parsetree43" tiefe="1" verzweigung="2.0" hoeflichkeit="2"><NUR><PTKANT
|
|
840
|
+
lemma="genau"
|
|
841
|
+
>Genau</PTKANT><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
842
|
+
<sentence no="2" value="fragment without verb" type="instruction" lok="spatial+relation"
|
|
843
|
+
id="sentence44"> blaues viereck zeile wie schwarzes viereck, aber fast daneben<parsetree
|
|
844
|
+
id="parsetree44" tiefe="3" verzweigung="3.0" hoeflichkeit="2"><S><NP><ADJA lemma="blau"
|
|
845
|
+
>Blaues</ADJA><CNP><NN lemma="Viereck"
|
|
846
|
+
>Viereck</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NN lemma="Zeile"
|
|
847
|
+
>Zeile</NN></CNP></NP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NP><KOKOM lemma="wie"
|
|
848
|
+
>wie</KOKOM><ADJA lemma="schwarz">schwarzes</ADJA><NN lemma="Viereck"
|
|
849
|
+
>Viereck</NN></NP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><AVP><KON lemma="aber"
|
|
850
|
+
>aber</KON><ADV lemma="fast">fast</ADV></AVP><PP><PROAV lemma="daneben"
|
|
851
|
+
>daneben</PROAV></PP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
852
|
+
</annotation>
|
|
853
|
+
<move shape="blue_triangle" from="-1,0" to="215,215" distance="768" time="+120"/>
|
|
854
|
+
<move shape="blue_triangle" from="215,215" to="315,515" distance="714" time="+125"/>
|
|
855
|
+
<chat
|
|
856
|
+
message="ubs, war ein 3eck... schräg diagonal rechts zu blauem 3eck mit einem kästchen lücke gruene ellipse (so würd ich das nennen)"
|
|
857
|
+
time="+217"/>
|
|
858
|
+
<annotation id="annotation35">
|
|
859
|
+
<spelling id="spelling35"><word id="word127">ubs</word><correction id="correction127"
|
|
860
|
+
>Ups</correction>, war ein <word id="word128">3eck</word><correction id="correction128"
|
|
861
|
+
>Dreieck</correction>. <word id="word129">schräg</word><correction id="correction129"
|
|
862
|
+
>Schräg</correction> diagonal rechts, zu blauem <word id="word130">3eck</word><correction
|
|
863
|
+
id="correction130">Dreieck</correction>, mit einem <word id="word131"
|
|
864
|
+
>kästchen</word><correction id="correction131">Kästchen</correction>
|
|
865
|
+
<word id="word132">lücke</word><correction id="correction132">Lücke</correction>, gruene
|
|
866
|
+
<word id="word133">ellipse</word><correction id="correction133">Ellipse</correction>.
|
|
867
|
+
<word id="word134">so</word><correction id="correction134">So</correction>
|
|
868
|
+
<word id="word135">würd</word><correction id="correction135">würde</correction> ich das
|
|
869
|
+
nennen.<forms><form shape="triangle">3eck</form><form shape="triangle">3eck</form><form
|
|
870
|
+
shape="ellipse">ellipse</form></forms><colors><color shape="blue">blauem</color><color
|
|
871
|
+
shape="green">gruene</color></colors></spelling>
|
|
872
|
+
<sentence no="1" value="fragment with verb" type="correction" lok="none" id="sentence45">ups,
|
|
873
|
+
war ein 3eck... <parsetree id="parsetree45" tiefe="2" verzweigung="3.5" hoeflichkeit="3"
|
|
874
|
+
><S><XY>Ups</XY><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><VAFIN lemma="sein"
|
|
875
|
+
>war</VAFIN><NPSB><ART lemma="ein">ein</ART><NN lemma="Dreieck"
|
|
876
|
+
>Dreieck</NN></NPSB><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
877
|
+
<sentence no="2" value="fragment with verb" type="instruction" lok="spatial+relation"
|
|
878
|
+
id="sentence46">schräg diagonal rechts zu blauem 3eck mit einem kästchen lücke gruene
|
|
879
|
+
ellipse <parsetree id="parsetree46" tiefe="3" verzweigung="4.75" hoeflichkeit="3"><S><ADJD
|
|
880
|
+
lemma="schräg">Schräg</ADJD><ADV lemma="diagonal">diagonal</ADV><ADV lemma="rechts"
|
|
881
|
+
>rechts</ADV><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><VP><VZ><PTKZU lemma="zu"
|
|
882
|
+
>zu</PTKZU><ADJA lemma="blau">blauem</ADJA></VZ></VP><NN lemma="Dreieck"
|
|
883
|
+
>Dreieck</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><PP><APPR lemma="mit"
|
|
884
|
+
>mit</APPR><ART lemma="ein">einem</ART><NN lemma="Kästchen">Kästchen</NN><NN
|
|
885
|
+
lemma="Lücke">Lücke</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADJA lemma="grün"
|
|
886
|
+
>gruene</ADJA><NN lemma="Ellipse"
|
|
887
|
+
>Ellipse</NN></PP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
888
|
+
<sentence no="3" value="sentence conjunktive" type="notice" lok="none" syn="simple" top="yes"
|
|
889
|
+
ellipse="nein" transORintrans="trans" ParaORHypo="none" verbMC="V2" verbC="none"
|
|
890
|
+
id="sentence47">so würd ich das nennen <parsetree id="parsetree47" tiefe="2"
|
|
891
|
+
verzweigung="3.5" hoeflichkeit="1"><S><ADV lemma="so">So</ADV><VAFIN lemma="würden"
|
|
892
|
+
>würde</VAFIN><PPER lemma="ich">ich</PPER><VP><PDS lemma="das">das</PDS><VVINF
|
|
893
|
+
lemma="nennen"
|
|
894
|
+
>nennen</VVINF></VP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
895
|
+
</annotation>
|
|
896
|
+
<move shape="green_ellipse" from="-1,0" to="215,233" distance="527" time="+250"/>
|
|
897
|
+
<move shape="green_ellipse" from="215,233" to="515,333" distance="487" time="+268"/>
|
|
898
|
+
<chat
|
|
899
|
+
message="richtig, aber habe gemerkt, dass das blaue 3eck bissel weiter nach links muss - so geht dann auch das gruene teil eins weiter nach links auf gleicher höhe"
|
|
900
|
+
time="+346"/>
|
|
901
|
+
<annotation id="annotation36">
|
|
902
|
+
<spelling id="spelling36"><word id="word136">richtig</word><correction id="correction136"
|
|
903
|
+
>Richtig</correction>, aber habe gemerkt, dass das blaue <word id="word137"
|
|
904
|
+
>3eck</word><correction id="correction137">Dreieck</correction>
|
|
905
|
+
<word id="word138">bissel</word><correction id="correction138">ein bisschen</correction>
|
|
906
|
+
weiter nach links muss, so geht dann auch das gruene <word id="word139">
|
|
907
|
+
teil</word><correction id="correction139"> Teil</correction> eins weiter nach links, auf
|
|
908
|
+
gleicher <word id="word140">höhe</word><correction id="correction140"
|
|
909
|
+
>Höhe</correction><forms><form shape="triangle">3eck</form><form shape="ellipse"
|
|
910
|
+
>teil</form></forms><colors><color shape="blue">blaue</color><color shape="green"
|
|
911
|
+
>gruene</color></colors></spelling>
|
|
912
|
+
<sentence no="1" value="fragment with verb" type="correction with feedback" lok="destination"
|
|
913
|
+
id="sentence48"> richtig, aber habe gemerkt, dass das blaue 3eck bissel weiter nach links
|
|
914
|
+
muss - so geht dann auch das gruene teil eins weiter nach links auf gleicher höhe<parsetree
|
|
915
|
+
id="parsetree48" tiefe="5" verzweigung="4.2" hoeflichkeit="3"><CS><S><ADJD lemma="richtig"
|
|
916
|
+
>Richtig</ADJD><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><KON lemma="aber"
|
|
917
|
+
>aber</KON><VAFIN lemma="haben">habe</VAFIN><VVPP lemma="merken"
|
|
918
|
+
>gemerkt</VVPP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><KOUS lemma="dass"
|
|
919
|
+
>dass</KOUS><NPSB><ART lemma="das">das</ART><ADJA lemma="blau">blaue</ADJA><NN
|
|
920
|
+
lemma="Dreieck">Dreieck</NN><NP><ART lemma="ein">ein</ART><PIS lemma="bisschen"
|
|
921
|
+
>bisschen</PIS></NP></NPSB><ADV lemma="weiter">weiter</ADV><PP><APPR
|
|
922
|
+
lemma="nach">nach</APPR><ADV lemma="links">links</ADV></PP><VVFIN lemma="müssen"
|
|
923
|
+
>muss</VVFIN></S></S><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><ADV lemma="so"
|
|
924
|
+
>so</ADV><VVFIN lemma="gehen">geht</VVFIN><ADV lemma="dann">dann</ADV><NPSB><ADV
|
|
925
|
+
lemma="auch">auch</ADV><ART lemma="das">das</ART><ADJA lemma="grün"
|
|
926
|
+
>gruene</ADJA><NN lemma="Teil">Teil</NN><CARD lemma="eins">eins</CARD></NPSB><ADV
|
|
927
|
+
lemma="weiter">weiter</ADV><PP><APPR lemma="nach">nach</APPR><ADV lemma="links"
|
|
928
|
+
>links</ADV></PP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><PP><APPR lemma="auf"
|
|
929
|
+
>auf</APPR><ADJA lemma="gleich">gleicher</ADJA><NN lemma="Höhe"
|
|
930
|
+
>Höhe</NN></PP></S><PUNCTUATION_STOP>.</PUNCTUATION_STOP></CS></parsetree></sentence>
|
|
931
|
+
</annotation>
|
|
932
|
+
<move shape="blue_triangle" from="315,515" to="215,515" distance="477" time="+362"/>
|
|
933
|
+
<chat message="gut, gruen auch" time="+379"/>
|
|
934
|
+
<annotation id="annotation37">
|
|
935
|
+
<spelling id="spelling37"><word id="word141">gut</word><correction id="correction141"
|
|
936
|
+
>Gut</correction>, <word id="word142">gruen</word><correction id="correction142"
|
|
937
|
+
>Grün</correction> auch<colors><color shape="green">gruen</color></colors></spelling>
|
|
938
|
+
<sentence no="1" value="fragment without verb" type="instruction with feedback" lok="none"
|
|
939
|
+
id="sentence49"> gut, gruen auch<parsetree id="parsetree49" tiefe="2" verzweigung="3.0"
|
|
940
|
+
hoeflichkeit="2"><S><ADJD lemma="gut"
|
|
941
|
+
>Gut</ADJD><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NPSB><NN lemma="grün"
|
|
942
|
+
>Grün</NN><ADV lemma="auch"
|
|
943
|
+
>auch</ADV></NPSB><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
944
|
+
</annotation>
|
|
945
|
+
<move shape="green_ellipse" from="515,333" to="415,333" distance="467" time="+383"/>
|
|
946
|
+
<chat message="gut. gelbes 3eck über blaues. fertig :-)" time="+399"/>
|
|
947
|
+
<annotation id="annotation38">
|
|
948
|
+
<spelling id="spelling38"><word id="word143">gut</word><correction id="correction143"
|
|
949
|
+
>Gut</correction>. <word id="word144">gelbes</word><correction id="correction144"
|
|
950
|
+
>Gelbes</correction>
|
|
951
|
+
<word id="word145">3eck</word><correction id="correction145">Dreieck</correction>, über
|
|
952
|
+
blaues. <word id="word146">fertig</word><correction id="correction146"
|
|
953
|
+
>Fertig</correction><forms><form shape="triangle">3eck</form><form shape="triangle"
|
|
954
|
+
>blaues</form></forms><colors><color shape="yellow">gelbes</color><color shape="blue"
|
|
955
|
+
>blaues</color></colors></spelling>
|
|
956
|
+
<sentence no="1" value="fragment without verb" type="feedback" lok="none" id="sentence50">
|
|
957
|
+
gut.<parsetree id="parsetree50" tiefe="1" verzweigung="2.0" hoeflichkeit="2"><NUR><ADJD
|
|
958
|
+
lemma="gut"
|
|
959
|
+
>Gut</ADJD><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
960
|
+
<sentence no="2" value="fragment without verb" type="instruction" lok="relation"
|
|
961
|
+
id="sentence51">gelbes 3eck über blaues.<parsetree id="parsetree51" tiefe="3"
|
|
962
|
+
verzweigung="2.6666666666666665" hoeflichkeit="2"><NUR><NP><ADJA lemma="gelb"
|
|
963
|
+
>Gelbes</ADJA><NN lemma="Dreieck"
|
|
964
|
+
>Dreieck</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><VP><ADV lemma="über"
|
|
965
|
+
>über</ADV><ADJA lemma="blau"
|
|
966
|
+
>blaues</ADJA></VP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NP></NUR></parsetree></sentence>
|
|
967
|
+
<sentence no="3" value="fragment without verb" type="notice" lok="none" id="sentence52">fertig
|
|
968
|
+
:-)<parsetree id="parsetree52" tiefe="1" verzweigung="2.0" hoeflichkeit="2"><NUR><ADJD
|
|
969
|
+
lemma="fertig"
|
|
970
|
+
>Fertig</ADJD><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
971
|
+
</annotation>
|
|
972
|
+
<move shape="yellow_triangle" from="-1,0" to="215,215" distance="200" time="+403"/>
|
|
973
|
+
<move shape="yellow_triangle" from="215,215" to="215,415" distance="0" time="+405"/>
|
|
974
|
+
<endRound timeEnd="16.11.11 11:56"/>
|
|
975
|
+
<state>
|
|
976
|
+
<shape id="yellow_triangle" pos="215,415" target="215,415"/>
|
|
977
|
+
<shape id="green_ellipse" pos="415,333" target="415,333"/>
|
|
978
|
+
<shape id="black_rectangle" pos="515,533" target="515,533"/>
|
|
979
|
+
<shape id="red_circle" pos="515,115" target="515,115"/>
|
|
980
|
+
<shape id="blue_triangle" pos="215,515" target="215,515"/>
|
|
981
|
+
</state>
|
|
982
|
+
</round>
|
|
983
|
+
<round timeStarted="16.11.11 11:56" roundId="7">
|
|
984
|
+
<player name="Flo" role="CHATTER"/>
|
|
985
|
+
<player name="shariar" role="SLIDER"/>
|
|
986
|
+
<state>
|
|
987
|
+
<shape id="blue_ellipse" pos="-1,0" target="15,133"/>
|
|
988
|
+
<shape id="blue_rectangle" pos="-1,0" target="415,33"/>
|
|
989
|
+
<shape id="magenta_triangle" pos="-1,0" target="215,215"/>
|
|
990
|
+
<shape id="cyan_ellipse" pos="-1,0" target="15,533"/>
|
|
991
|
+
<shape id="green_square" pos="-1,0" target="415,315"/>
|
|
992
|
+
</state>
|
|
993
|
+
<active player="CHATTER"/>
|
|
994
|
+
<chat message="hellblaue ellipse(!) untere linke ecke" time="+44"/>
|
|
995
|
+
<annotation id="annotation39">
|
|
996
|
+
<spelling id="spelling39"><word id="word147">hellblaue</word><correction id="correction147"
|
|
997
|
+
>Hellblaue</correction>
|
|
998
|
+
<word id="word148">ellipse</word><correction id="correction148">Ellipse</correction>, untere
|
|
999
|
+
linke <word id="word149">ecke</word><correction id="correction149"
|
|
1000
|
+
>Ecke</correction><forms><form shape="ellipse">ellipse</form></forms><colors><color
|
|
1001
|
+
shape="cyan">hellblaue</color></colors></spelling>
|
|
1002
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="destination"
|
|
1003
|
+
id="sentence53">hellblaue ellipse(!) untere linke ecke <parsetree id="parsetree53" tiefe="3"
|
|
1004
|
+
verzweigung="3.0" hoeflichkeit="2"><NP><ADJA lemma="hellblau">Hellblaue</ADJA><NP><NN
|
|
1005
|
+
lemma="Ellipse">Ellipse</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><NP><ADJA
|
|
1006
|
+
lemma="unten">untere</ADJA><ADJA lemma="links">linke</ADJA><NN lemma="Ecke"
|
|
1007
|
+
>Ecke</NN></NP></NP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NP></parsetree></sentence>
|
|
1008
|
+
</annotation>
|
|
1009
|
+
<move shape="cyan_ellipse" from="-1,0" to="215,233" distance="827" time="+51"/>
|
|
1010
|
+
<move shape="cyan_ellipse" from="215,233" to="15,533" distance="745" time="+53"/>
|
|
1011
|
+
<chat message="dunkelblaue ellipse gleiche spalte fast ganz oben" time="+72"/>
|
|
1012
|
+
<annotation id="annotation40">
|
|
1013
|
+
<spelling id="spelling40"><word id="word150">dunkelblaue</word><correction id="correction150"
|
|
1014
|
+
>Dunkelblaue</correction>
|
|
1015
|
+
<word id="word151">ellipse</word><correction id="correction151">Ellipse</correction>,
|
|
1016
|
+
gleiche <word id="word152">spalte</word><correction id="correction152">Spalte</correction>,
|
|
1017
|
+
fast ganz oben<forms><form shape="ellipse">ellipse</form></forms><colors><color shape="blue"
|
|
1018
|
+
>dunkelblaue</color></colors></spelling>
|
|
1019
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial"
|
|
1020
|
+
id="sentence54"> dunkelblaue ellipse gleiche spalte fast ganz oben<parsetree
|
|
1021
|
+
id="parsetree54" tiefe="3" verzweigung="3.25" hoeflichkeit="2"><NUR><NP><ADJA
|
|
1022
|
+
lemma="dunkelblau">Dunkelblaue</ADJA><NN lemma="Ellipse"
|
|
1023
|
+
>Ellipse</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA></NP><ADJA lemma="gleich"
|
|
1024
|
+
>gleiche</ADJA><NP><NN lemma="Spalte"
|
|
1025
|
+
>Spalte</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><AVP><ADV lemma="fast"
|
|
1026
|
+
>fast</ADV><ADV>ganz</ADV><ADV lemma="oben"
|
|
1027
|
+
>oben</ADV></AVP></NP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NUR></parsetree></sentence>
|
|
1028
|
+
</annotation>
|
|
1029
|
+
<move shape="blue_ellipse" from="-1,0" to="215,233" distance="766" time="+77"/>
|
|
1030
|
+
<move shape="blue_ellipse" from="215,233" to="15,133" distance="733" time="+78"/>
|
|
1031
|
+
<chat message="blaues rechteck obere zeile fast ganz rechts aussen" time="+113"/>
|
|
1032
|
+
<annotation id="annotation41">
|
|
1033
|
+
<spelling id="spelling41"><word id="word153">blaues</word><correction id="correction153"
|
|
1034
|
+
>Blaues</correction>
|
|
1035
|
+
<word id="word154">rechteck</word><correction id="correction154">Rechteck</correction>,
|
|
1036
|
+
obere <word id="word155">zeile</word><correction id="correction155">Zeile</correction>, fast
|
|
1037
|
+
ganz rechts <word id="word156">aussen</word><correction id="correction156"
|
|
1038
|
+
>außen</correction><forms><form shape="rectangle">rechteck</form></forms><colors><color
|
|
1039
|
+
shape="blue">blaues</color></colors></spelling>
|
|
1040
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial"
|
|
1041
|
+
id="sentence55"> blaues rechteck obere zeile fast ganz rechts aussen<parsetree
|
|
1042
|
+
id="parsetree55" tiefe="2" verzweigung="3.5" hoeflichkeit="2"><S><NPSB><ADJA lemma="blau"
|
|
1043
|
+
>Blaues</ADJA><NN lemma="Rechteck"
|
|
1044
|
+
>Rechteck</NN></NPSB><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADJA lemma="oben"
|
|
1045
|
+
>obere</ADJA><NPSB><NN lemma="Zeile"
|
|
1046
|
+
>Zeile</NN></NPSB><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADV lemma="fast"
|
|
1047
|
+
>fast</ADV><ADV lemma="ganz">ganz</ADV><AVP><ADV lemma="rechts">rechts</ADV><ADV
|
|
1048
|
+
lemma="außen"
|
|
1049
|
+
>außen</ADV></AVP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
1050
|
+
</annotation>
|
|
1051
|
+
<move shape="blue_rectangle" from="-1,0" to="215,233" distance="665" time="+119"/>
|
|
1052
|
+
<move shape="blue_rectangle" from="215,233" to="415,33" distance="603" time="+122"/>
|
|
1053
|
+
<chat
|
|
1054
|
+
message="quadrat gleiche spalte wie rechteck aber etwas weiter unten als genaue mitte der spalte"
|
|
1055
|
+
time="+188"/>
|
|
1056
|
+
<annotation id="annotation42">
|
|
1057
|
+
<spelling id="spelling42"><word id="word157">quadrat</word><correction id="correction157"
|
|
1058
|
+
>Quadrat</correction>, gleiche <word id="word158">spalte</word><correction
|
|
1059
|
+
id="correction158">Spalte</correction> wie <word id="word159">rechteck</word><correction
|
|
1060
|
+
id="correction159">Rechteck</correction>, aber etwas weiter unten, als genaue <word
|
|
1061
|
+
id="word160">mitte</word><correction id="correction160">Mitte</correction> der <word
|
|
1062
|
+
id="word161">spalte</word><correction id="correction161">Spalte</correction><forms><form
|
|
1063
|
+
shape="square">quadrat</form><form shape="rectangle">rechteck</form></forms></spelling>
|
|
1064
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial+relation"
|
|
1065
|
+
id="sentence56"> quadrat gleiche spalte wie rechteck aber etwas weiter unten als genaue
|
|
1066
|
+
mitte der spalte<parsetree id="parsetree56" tiefe="3" verzweigung="3.125" hoeflichkeit="2"
|
|
1067
|
+
><S><NP><NN lemma="Quadrat"
|
|
1068
|
+
>Quadrat</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADJA lemma="gleich"
|
|
1069
|
+
>gleiche</ADJA><NN lemma="Spalte">Spalte</NN><NP><KOKOM lemma="wie">wie</KOKOM><NN
|
|
1070
|
+
lemma="Rechteck"
|
|
1071
|
+
>Rechteck</NN></NP></NP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><AVP><KON
|
|
1072
|
+
lemma="aber">aber</KON><AVP><PIS lemma="etwas">etwas</PIS><ADV lemma="weiter"
|
|
1073
|
+
>weiter</ADV></AVP><ADV lemma="unten"
|
|
1074
|
+
>unten</ADV></AVP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><KOKOM lemma="als"
|
|
1075
|
+
>als</KOKOM><NPSB><ADJA lemma="genau">genaue</ADJA><NN lemma="Mitte"
|
|
1076
|
+
>Mitte</NN></NPSB><NPOA><ART lemma="der">der</ART><NN lemma="Spalte"
|
|
1077
|
+
>Spalte</NN></NPOA></S><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
1078
|
+
</annotation>
|
|
1079
|
+
<move shape="green_square" from="-1,0" to="215,215" distance="377" time="+201"/>
|
|
1080
|
+
<move shape="green_square" from="215,215" to="415,315" distance="304" time="+208"/>
|
|
1081
|
+
<chat message="dreieck: in die zeile zw dunkelbl ellipse und quadrat links neben der mitte"
|
|
1082
|
+
time="+319"/>
|
|
1083
|
+
<annotation id="annotation43">
|
|
1084
|
+
<spelling id="spelling43"><word id="word162">dreieck</word><correction id="correction162"
|
|
1085
|
+
>Dreieck</correction>: in die <word id="word163">zeile</word><correction
|
|
1086
|
+
id="correction163">Zeile</correction>
|
|
1087
|
+
<word id="word164">zw</word><correction id="correction164">zwischen</correction>
|
|
1088
|
+
<word id="word165">dunkelbl</word><correction id="correction165">dunkelblauer</correction>
|
|
1089
|
+
<word id="word166">ellipse</word><correction id="correction166">Ellipse</correction> und
|
|
1090
|
+
<word id="word167">quadrat</word><correction id="correction167">Quadrat</correction>,
|
|
1091
|
+
links neben der <word id="word168">mitte</word><correction id="correction168"
|
|
1092
|
+
>Mitte</correction><forms><form shape="triangle">dreieck</form><form shape="ellipse"
|
|
1093
|
+
>ellipse</form><form shape="square">quadrat</form></forms><colors><color shape="blue"
|
|
1094
|
+
>dunkelbl</color></colors></spelling>
|
|
1095
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial+relation"
|
|
1096
|
+
id="sentence57"> dreieck: in die zeile zw dunkelbl ellipse und quadrat links neben der
|
|
1097
|
+
mitte<parsetree id="parsetree57" tiefe="4" verzweigung="3.2857142857142856"
|
|
1098
|
+
hoeflichkeit="2"><S><NN lemma="Dreieck"
|
|
1099
|
+
>Dreieck</NN><PUNCTUATION_STOP>:</PUNCTUATION_STOP><SSB><PP><APPR lemma="in"
|
|
1100
|
+
>in</APPR><ART>die</ART><NN lemma="Zeile">Zeile</NN></PP><PP><APPR
|
|
1101
|
+
lemma="zwischen">zwischen</APPR><AP><ADJA lemma="dunkelblau"
|
|
1102
|
+
>dunkelblauer</ADJA></AP><CNP><NN lemma="Ellipse">Ellipse</NN><KON lemma="und"
|
|
1103
|
+
>und</KON><NN lemma="Quadrat"
|
|
1104
|
+
>Quadrat</NN></CNP></PP><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><PP><ADV
|
|
1105
|
+
lemma="links">links</ADV><APPR lemma="neben">neben</APPR><ART lemma="der"
|
|
1106
|
+
>der</ART><NN lemma="Mitte"
|
|
1107
|
+
>Mitte</NN></PP></SSB><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
1108
|
+
</annotation>
|
|
1109
|
+
<move shape="magenta_triangle" from="-1,0" to="215,215" distance="0" time="+333"/>
|
|
1110
|
+
<endRound timeEnd="16.11.11 12:02"/>
|
|
1111
|
+
<state>
|
|
1112
|
+
<shape id="blue_ellipse" pos="15,133" target="15,133"/>
|
|
1113
|
+
<shape id="blue_rectangle" pos="415,33" target="415,33"/>
|
|
1114
|
+
<shape id="magenta_triangle" pos="215,215" target="215,215"/>
|
|
1115
|
+
<shape id="cyan_ellipse" pos="15,533" target="15,533"/>
|
|
1116
|
+
<shape id="green_square" pos="415,315" target="415,315"/>
|
|
1117
|
+
</state>
|
|
1118
|
+
</round>
|
|
1119
|
+
<round timeStarted="16.11.11 12:02" roundId="8">
|
|
1120
|
+
<player name="shariar" role="CHATTER"/>
|
|
1121
|
+
<player name="Flo" role="SLIDER"/>
|
|
1122
|
+
<state>
|
|
1123
|
+
<shape id="pink_circle" pos="-1,0" target="515,215"/>
|
|
1124
|
+
<shape id="black_circle" pos="-1,0" target="115,415"/>
|
|
1125
|
+
<shape id="black_ellipse" pos="-1,0" target="15,333"/>
|
|
1126
|
+
<shape id="pink_triangle" pos="-1,0" target="415,315"/>
|
|
1127
|
+
<shape id="green_ellipse" pos="-1,0" target="415,533"/>
|
|
1128
|
+
</state>
|
|
1129
|
+
<active player="CHATTER"/>
|
|
1130
|
+
<chat
|
|
1131
|
+
message="wahrscheinlich letztes spiel. schwarze ellipse ganz links genau unter mittellinie"
|
|
1132
|
+
time="+73"/>
|
|
1133
|
+
<annotation id="annotation44">
|
|
1134
|
+
<spelling id="spelling44"><word id="word169">wahrscheinlich </word><correction
|
|
1135
|
+
id="correction169">Wahrscheinlich </correction>letztes <word id="word170"
|
|
1136
|
+
>spiel</word><correction id="correction170">Spiel</correction>. <word id="word171"
|
|
1137
|
+
>schwarze</word><correction id="correction171">Schwarze</correction>
|
|
1138
|
+
<word id="word172">ellipse</word><correction id="correction172">Ellipse</correction> ganz
|
|
1139
|
+
links, genau unter <word id="word173">mittellinie</word><correction id="correction173"
|
|
1140
|
+
>Mittellinie</correction><forms><form shape="ellipse">ellipse</form></forms><colors><color
|
|
1141
|
+
shape="black">schwarze</color></colors></spelling>
|
|
1142
|
+
<sentence no="1" value="fragment without verb" type="notice" lok="none" id="sentence58">
|
|
1143
|
+
wahrscheinlich letztes spiel.<parsetree id="parsetree58" tiefe="2" verzweigung="2.5"
|
|
1144
|
+
hoeflichkeit="2"><NP><AP><ADJD lemma="wahrscheinlich">Wahrscheinlich</ADJD><ADJA
|
|
1145
|
+
lemma="letzte">letztes</ADJA></AP><NN lemma="Spiel"
|
|
1146
|
+
>Spiel</NN><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NP></parsetree></sentence>
|
|
1147
|
+
<sentence no="2" value="fragment without verb" type="instruction" lok="spatial+destination"
|
|
1148
|
+
id="sentence59">schwarze ellipse ganz links genau unter mittellinie <parsetree
|
|
1149
|
+
id="parsetree59" tiefe="3" verzweigung="3.6666666666666665" hoeflichkeit="2"><NP><ADJA
|
|
1150
|
+
lemma="schwarz">Schwarze</ADJA><NN lemma="Ellipse"
|
|
1151
|
+
>Ellipse</NN><AVP><ADV>ganz</ADV><ADV>links</ADV><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><PP><ADJD
|
|
1152
|
+
lemma="genau">genau</ADJD><APPR>unter</APPR><NN lemma="Mittellinie"
|
|
1153
|
+
>Mittellinie</NN></PP></AVP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></NP></parsetree></sentence>
|
|
1154
|
+
</annotation>
|
|
1155
|
+
<move shape="black_ellipse" from="-1,0" to="215,233" distance="1129" time="+81"/>
|
|
1156
|
+
<move shape="black_ellipse" from="215,233" to="15,333" distance="1107" time="+86"/>
|
|
1157
|
+
<chat message="schwarzer kreis diagonal darunter" time="+110"/>
|
|
1158
|
+
<annotation id="annotation45">
|
|
1159
|
+
<spelling id="spelling45"><word id="word174">schwarzer </word><correction id="correction174"
|
|
1160
|
+
>Schwarzer </correction><word id="word175">kreis</word><correction id="correction175"
|
|
1161
|
+
>Kreis</correction>, diagonal darunter<forms><form shape="circle"
|
|
1162
|
+
>kreis</form></forms><colors><color shape="black">schwarzer</color></colors></spelling>
|
|
1163
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial+relation"
|
|
1164
|
+
id="sentence60">schwarzer kreis diagonal darunter<parsetree id="parsetree60" tiefe="2"
|
|
1165
|
+
verzweigung="3.5" hoeflichkeit="2"><S><NPSB><ADJA lemma="schwarz">Schwarzer</ADJA><NN
|
|
1166
|
+
lemma="Kreis">Kreis</NN></NPSB><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADV
|
|
1167
|
+
lemma="diagonal">diagonal</ADV><PROAV lemma="darunter"
|
|
1168
|
+
>darunter</PROAV><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
1169
|
+
</annotation>
|
|
1170
|
+
<move shape="black_circle" from="-1,0" to="215,215" distance="1044" time="+115"/>
|
|
1171
|
+
<move shape="black_circle" from="215,215" to="115,415" distance="1020" time="+117"/>
|
|
1172
|
+
<chat message="gruene ellipse unten fast rechts" time="+165"/>
|
|
1173
|
+
<annotation id="annotation46">
|
|
1174
|
+
<spelling id="spelling46"><word id="word176">gruene</word><correction id="correction176"
|
|
1175
|
+
>Grüne</correction>
|
|
1176
|
+
<word id="word177">ellipse</word><correction id="correction177">Ellipse</correction>, unten
|
|
1177
|
+
fast rechts<forms><form shape="ellipse">ellipse</form></forms><colors><color shape="green"
|
|
1178
|
+
>gruene</color></colors></spelling>
|
|
1179
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="destination"
|
|
1180
|
+
id="sentence61"> gruene ellipse unten fast rechts<parsetree id="parsetree61" tiefe="2"
|
|
1181
|
+
verzweigung="3.0" hoeflichkeit="2"><S><S><ADJA lemma="grün">Grüne</ADJA><NN
|
|
1182
|
+
lemma="Ellipse">Ellipse</NN></S><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADV
|
|
1183
|
+
lemma="unten">unten</ADV><AVP><ADV lemma="fast">fast</ADV><ADV lemma="rechts"
|
|
1184
|
+
>rechts</ADV></AVP><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
1185
|
+
</annotation>
|
|
1186
|
+
<move shape="green_ellipse" from="-1,0" to="215,233" distance="844" time="+169"/>
|
|
1187
|
+
<move shape="green_ellipse" from="215,233" to="415,533" distance="764" time="+172"/>
|
|
1188
|
+
<chat message="dreieck fast genau darüber" time="+187"/>
|
|
1189
|
+
<annotation id="annotation47">
|
|
1190
|
+
<spelling id="spelling47"><word id="word178">dreieck</word><correction id="correction178"
|
|
1191
|
+
>Dreieck</correction>, fast genau darüber<forms><form shape="triangle"
|
|
1192
|
+
>dreieck</form></forms></spelling>
|
|
1193
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="relation"
|
|
1194
|
+
id="sentence62"> dreieck fast genau darüber<parsetree id="parsetree62" tiefe="3"
|
|
1195
|
+
verzweigung="2.6666666666666665" hoeflichkeit="2"><CS><NN lemma="Dreieck"
|
|
1196
|
+
>Dreieck</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><S><ADV lemma="fast"
|
|
1197
|
+
>fast</ADV><AP><ADJD lemma="genau">genau</ADJD><PROAV lemma="darüber"
|
|
1198
|
+
>darüber</PROAV></AP></S><PUNCTUATION_STOP>.</PUNCTUATION_STOP></CS></parsetree></sentence>
|
|
1199
|
+
</annotation>
|
|
1200
|
+
<move shape="pink_triangle" from="-1,0" to="215,215" distance="601" time="+191"/>
|
|
1201
|
+
<move shape="pink_triangle" from="215,215" to="415,315" distance="559" time="+193"/>
|
|
1202
|
+
<chat message="kreis diagonal oben rechts" time="+206"/>
|
|
1203
|
+
<annotation id="annotation48">
|
|
1204
|
+
<spelling id="spelling48"><word id="word179">kreis</word><correction id="correction179"
|
|
1205
|
+
>Kreis</correction>, diagonal oben rechts<forms><form shape="circle"
|
|
1206
|
+
>kreis</form></forms></spelling>
|
|
1207
|
+
<sentence no="1" value="fragment without verb" type="instruction" lok="spatial+destination"
|
|
1208
|
+
id="sentence63"> kreis diagonal oben rechts<parsetree id="parsetree63" tiefe="1"
|
|
1209
|
+
verzweigung="6.0" hoeflichkeit="2"><S><NN lemma="Kreis"
|
|
1210
|
+
>Kreis</NN><PUNCTUATION_COMMA>,</PUNCTUATION_COMMA><ADV lemma="diagonal"
|
|
1211
|
+
>diagonal</ADV><ADV lemma="oben">oben</ADV><ADV lemma="rechts"
|
|
1212
|
+
>rechts</ADV><PUNCTUATION_STOP>.</PUNCTUATION_STOP></S></parsetree></sentence>
|
|
1213
|
+
</annotation>
|
|
1214
|
+
<move shape="pink_circle" from="-1,0" to="215,215" distance="300" time="+212"/>
|
|
1215
|
+
<move shape="pink_circle" from="215,215" to="515,215" distance="0" time="+215"/>
|
|
1216
|
+
<endRound timeEnd="16.11.11 12:05"/>
|
|
1217
|
+
<state>
|
|
1218
|
+
<shape id="pink_circle" pos="515,215" target="515,215"/>
|
|
1219
|
+
<shape id="black_circle" pos="115,415" target="115,415"/>
|
|
1220
|
+
<shape id="black_ellipse" pos="15,333" target="15,333"/>
|
|
1221
|
+
<shape id="pink_triangle" pos="415,315" target="415,315"/>
|
|
1222
|
+
<shape id="green_ellipse" pos="415,533" target="415,533"/>
|
|
1223
|
+
</state>
|
|
1224
|
+
</round>
|
|
1225
|
+
</match>
|