diff --git a/common/management/commands/schema_packer.py b/common/management/commands/schema_packer.py
new file mode 100644
index 0000000000000000000000000000000000000000..0a2d476710c527b64dc83c09c095682126a785a2
--- /dev/null
+++ b/common/management/commands/schema_packer.py
@@ -0,0 +1,79 @@
+#-*- coding:utf-8 -*-
+
+import datetime
+
+from collections import defaultdict
+
+XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace'
+
+
+class SchemaPacker():
+    
+    def __init__(self):
+        # packed_subentry_id -> packed_schema_id -> (Subentry, Schema) (any that matches)
+        self.unique_schemas = defaultdict(lambda: defaultdict(lambda: None))
+        # packed_subentry -> id
+        self.free_subentry_id = 0
+        self.unique_subentry_id = defaultdict(lambda: -1)
+        # packed_schema -> id
+        self.free_schema_id = 0
+        self.unique_schema_id = defaultdict(lambda: -1)
+        # subentry -> schema -> (packed_subentry, packed_schema)
+        self.packed_schemas = defaultdict(lambda: defaultdict(lambda: None))
+
+
+    def _pack_subentry(self, subentry):
+
+        sie = subentry.inherent_sie.name
+        aspect = ''
+        if subentry.aspect is not None:
+            aspect = subentry.aspect.name
+        negativity = ''
+        if subentry.aspect is not None:
+            negativity = subentry.negativity.name
+        predicativity = subentry.predicativity.name
+        return (sie, aspect, negativity, predicativity)
+            
+        
+    def _pack_schema(self, schema):
+
+        opinion = 'unk'
+        if schema.opinion.key is not None:
+            opinion = schema.opinion.key
+        positions = []
+        for position in schema.positions.all():
+            positions.append(position.id)
+        positions = tuple(sorted(positions))
+        return (opinion, positions)
+        
+        
+    def _pack(self, subentry, schema):
+
+        if self.packed_schemas[subentry][schema] is None:
+            
+            self.packed_schemas[subentry][schema] = (self._pack_subentry(subentry), self._pack_schema(schema))
+        
+        return self.packed_schemas[subentry][schema]
+    
+    
+    def add(self, subentry, schema):
+        
+        packed_subentry, packed_schema = self._pack(subentry, schema)
+
+        if self.unique_subentry_id[packed_subentry] == -1:
+            self.unique_subentry_id[packed_subentry] = self.free_subentry_id
+            self.free_subentry_id += 1
+        packed_subentry_id = self.unique_subentry_id[packed_subentry]
+        if self.unique_schema_id[packed_schema] == -1:
+            self.unique_schema_id[packed_schema] = self.free_schema_id
+            self.free_schema_id += 1
+        packed_schema_id = self.unique_schema_id[packed_schema]
+        self.unique_schemas[packed_subentry_id][packed_schema_id] = (subentry, schema)
+        self.packed_schemas[subentry][schema] = (packed_subentry, packed_schema)
+
+        
+    def get_ids(self, subentry, schema):
+        
+        packed_subentry, packed_schema = self.packed_schemas[subentry][schema]
+        
+        return (self.unique_subentry_id[packed_subentry], self.unique_schema_id[packed_schema])
diff --git a/common/management/commands/valunifier_tei.py b/common/management/commands/valunifier_tei.py
index b4ecf8ba7bbc731953beb1bfeb18b3badbed5d17..bca4ac10d289ee79218bfcff5e5932cdefffced9 100644
--- a/common/management/commands/valunifier_tei.py
+++ b/common/management/commands/valunifier_tei.py
@@ -10,6 +10,8 @@ from unifier.models import UnifiedFrame2SlowalFrameMapping, \
                            UnifiedFrameArgumentSlowalFrameMapping
 from connections.models import ArgumentConnection, ExampleConnection
 
+from common.management.commands.schema_packer import SchemaPacker
+
 from collections import defaultdict
 
 XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace'
@@ -72,7 +74,7 @@ def write_content(root, unified_frames):
     body = etree.SubElement(text, 'body')
     schemata = etree.SubElement(body, 'div')
     frames = etree.SubElement(body, 'div')
-    used_schemata = set()
+    used_schemata = SchemaPacker()
     write_unified_frames(frames, unified_frames, used_schemata)
     write_used_schemata(schemata, used_schemata)
 
@@ -342,7 +344,7 @@ def write_alternations(parent, unified_frame, lexical_unit, mapping, used_schema
             argument_fs.attrib['type'] = 'argument'
             argument_fs.attrib['sameAs'] = u'#unif_%d.%d-arg' % (unified_frame.id, argument.id)
             phrases_f = etree.SubElement(connection_fs, 'f')
-            write_phrases_coll(phrases_f, schema_hooks)
+            write_phrases_coll(phrases_f, schema_hooks, used_schemata)
 
 def prepare_alternations(lexical_unit, mapping, used_schemata):
     connections_info = analyse_connections(mapping)
@@ -353,15 +355,22 @@ def prepare_alternations(lexical_unit, mapping, used_schemata):
         uargument = argument_mapping.unified_agrument
         sargument = argument_mapping.slowal_agrument
 
-        argument_realization = ArgumentConnection.objects.get(argument = sargument)
-        by_schema_realizations = argument_realization.schema_connections.all()
-        for schema_hook in by_schema_realizations:
-            if valid_connection(lexical_unit, schema_hook, connections_info):
-                subentry = schema_hook.subentry
-                schema = schema_hook.schema
-                used_schemata.add((subentry, schema))
-                alternation = schema_hook.alternation
-                alternations[(subentry.id, schema.id, alternation)][uargument].append(schema_hook)
+        success = False
+        try:
+            argument_realization = ArgumentConnection.objects.get(argument = sargument)
+            success = True
+        except:
+            print(sargument.id)
+            
+        if success:
+            by_schema_realizations = argument_realization.schema_connections.all()
+            for schema_hook in by_schema_realizations:
+                if valid_connection(lexical_unit, schema_hook, connections_info):
+                    subentry = schema_hook.subentry
+                    schema = schema_hook.schema
+                    used_schemata.add(subentry, schema)
+                    alternation = schema_hook.alternation
+                    alternations[(subentry.id, schema.id, alternation)][uargument].append(schema_hook)
 
     return alternations
 
@@ -400,13 +409,14 @@ def valid_connection(lexical_unit, schema_hook, connections_info):
         return (in_lemma == in_schema)
     return False
 
-def write_phrases_coll(parent, phrases_list):
+def write_phrases_coll(parent, phrases_list, used_schemata):
     vColl = etree.SubElement(parent, 'vColl')
     vColl.attrib['org'] = 'set'
     for phrase in phrases_list:
         phrase_fs = etree.SubElement(vColl, 'fs')
         phrase_fs.attrib['type'] = 'phrase'
-        phrase_fs.attrib['sameAs'] = u'#unif_%d.%d.%d.%d-phr' %(phrase.subentry.id, phrase.schema.id, phrase.position.id, phrase.phrase_type.id)
+        subentry_id, schema_id = used_schemata.get_ids(phrase.subentry, phrase.schema)
+        phrase_fs.attrib['sameAs'] = u'#unif_%d.%d.%d.%d-phr' %(subentry_id, schema_id, phrase.position.id, phrase.phrase_type.id)
         
     
 #=================== DIV -- SYNTACTIC SCHEMATA ===================#
@@ -415,23 +425,74 @@ def write_used_schemata(parent, used_schemata):
     schemata_head = etree.SubElement(parent, 'head')
     schemata_head.text = 'Syntactic Schemata'
 
-    for subentry, schema in used_schemata:
-        write_schema_entry(parent, subentry, schema)
+    for subentry_id in used_schemata.unique_schemas:
+        for schema_id in used_schemata.unique_schemas[subentry_id]:
+            subentry, schema = used_schemata.unique_schemas[subentry_id][schema_id]
+            write_schema_entry(parent, subentry, subentry_id, schema, schema_id)
+            
 
-def write_schema_entry(parent, subentry, schema):
-    entry_xml_id = u'unif_%d.%d-schent' %(subentry.id, schema.id)
+def write_schema_entry(parent, subentry, subentry_id, schema, schema_id):
+    entry_xml_id = u'unif_%d.%d-schent' %(subentry_id, schema_id)
     entry = etree.SubElement(parent, 'entry')
     entry.attrib[etree.QName(XML_NAMESPACE, 'id')] = entry_xml_id
 
-    write_schema_definition(entry, subentry, schema)
+    write_schema_definition(entry, subentry, subentry_id, schema, schema_id)
 
-    write_schema(entry, subentry, schema)
+    write_schema(entry, subentry, subentry_id, schema, schema_id)
 
-def write_schema_definition(parent, subentry, schema):
-    pass
+def write_schema_definition(parent, subentry, subentry_id, schema, schema_id):
+    d = etree.SubElement(parent, 'def')
+    d.text = schema_textual_representation(subentry, schema)
 
-def write_schema(parent, subentry, schema):
-    schema_xml_id = u'unif_%d.%d-sch' %(subentry.id, schema.id)
+def schema_textual_representation(subentry, schema):
+    result = ''
+
+    if subentry.inherent_sie.name == 'true':
+        result += ' siÄ™:'
+    else:
+        rerult += ':'
+    
+    opinion = schema.opinion.key
+    if opinion == 'vul':
+        result += ' wulgarny:'
+    elif opinion == 'col':
+        result += ' potoczny:'
+    elif opinion == 'dat':
+        result += ' archaiczny:'
+    elif opinion == 'bad':
+        result += ' zły:'
+    elif opinion == 'unc':
+        result += ' wÄ…tpliwy:'
+    elif opinion == 'cer':
+        result += ' pewny:'
+    else:
+        result += ' brak:'
+
+    if subentry.negativity is not None:
+        result += ' ' + subentry.negativity.name + ':'
+    else:
+        result += ' :'
+
+    if subentry.predicativity.name == 'true':
+        result += ' pred:'
+    else:
+        rerult += ':'
+
+    if subentry.aspect is not None:
+        result += ' ' + subentry.aspect.name + ':'
+    else:
+        result += ' :'
+
+    positions_rep = []
+    for position in schema.positions.all():
+        positions_rep.append(str(position))
+
+    result += ' ' + ' + '.join(positions_rep)
+
+    return result
+        
+def write_schema(parent, subentry, subentry_id, schema, schema_id):
+    schema_xml_id = u'unif_%d.%d-sch' %(subentry_id, schema_id)
 
     schema_fs = etree.SubElement(parent, 'fs')
     schema_fs.attrib[etree.QName(XML_NAMESPACE, 'id')] = schema_xml_id
@@ -484,28 +545,33 @@ def write_schema(parent, subentry, schema):
     predicativity_binary.attrib['value'] = predicativity
 
     # positions
-    write_positions(schema_fs, subentry, schema)
+    write_positions(schema_fs, subentry_id, schema, schema_id)
 
-def write_positions(parent, subentry, schema):
+def write_positions(parent, subentry_id, schema, schema_id):
     positions = schema.positions.all()
     positions_f = etree.SubElement(parent, 'f')
     positions_f.attrib['name'] = 'positions'
     vColl = etree.SubElement(positions_f, 'vColl')
     vColl.attrib['org'] = 'set'
     for position in positions:
-        write_position(vColl, subentry, schema, position)
+        write_position(vColl, subentry_id, schema_id, position)
         
-def write_position(parent, subentry, schema, position):
-    position_xml_id = u'unif_%d.%d.%d-psn' %(subentry.id, schema.id, position.id)
+def write_position(parent, subentry_id, schema_id, position):
+    position_xml_id = u'unif_%d.%d.%d-psn' %(subentry_id, schema_id, position.id)
     position_fs = etree.SubElement(parent, 'fs')
     position_fs.attrib['type'] = 'position'
     position_fs.attrib[etree.QName(XML_NAMESPACE, 'id')] = position_xml_id
 
+    text_rep_f = etree.SubElement(position_fs, 'f')
+    text_rep_f.attrib['name'] = 'textual_representation'
+    text_rep_string = etree.SubElement(text_rep_f, 'string')
+    text_rep_string.text = str(position)
+    
     write_function(position_fs, position)
     
     write_control(position_fs, position)
     
-    write_phrases(position_fs, subentry, schema, position)
+    write_phrases(position_fs, subentry_id, schema_id, position)
 
 def write_function(parent, position):
     function = position.function
@@ -532,17 +598,17 @@ def write_control(parent, position):
             pred_control_symbol = etree.SubElement(vColl, 'symbol')
             pred_control_symbol.attrib['value'] = control
 
-def write_phrases(parent, subentry, schema, position):
+def write_phrases(parent, subentry_id, schema_id, position):
     phrases = position.phrase_types.all()
     phrases_f = etree.SubElement(parent, 'f')
     phrases_f.attrib['name'] = 'phrases'
     vColl = etree.SubElement(phrases_f, 'vColl')
     vColl.attrib['org'] = 'set'
     for phrase in phrases:
-        write_phrase(vColl, subentry, schema, position, phrase)
+        write_phrase(vColl, subentry_id, schema_id, position, phrase)
     
-def write_phrase(parent, subentry, schema, position, phrase):
-    phrase_xml_id = u'unif_%d.%d.%d.%d-phr' %(subentry.id, schema.id, position.id, phrase.id)
+def write_phrase(parent, subentry_id, schema_id, position, phrase):
+    phrase_xml_id = u'unif_%d.%d.%d.%d-phr' %(subentry_id, schema_id, position.id, phrase.id)
     phrase_fs = etree.SubElement(parent, 'fs')
     phrase_fs.attrib[etree.QName(XML_NAMESPACE, 'id')] = phrase_xml_id
     phrase_fs.attrib['type'] = phrase.main_type.name
diff --git a/data/tei/Leksykograf.xml b/data/tei/Leksykograf.xml
deleted file mode 100644
index 8b52173ca8c31566cea1bb093249f24e3dab8955..0000000000000000000000000000000000000000
--- a/data/tei/Leksykograf.xml
+++ /dev/null
@@ -1,21622 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE TEI SYSTEM "tei_all.dtd">
-<TEI xml:lang="pl" xmlns="http://www.tei-c.org/ns/1.0">
-  <teiHeader>
-    <fileDesc>
-      <titleStmt>
-        <title>ValUnifier (?)</title>
-      </titleStmt>
-      <publicationStmt>
-        <publisher>Institute of Computer Science, Polish Academy of Sciences (IPI PAN)</publisher>
-        <date when="2023-11-03"/>
-        <availability>
-          <licence target="http://creativecommons.org/licenses/by-sa/4.0/">
-            <p>(C) Copyright 2012–2018 by the Institute of Computer Science, Polish Academy of Sciences (IPI PAN)</p>
-            <p>This work is distributed under a CC BY-SA license: http://creativecommons.org/licenses/by-sa/4.0/</p>
-            <p>?</p>
-          </licence>
-        </availability>
-      </publicationStmt>
-      <sourceDesc>
-        <p>?</p>
-      </sourceDesc>
-    </fileDesc>
-  </teiHeader>
-  <text>
-    <body>
-      <div>
-        <head>Syntactic Schemata</head>
-        <entry xml:id="unif_49.206-schent">
-          <fs xml:id="unif_49.206-sch" type="schema">
-            <f name="opinion">
-              <symbol value="unc"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.206.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.206.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.206.44-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.206.44.36-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(że)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.206.114-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.206.114.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_12284.45468-schent">
-          <fs xml:id="unif_12284.45468-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_12284.45468.13-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45468.13.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12284.45468.14-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45468.14.10-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(instr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12284.45468.36-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45468.36.30-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przez,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12284.45468.1673-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45468.1673.1500-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(dest[prepnp(do,gen),comprepnp(w kierunku),comprepnp(w stronę),cp(żeby),prepncp(do,gen,żeby)])</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4046-schent">
-          <fs xml:id="unif_866.4046-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4046.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4046.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4046.64-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4046.64.41-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(żeby)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2390.10262-schent">
-          <fs xml:id="unif_2390.10262-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2390.10262.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10262.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2390.10262.44-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10262.44.36-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(że)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2390.10262.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10262.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2738.11836-schent">
-          <fs xml:id="unif_2738.11836-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2738.11836.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2738.11836.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2738.11836.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2738.11836.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2738.11836.113-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2738.11836.113.53-phr" type="or">
-                        <f name="textual_representation">
-                          <string>or</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7353.28448-schent">
-          <fs xml:id="unif_7353.28448-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7353.28448.17-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28448.17.13-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(dla,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28448.24-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28448.24.20-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(ze strony)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18070-schent">
-          <fs xml:id="unif_4410.18070-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18070.24-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18070.24.20-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(ze strony)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4410.18070.108-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18070.108.79-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.191-schent">
-          <fs xml:id="unif_48.191-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.191.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.191.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.191.62-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.191.62.52-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(jakoby)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.191.107-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.191.107.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_49.199-schent">
-          <fs xml:id="unif_49.199-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.199.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.199.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.199.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.199.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.199.112-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.199.112.96-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(przeciw,dat,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_49.199.112.97-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(za,inst,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_49.199.112.90-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przeciw,dat)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_49.199.112.95-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(za,inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62388-schent">
-          <fs xml:id="unif_16835.62388-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62388.23-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62388.23.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62388.24-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62388.24.20-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(ze strony)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2390.10255-schent">
-          <fs xml:id="unif_2390.10255-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2390.10255.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10255.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2390.10255.323-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10255.323.130-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(gdy)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4048-schent">
-          <fs xml:id="unif_866.4048-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4048.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4048.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4048.896-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4048.896.80-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,acc,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_866.4048.896.155-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,acc,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_866.4048.896.79-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_3968.16689-schent">
-          <fs xml:id="unif_3968.16689-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_3968.16689.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_3968.16689.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_3968.16689.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_3968.16689.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_3968.16689.418-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_3968.16689.418.323-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(dest[prepnp(do,gen),prepnp(na,acc),cp(żeby),prepncp(do,gen,żeby),prepncp(na,acc,że),prepncp(na,acc,żeby)])</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7353.28441-schent">
-          <fs xml:id="unif_7353.28441-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7353.28441.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28441.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28441.63-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28441.63.36-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(że)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18063-schent">
-          <fs xml:id="unif_4410.18063-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18063.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18063.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4410.18063.16-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18063.16.12-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w stosunku do)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.184-schent">
-          <fs xml:id="unif_48.184-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.184.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.184.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.184.17-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.184.17.13-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(dla,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.184.107-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.184.107.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7354.28449-schent">
-          <fs xml:id="unif_7354.28449-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7354.28449.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28449.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28449.294-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28449.294.196-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(jak)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.193-schent">
-          <fs xml:id="unif_48.193-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.193.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.193.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.193.64-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.193.64.41-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(żeby)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.193.107-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.193.107.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_49.201-schent">
-          <fs xml:id="unif_49.201-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.201.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.201.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.201.111-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.201.111.66-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(do,gen,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_49.201.111.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.201.114-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.201.114.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_8968.34311-schent">
-          <fs xml:id="unif_8968.34311-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="perf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_8968.34311.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_8968.34311.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_8968.34311.11-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_8968.34311.11.4-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(abl)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_8968.34311.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_8968.34311.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_8968.34311.47-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_8968.34311.47.38-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_8968.34311.240-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_8968.34311.240.108-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(adl)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_8968.34311.241-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_8968.34311.241.47-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(perl)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62381-schent">
-          <fs xml:id="unif_16835.62381-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62381.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62381.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62381.16-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62381.16.12-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w stosunku do)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62381.5955-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62381.5955.5555-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(adjp(agr),pl,n,pos,koński,natr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_74.349-schent">
-          <fs xml:id="unif_74.349-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_74.349.13-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_74.349.13.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_74.349.14-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_74.349.14.10-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(instr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_74.349.36-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_74.349.36.30-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przez,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_74.349.41-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_74.349.41.32-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(locat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62390-schent">
-          <fs xml:id="unif_16835.62390-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62390.80-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62390.80.63-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(między,inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_12285.45471-schent">
-          <fs xml:id="unif_12285.45471-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_12285.45471.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12285.45471.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12285.45471.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12285.45471.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12285.45471.118-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12285.45471.118.10-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(instr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12285.45471.4538-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12285.45471.4538.4152-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(locat[prepnp(pośród,gen),prepnp(u,gen),prepnp(w,loc),prepnp(wśrzód,gen),prepnp(wśród,gen),prepnp(śród,gen),advp(locat)])</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4416.18096-schent">
-          <fs xml:id="unif_4416.18096-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4416.18096.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4416.18096.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4416.18096.12-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4416.18096.12.7-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(z,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2390.10257-schent">
-          <fs xml:id="unif_2390.10257-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2390.10257.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10257.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2390.10257.324-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10257.324.196-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(jak)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4050-schent">
-          <fs xml:id="unif_866.4050-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4050.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4050.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4050.60-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4050.60.25-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(w,loc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16809.62301-schent">
-          <fs xml:id="unif_16809.62301-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="true"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16809.62301.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16809.62301.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16809.62301.46-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16809.62301.46.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16809.62301.47-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16809.62301.47.38-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18065-schent">
-          <fs xml:id="unif_4410.18065-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18065.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18065.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4410.18065.896-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18065.896.80-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,acc,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_4410.18065.896.155-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,acc,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_4410.18065.896.79-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4411.18072-schent">
-          <fs xml:id="unif_4411.18072-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4411.18072.896-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4411.18072.896.80-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,acc,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_4411.18072.896.155-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,acc,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_4411.18072.896.79-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_1571.6840-schent">
-          <fs xml:id="unif_1571.6840-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="true"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_1571.6840.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_1571.6840.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_1571.6840.46-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_1571.6840.46.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.186-schent">
-          <fs xml:id="unif_48.186-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.186.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.186.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.186.107-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.186.107.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.186.108-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.186.108.79-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7354.28451-schent">
-          <fs xml:id="unif_7354.28451-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7354.28451.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28451.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28451.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28451.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28451.44-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28451.44.36-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(że)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_49.203-schent">
-          <fs xml:id="unif_49.203-sch" type="schema">
-            <f name="opinion">
-              <symbol value="unc"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.203.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.203.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.203.32-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.203.32.24-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(u,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62383-schent">
-          <fs xml:id="unif_16835.62383-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62383.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62383.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62383.23-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62383.23.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62383.5955-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62383.5955.5555-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(adjp(agr),pl,n,pos,koński,natr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62392-schent">
-          <fs xml:id="unif_16835.62392-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62392.21-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62392.21.17-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wobec,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62392.24-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62392.24.20-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(ze strony)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62392.5955-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62392.5955.5555-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(adjp(agr),pl,n,pos,koński,natr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_75.350-schent">
-          <fs xml:id="unif_75.350-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="true"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_75.350.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_75.350.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_75.350.152-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_75.350.152.125-phr" type="advp">
-                        <f name="textual_representation">
-                          <string>advp(misc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4043-schent">
-          <fs xml:id="unif_866.4043-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4043.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4043.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4043.16-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4043.16.12-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w stosunku do)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2390.10259-schent">
-          <fs xml:id="unif_2390.10259-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2390.10259.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10259.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2390.10259.326-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10259.326.131-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(kiedy)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_76.351-schent">
-          <fs xml:id="unif_76.351-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_76.351.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_76.351.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_76.351.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_76.351.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_76.351.111-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_76.351.111.66-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(do,gen,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_76.351.111.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_76.351.118-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_76.351.118.10-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(instr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4052-schent">
-          <fs xml:id="unif_866.4052-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4052.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4052.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4052.22-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4052.22.18-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(względem,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18067-schent">
-          <fs xml:id="unif_4410.18067-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18067.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18067.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4410.18067.60-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18067.60.25-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(w,loc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_865.4038-schent">
-          <fs xml:id="unif_865.4038-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_865.4038.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_865.4038.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_865.4038.890-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_865.4038.890.819-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(prepnp(o,acc),sg,linia,atr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.188-schent">
-          <fs xml:id="unif_48.188-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.188.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.188.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.188.107-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.188.107.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.188.109-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.188.109.5-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(na rzecz)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_48.188.109.90-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przeciw,dat)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_48.188.109.95-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(za,inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7354.28453-schent">
-          <fs xml:id="unif_7354.28453-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7354.28453.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28453.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28453.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28453.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28453.224-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28453.224.27-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(za,acc,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_7354.28453.224.28-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(za,acc,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_7354.28453.224.15-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(za,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_49.196-schent">
-          <fs xml:id="unif_49.196-sch" type="schema">
-            <f name="opinion">
-              <symbol value="unc"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.196.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.196.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.196.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.196.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.196.44-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.196.44.36-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(że)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_131.625-schent">
-          <fs xml:id="unif_131.625-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_131.625.13-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_131.625.13.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_131.625.15-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_131.625.15.11-phr" type="adjp">
-                        <f name="textual_representation">
-                          <string>adjp(agr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_131.625.23-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_131.625.23.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_49.205-schent">
-          <fs xml:id="unif_49.205-sch" type="schema">
-            <f name="opinion">
-              <symbol value="unc"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.205.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.205.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.205.114-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.205.114.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.205.115-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.205.115.14-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w sprawie)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62385-schent">
-          <fs xml:id="unif_16835.62385-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62385.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62385.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62385.21-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62385.21.17-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wobec,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62385.5955-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62385.5955.5555-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(adjp(agr),pl,n,pos,koński,natr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_867.4056-schent">
-          <fs xml:id="unif_867.4056-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_867.4056.897-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_867.4056.897.72-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,loc,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_867.4056.897.75-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,loc,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_867.4056.897.79-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4045-schent">
-          <fs xml:id="unif_866.4045-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4045.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4045.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4045.86-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4045.86.40-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(int)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2390.10261-schent">
-          <fs xml:id="unif_2390.10261-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2390.10261.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10261.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2390.10261.462-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10261.462.367-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(str,gdy)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2390.10261.462.42-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(str,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2390.10261.462.368-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(str,jak)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2390.10261.462.369-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(str,jeśli)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2390.10261.462.370-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(str,kiedy)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2390.10261.462.37-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(str,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2390.10261.462.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4054-schent">
-          <fs xml:id="unif_866.4054-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4054.24-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4054.24.20-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(ze strony)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4054.60-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4054.60.25-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(w,loc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18060-schent">
-          <fs xml:id="unif_4410.18060-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18060.13-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18060.13.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18069-schent">
-          <fs xml:id="unif_4410.18069-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18069.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18069.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4410.18069.22-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18069.22.18-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(względem,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_865.4040-schent">
-          <fs xml:id="unif_865.4040-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_865.4040.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_865.4040.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_865.4040.289-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_865.4040.289.41-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_865.4040.289.80-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,acc,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_865.4040.289.81-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,acc,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_865.4040.289.155-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,acc,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_865.4040.289.79-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_49.198-schent">
-          <fs xml:id="unif_49.198-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.198.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.198.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.198.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.198.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.198.111-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.198.111.66-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(do,gen,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_49.198.111.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_131.627-schent">
-          <fs xml:id="unif_131.627-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_131.627.13-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_131.627.13.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_131.627.14-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_131.627.14.10-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(instr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_131.627.36-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_131.627.36.30-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przez,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62387-schent">
-          <fs xml:id="unif_16835.62387-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62387.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62387.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62387.22-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62387.22.18-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(względem,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62387.5955-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62387.5955.5555-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(adjp(agr),pl,n,pos,koński,natr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_6484.25063-schent">
-          <fs xml:id="unif_6484.25063-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_6484.25063.272-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="control">
-                    <vColl org="set">
-                      <symbol value="controller"/>
-                    </vColl>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_6484.25063.272.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_6484.25063.273-psn">
-                  <f name="control">
-                    <vColl org="set">
-                      <symbol value="controllee"/>
-                    </vColl>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_6484.25063.273.206-phr" type="infp">
-                        <f name="textual_representation">
-                          <string>infp(_)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4047-schent">
-          <fs xml:id="unif_866.4047-sch" type="schema">
-            <f name="opinion">
-              <symbol value="unc"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4047.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4047.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4047.17-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4047.17.13-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(dla,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_3968.16688-schent">
-          <fs xml:id="unif_3968.16688-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_3968.16688.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_3968.16688.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_3968.16688.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_3968.16688.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_3968.16688.194-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_3968.16688.194.90-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przeciw,dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_12946.48542-schent">
-          <fs xml:id="unif_12946.48542-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_12946.48542.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12946.48542.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12946.48542.46-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12946.48542.46.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12946.48542.4807-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12946.48542.4807.4402-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(prepnp(w,acc),pl,XOR(konkury,koperczak),natr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18062-schent">
-          <fs xml:id="unif_4410.18062-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18062.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18062.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4410.18062.18-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18062.18.14-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w sprawie)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_1363.5969-schent">
-          <fs xml:id="unif_1363.5969-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_1363.5969.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_1363.5969.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_1363.5969.1088-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_1363.5969.1088.55-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(gen,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_1363.5969.1088.34-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(gen,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_1363.5969.1088.165-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(gen,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_1363.5969.1088.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7353.28443-schent">
-          <fs xml:id="unif_7353.28443-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7353.28443.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28443.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28443.17-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28443.17.13-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(dla,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28443.210-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28443.210.27-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(za,acc,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_7353.28443.210.28-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(za,acc,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_7353.28443.210.15-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(za,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62380-schent">
-          <fs xml:id="unif_16835.62380-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62380.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62380.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62380.16-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62380.16.12-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w stosunku do)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.195-schent">
-          <fs xml:id="unif_48.195-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.195.24-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.195.24.20-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(ze strony)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.195.107-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.195.107.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62389-schent">
-          <fs xml:id="unif_16835.62389-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62389.23-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62389.23.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62389.24-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62389.24.20-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(ze strony)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62389.5955-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62389.5955.5555-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(adjp(agr),pl,n,pos,koński,natr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_6484.25074-schent">
-          <fs xml:id="unif_6484.25074-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_6484.25074.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_6484.25074.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_6484.25074.2922-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_6484.25074.2922.40-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_6484.25074.2922.72-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,loc,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_6484.25074.2922.74-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,loc,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_6484.25074.2922.75-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,loc,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_6484.25074.2922.54-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,loc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_32.116-schent">
-          <fs xml:id="unif_32.116-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_32.116.13-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_32.116.13.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_32.116.23-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_32.116.23.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_3968.16690-schent">
-          <fs xml:id="unif_3968.16690-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_3968.16690.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_3968.16690.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_3968.16690.113-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_3968.16690.113.53-phr" type="or">
-                        <f name="textual_representation">
-                          <string>or</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18064-schent">
-          <fs xml:id="unif_4410.18064-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18064.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18064.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4410.18064.137-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18064.137.105-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w zakresie)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_5961.23239-schent">
-          <fs xml:id="unif_5961.23239-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_5961.23239.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_5961.23239.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_5961.23239.12-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_5961.23239.12.7-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(z,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_5961.23239.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_5961.23239.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_5961.23239.47-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_5961.23239.47.38-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_9944.37368-schent">
-          <fs xml:id="unif_9944.37368-sch" type="schema">
-            <f name="opinion">
-              <symbol value="col"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="true"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_9944.37368.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9944.37368.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_9944.37368.46-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9944.37368.46.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_14163.52574-schent">
-          <fs xml:id="unif_14163.52574-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_14163.52574.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_14163.52574.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_14163.52574.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_14163.52574.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_14163.52574.1274-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_14163.52574.1274.48-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(od,gen)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_14163.52574.1274.7-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(z,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7353.28445-schent">
-          <fs xml:id="unif_7353.28445-sch" type="schema">
-            <f name="opinion">
-              <symbol value="unc"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7353.28445.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28445.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28445.19-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28445.19.15-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(za,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28445.21-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28445.21.17-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wobec,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62382-schent">
-          <fs xml:id="unif_16835.62382-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62382.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62382.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62382.23-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62382.23.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62391-schent">
-          <fs xml:id="unif_16835.62391-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62391.21-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62391.21.17-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wobec,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62391.24-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62391.24.20-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(ze strony)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_12284.45467-schent">
-          <fs xml:id="unif_12284.45467-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_12284.45467.13-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45467.13.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12284.45467.36-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45467.36.30-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przez,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12284.45467.309-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45467.309.158-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(poprzez,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12284.45467.4288-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45467.4288.3939-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(locat[prepnp(pośród,gen),prepnp(u,gen),prepnp(w,loc),prepnp(wśrzód,gen),prepnp(wśród,gen),prepnp(śród,gen)])</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_9231.35073-schent">
-          <fs xml:id="unif_9231.35073-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="perf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_9231.35073.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9231.35073.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_9231.35073.11-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9231.35073.11.4-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(abl)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_9231.35073.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9231.35073.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_9231.35073.47-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9231.35073.47.38-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_9231.35073.240-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9231.35073.240.108-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(adl)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_9231.35073.241-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9231.35073.241.47-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(perl)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_14739.54850-schent">
-          <fs xml:id="unif_14739.54850-sch" type="schema">
-            <f name="opinion">
-              <symbol value="unc"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="true"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_14739.54850.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_14739.54850.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_14739.54850.47-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_14739.54850.47.38-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7205.27963-schent">
-          <fs xml:id="unif_7205.27963-sch" type="schema">
-            <f name="opinion">
-              <symbol value="col"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7205.27963.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7205.27963.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7205.27963.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7205.27963.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7205.27963.352-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7205.27963.352.157-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(na,acc,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_7205.27963.352.98-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(na,acc,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_7205.27963.352.16-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(na,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18066-schent">
-          <fs xml:id="unif_4410.18066-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18066.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18066.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4410.18066.134-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18066.134.87-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przy,loc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2738.11835-schent">
-          <fs xml:id="unif_2738.11835-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2738.11835.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2738.11835.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2738.11835.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2738.11835.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2738.11835.234-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2738.11835.234.45-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(inst,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2738.11835.234.38-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2092.8990-schent">
-          <fs xml:id="unif_2092.8990-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2092.8990.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2092.8990.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2092.8990.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2092.8990.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2092.8990.47-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2092.8990.47.38-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2092.8990.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2092.8990.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7353.28447-schent">
-          <fs xml:id="unif_7353.28447-sch" type="schema">
-            <f name="opinion">
-              <symbol value="unc"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7353.28447.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28447.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28447.16-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28447.16.12-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w stosunku do)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28447.19-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28447.19.15-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(za,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_1491.6598-schent">
-          <fs xml:id="unif_1491.6598-sch" type="schema">
-            <f name="opinion">
-              <symbol value="col"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="true"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_1491.6598.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_1491.6598.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_1491.6598.46-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_1491.6598.46.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.190-schent">
-          <fs xml:id="unif_48.190-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.190.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.190.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.190.18-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.190.18.14-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w sprawie)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.190.107-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.190.107.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7354.28455-schent">
-          <fs xml:id="unif_7354.28455-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7354.28455.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28455.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28455.49-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28455.49.32-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(locat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28455.102-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28455.102.93-phr" type="refl">
-                        <f name="textual_representation">
-                          <string>refl</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62384-schent">
-          <fs xml:id="unif_16835.62384-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62384.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62384.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62384.21-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62384.21.17-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wobec,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_132.632-schent">
-          <fs xml:id="unif_132.632-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_132.632.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_132.632.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_132.632.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_132.632.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_132.632.111-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_132.632.111.66-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(do,gen,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_132.632.111.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_132.632.196-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_132.632.196.45-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(inst,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_132.632.196.10-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(instr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_867.4055-schent">
-          <fs xml:id="unif_867.4055-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_867.4055.64-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_867.4055.64.41-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(żeby)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_49.207-schent">
-          <fs xml:id="unif_49.207-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.207.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.207.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.207.110-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.207.110.41-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(żeby)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.207.114-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.207.114.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_12284.45469-schent">
-          <fs xml:id="unif_12284.45469-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_12284.45469.13-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45469.13.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12284.45469.14-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45469.14.10-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(instr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12284.45469.36-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45469.36.30-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przez,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12284.45469.4288-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12284.45469.4288.3939-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(locat[prepnp(pośród,gen),prepnp(u,gen),prepnp(w,loc),prepnp(wśrzód,gen),prepnp(wśród,gen),prepnp(śród,gen)])</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_76.352-schent">
-          <fs xml:id="unif_76.352-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_76.352.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_76.352.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_76.352.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_76.352.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_76.352.118-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_76.352.118.10-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(instr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_76.352.152-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_76.352.152.125-phr" type="advp">
-                        <f name="textual_representation">
-                          <string>advp(misc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_9936.37350-schent">
-          <fs xml:id="unif_9936.37350-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_9936.37350.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9936.37350.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_9936.37350.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9936.37350.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_9936.37350.111-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9936.37350.111.66-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(do,gen,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_9936.37350.111.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18059-schent">
-          <fs xml:id="unif_4410.18059-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18059.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18059.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4410.18059.15-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18059.15.11-phr" type="adjp">
-                        <f name="textual_representation">
-                          <string>adjp(agr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18068-schent">
-          <fs xml:id="unif_4410.18068-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18068.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18068.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4410.18068.21-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18068.21.17-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wobec,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2468.10628-schent">
-          <fs xml:id="unif_2468.10628-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="true"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2468.10628.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2468.10628.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2468.10628.104-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2468.10628.104.44-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(inst,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2468.10628.104.45-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(inst,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2468.10628.104.38-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2390.10263-schent">
-          <fs xml:id="unif_2390.10263-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2390.10263.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10263.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2390.10263.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10263.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2390.10263.503-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10263.503.44-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(inst,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2390.10263.503.402-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(inst,jak)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2390.10263.503.45-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(inst,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2390.10263.503.38-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2864.12425-schent">
-          <fs xml:id="unif_2864.12425-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2864.12425.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2864.12425.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2864.12425.116-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2864.12425.116.62-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(z,inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2864.12425.1577-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2864.12425.1577.80-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,acc,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2864.12425.1577.155-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(o,acc,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_2864.12425.1577.79-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.183-schent">
-          <fs xml:id="unif_48.183-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.183.5-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.183.5.4-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(abl)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.183.6-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.183.6.5-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(na rzecz)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_11730.43518-schent">
-          <fs xml:id="unif_11730.43518-sch" type="schema">
-            <f name="opinion">
-              <symbol value="dat"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_11730.43518.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_11730.43518.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_11730.43518.46-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_11730.43518.46.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_11730.43518.4346-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_11730.43518.4346.3979-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(np(str),pl,cholewka,natr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_131.626-schent">
-          <fs xml:id="unif_131.626-sch" type="schema">
-            <f name="opinion">
-              <symbol value="unc"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_131.626.13-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_131.626.13.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_131.626.137-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_131.626.137.105-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w zakresie)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.192-schent">
-          <fs xml:id="unif_48.192-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.192.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.192.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.192.63-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.192.63.36-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(że)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.192.107-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.192.107.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_16835.62386-schent">
-          <fs xml:id="unif_16835.62386-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_16835.62386.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62386.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_16835.62386.22-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_16835.62386.22.18-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(względem,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_34.120-schent">
-          <fs xml:id="unif_34.120-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="_"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_34.120.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_34.120.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_34.120.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_34.120.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_34.120.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_34.120.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_49.200-schent">
-          <fs xml:id="unif_49.200-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.200.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.200.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.200.113-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.200.113.53-phr" type="or">
-                        <f name="textual_representation">
-                          <string>or</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_8968.34310-schent">
-          <fs xml:id="unif_8968.34310-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="perf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_8968.34310.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_8968.34310.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_8968.34310.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_8968.34310.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_8968.34310.3258-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_8968.34310.3258.1386-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(prepnump(na,acc),cztery,wiatr,natr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_74.348-schent">
-          <fs xml:id="unif_74.348-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_74.348.13-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_74.348.13.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_74.348.14-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_74.348.14.10-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(instr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_74.348.36-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_74.348.36.30-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przez,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_74.348.151-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_74.348.151.124-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(dest[prepnp(do,gen),comprepnp(w celu),cp(żeby),prepncp(do,gen,żeby),prepncp(po,acc,żeby)])</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_12285.45470-schent">
-          <fs xml:id="unif_12285.45470-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_12285.45470.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12285.45470.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12285.45470.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12285.45470.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12285.45470.118-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12285.45470.118.10-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(instr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12285.45470.4537-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12285.45470.4537.4151-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(dest[prepnp(do,gen),comprepnp(w kierunku),comprepnp(w stronę),cp(żeby),prepncp(do,gen,że),prepncp(do,gen,żeby)])</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4416.18095-schent">
-          <fs xml:id="unif_4416.18095-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4416.18095.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4416.18095.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4416.18095.169-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4416.18095.169.48-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(od,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4410.18061-schent">
-          <fs xml:id="unif_4410.18061-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4410.18061.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18061.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_4410.18061.85-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4410.18061.85.71-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w kwestii)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2390.10256-schent">
-          <fs xml:id="unif_2390.10256-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2390.10256.50-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10256.50.40-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(int)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2390.10256.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10256.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4049-schent">
-          <fs xml:id="unif_866.4049-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4049.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4049.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4049.134-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4049.134.87-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przy,loc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_1363.5968-schent">
-          <fs xml:id="unif_1363.5968-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_1363.5968.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_1363.5968.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_1363.5968.995-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_1363.5968.995.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_1363.5968.1087-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_1363.5968.1087.40-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_1363.5968.1087.41-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(żeby)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7353.28442-schent">
-          <fs xml:id="unif_7353.28442-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7353.28442.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28442.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28442.17-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28442.17.13-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(dla,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28442.932-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28442.932.109-phr" type="compar">
-                        <f name="textual_representation">
-                          <string>compar(jako)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_4411.18071-schent">
-          <fs xml:id="unif_4411.18071-sch" type="schema">
-            <f name="opinion">
-              <symbol value="dat"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_4411.18071.20-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_4411.18071.20.16-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(na,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.185-schent">
-          <fs xml:id="unif_48.185-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.185.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.185.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.185.23-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.185.23.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.185.107-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.185.107.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7354.28450-schent">
-          <fs xml:id="unif_7354.28450-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7354.28450.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28450.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28450.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28450.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28450.49-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28450.49.32-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(locat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28450.2714-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28450.2714.829-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w roli)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.194-schent">
-          <fs xml:id="unif_48.194-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.194.5-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.194.5.4-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(abl)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.194.97-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.194.97.90-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przeciw,dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_12946.48516-schent">
-          <fs xml:id="unif_12946.48516-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_12946.48516.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12946.48516.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_12946.48516.4793-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_12946.48516.4793.4385-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(prepnp(w,acc),sg,gaz,natr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_49.202-schent">
-          <fs xml:id="unif_49.202-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.202.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.202.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.202.112-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.202.112.96-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(przeciw,dat,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_49.202.112.97-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(za,inst,żeby)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_49.202.112.90-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przeciw,dat)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_49.202.112.95-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(za,inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.202.114-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.202.114.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_6484.25064-schent">
-          <fs xml:id="unif_6484.25064-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_6484.25064.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_6484.25064.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_6484.25064.110-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_6484.25064.110.41-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(żeby)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_5961.23238-schent">
-          <fs xml:id="unif_5961.23238-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_5961.23238.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_5961.23238.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_5961.23238.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_5961.23238.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_5961.23238.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_5961.23238.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_5961.23238.202-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_5961.23238.202.79-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2390.10258-schent">
-          <fs xml:id="unif_2390.10258-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2390.10258.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10258.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2390.10258.325-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10258.325.250-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(jeśli)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4051-schent">
-          <fs xml:id="unif_866.4051-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4051.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4051.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4051.21-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4051.21.17-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wobec,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7353.28444-schent">
-          <fs xml:id="unif_7353.28444-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7353.28444.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28444.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28444.1353-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28444.1353.272-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(nad,inst,int)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_7353.28444.1353.273-phr" type="prepncp">
-                        <f name="textual_representation">
-                          <string>prepncp(nad,inst,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_7353.28444.1353.56-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(nad,inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_865.4037-schent">
-          <fs xml:id="unif_865.4037-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_865.4037.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_865.4037.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_865.4037.889-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_865.4037.889.818-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(prepnp(o,acc),sg,kieszeń,ratr({adjp(agr)}+{possp}))</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.187-schent">
-          <fs xml:id="unif_48.187-sch" type="schema">
-            <f name="opinion">
-              <symbol value="unc"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.187.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.187.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.187.66-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.187.66.54-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,loc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.187.107-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.187.107.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7354.28452-schent">
-          <fs xml:id="unif_7354.28452-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7354.28452.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28452.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28452.34-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28452.34.25-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(w,loc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28452.45-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28452.45.37-phr" type="ncp">
-                        <f name="textual_representation">
-                          <string>ncp(str,że)</string>
-                        </f>
-                      </fs>
-                      <fs xml:id="unif_7354.28452.45.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_49.204-schent">
-          <fs xml:id="unif_49.204-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.204.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.204.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.204.10-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.204.10.5-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(na rzecz)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.204.114-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.204.114.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_9231.35072-schent">
-          <fs xml:id="unif_9231.35072-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="perf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_9231.35072.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9231.35072.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_9231.35072.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9231.35072.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_9231.35072.47-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9231.35072.47.38-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(inst)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_9231.35072.3258-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_9231.35072.3258.1386-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(prepnump(na,acc),cztery,wiatr,natr)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_32.117-schent">
-          <fs xml:id="unif_32.117-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_32.117.13-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_32.117.13.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_32.117.36-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_32.117.36.30-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(przez,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4044-schent">
-          <fs xml:id="unif_866.4044-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4044.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4044.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4044.137-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4044.137.105-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(w zakresie)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2390.10260-schent">
-          <fs xml:id="unif_2390.10260-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2390.10260.53-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10260.53.36-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(że)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2390.10260.89-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2390.10260.89.77-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(dat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_2738.11834-schent">
-          <fs xml:id="unif_2738.11834-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_2738.11834.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2738.11834.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2738.11834.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2738.11834.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_2738.11834.44-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_2738.11834.44.36-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(że)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_866.4053-schent">
-          <fs xml:id="unif_866.4053-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_866.4053.24-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4053.24.20-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(ze strony)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_866.4053.108-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_866.4053.108.79-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(o,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_13213.49319-schent">
-          <fs xml:id="unif_13213.49319-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="true"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_13213.49319.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_13213.49319.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_13213.49319.46-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_13213.49319.46.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_14163.52575-schent">
-          <fs xml:id="unif_14163.52575-sch" type="schema">
-            <f name="opinion">
-              <symbol value="col"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_14163.52575.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_14163.52575.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_14163.52575.49-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_14163.52575.49.32-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(locat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7353.28446-schent">
-          <fs xml:id="unif_7353.28446-sch" type="schema">
-            <f name="opinion">
-              <symbol value="unc"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7353.28446.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28446.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28446.19-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28446.19.15-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(za,acc)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7353.28446.22-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7353.28446.22.18-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(względem,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_865.4039-schent">
-          <fs xml:id="unif_865.4039-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_865.4039.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_865.4039.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_865.4039.891-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_865.4039.891.820-phr" type="lex">
-                        <f name="textual_representation">
-                          <string>lex(prepnp(o,acc),sg,skóra,ratr({lex(adjp(agr),agr,agr,pos,OR(swój,własny),natr)}))</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_13214.49320-schent">
-          <fs xml:id="unif_13214.49320-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="true"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_13214.49320.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_13214.49320.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_13214.49320.46-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_13214.49320.46.19-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(do,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_48.189-schent">
-          <fs xml:id="unif_48.189-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect"/>
-            <f name="negativity"/>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_48.189.2-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.189.2.1-phr" type="possp">
-                        <f name="textual_representation">
-                          <string>possp</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.189.61-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.189.61.51-phr" type="comprepnp">
-                        <f name="textual_representation">
-                          <string>comprepnp(na temat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_48.189.107-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_48.189.107.94-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(wśród,gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_7354.28454-schent">
-          <fs xml:id="unif_7354.28454-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_7354.28454.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28454.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28454.49-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28454.49.32-phr" type="xp">
-                        <f name="textual_representation">
-                          <string>xp(locat)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28454.99-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="control">
-                    <vColl org="set">
-                      <symbol value="pred_controller"/>
-                    </vColl>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28454.99.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_7354.28454.101-psn">
-                  <f name="control">
-                    <vColl org="set">
-                      <symbol value="pred_controllee"/>
-                    </vColl>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_7354.28454.101.92-phr" type="prepnp">
-                        <f name="textual_representation">
-                          <string>prepnp(jako,str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_1149.5256-schent">
-          <fs xml:id="unif_1149.5256-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_1149.5256.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_1149.5256.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_1149.5256.995-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_1149.5256.995.9-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(gen)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_49.197-schent">
-          <fs xml:id="unif_49.197-sch" type="schema">
-            <f name="opinion">
-              <symbol value="cer"/>
-            </f>
-            <f name="inherent_sie">
-              <binary value="false"/>
-            </f>
-            <f name="aspect">
-              <symbol value="imperf"/>
-            </f>
-            <f name="negativity">
-              <symbol value="_"/>
-            </f>
-            <f name="predicativity">
-              <binary value="false"/>
-            </f>
-            <f name="positions">
-              <vColl org="set">
-                <fs type="position" xml:id="unif_49.197.9-psn">
-                  <f name="function">
-                    <symbol value="subj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.197.9.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.197.30-psn">
-                  <f name="function">
-                    <symbol value="obj"/>
-                  </f>
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.197.30.8-phr" type="np">
-                        <f name="textual_representation">
-                          <string>np(str)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="position" xml:id="unif_49.197.110-psn">
-                  <f name="phrases">
-                    <vColl org="set">
-                      <fs xml:id="unif_49.197.110.41-phr" type="cp">
-                        <f name="textual_representation">
-                          <string>cp(żeby)</string>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-      </div>
-      <div>
-        <head>Semantic Frames</head>
-        <entry xml:id="unif_25-ent">
-          <def>odgonienie</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>O</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_25-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_25.110-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Theme"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="synsets">
-                        <vColl org="set">
-                          <numeric value="4924"/>
-                        </vColl>
-                      </f>
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="ISTOTY"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_25.111-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="modifier"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Path"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="POŁOŻENIE"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_25.107-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="modifier"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Location"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="MIEJSCE"/>
-                        </vColl>
-                      </f>
-                      <f name="relations">
-                        <vColl org="set">
-                          <fs type="relation">
-                            <f name="type">
-                              <symbol value="stan/cecha"/>
-                            </f>
-                            <f name="to">
-                              <fs sameAs="#unif_25.108-arg" type="argument"/>
-                            </f>
-                          </fs>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_25.106-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Location"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="MIEJSCE"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_25.108-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Instrument"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="synsets">
-                        <vColl org="set">
-                          <numeric value="234224"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_25.109-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Initiator"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="ISTOTY"/>
-                          <symbol value="PODMIOTY"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>przegonić</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="92841"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="3168"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.109-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34310.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.110-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34310.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.107-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34310.3258.1386-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.109-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.110-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.108-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.47.38-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.106-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.11.4-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.107-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.240.108-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.111-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.241.47-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>przegonić</string>
-                      </f>
-                      <f name="variant">
-                        <string>2</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="98547"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="70628"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.109-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34310.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.110-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34310.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.107-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34310.3258.1386-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.109-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.110-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.108-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.47.38-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.106-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.11.4-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.107-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.240.108-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.111-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_8968.34311.241.47-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>przepędzić</string>
-                      </f>
-                      <f name="variant">
-                        <string>2</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="92840"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="3168"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.109-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35072.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.110-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35072.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.108-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35072.47.38-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.107-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35072.3258.1386-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.109-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35073.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.110-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35073.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.108-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35073.47.38-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.106-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35073.11.4-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.107-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35073.240.108-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.111-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35073.241.47-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.110-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35073.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.108-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35073.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.106-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35073.11.4-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.107-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35073.240.108-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_25.111-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9231.35073.241.47-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_26-ent">
-          <def>utrata_sprawności</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>S</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_26-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_26.112-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Condition"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="CZYNNOŚĆ"/>
-                          <symbol value="SYTUACJA"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_26.113-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Theme"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="synsets">
-                        <vColl org="set">
-                          <numeric value="6450"/>
-                        </vColl>
-                      </f>
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="ISTOTY"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>niedołężnieć</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="83913"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="58671"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_26.113-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4416.18095.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_26.112-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4416.18095.169.48-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_26.113-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4416.18096.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_26.112-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4416.18096.12.7-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>więdnąć</string>
-                      </f>
-                      <f name="variant">
-                        <string>3</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="86466"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="60882"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_26.113-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_14163.52574.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_26.113-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_14163.52575.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_26.112-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_14163.52575.49.32-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>wyczerpywać się</string>
-                      </f>
-                      <f name="variant">
-                        <string>2</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="87503"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="61656"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_26.112-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_14739.54850.47.38-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_26.113-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_14739.54850.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_27-ent">
-          <def>zachwyt</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>O</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_27-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_27.114-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Stimulus"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_27.115-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Stimulus"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_27.116-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Experiencer"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_27.117-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Factor"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_27.145-arg" type="argument">
-                  <f name="role">
-                    <symbol value=""/>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>podziw</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="20781"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="4140"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28441.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28441.63.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28442.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28442.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.145-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28442.932.109-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28443.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28443.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28443.210.15-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7353.28443.210.27-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7353.28443.210.28-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28444.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28444.1353.56-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7353.28444.1353.272-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7353.28444.1353.273-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28445.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28445.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28445.19.15-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28446.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28446.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28446.19.15-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28447.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28447.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28447.19.15-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28448.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28448.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28449.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28449.294.196-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28450.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28450.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.117-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28450.49.32-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.145-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28450.2714.829-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28451.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28451.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28451.44.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28452.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28452.34.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28452.45.8-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7354.28452.45.37-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28453.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28453.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28453.224.15-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7354.28453.224.27-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7354.28453.224.28-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28454.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28454.99.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.117-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28454.49.32-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.145-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28454.101.92-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28455.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28455.102.93-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.117-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28455.49.32-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>podziwiać</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="5845"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="53476"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28441.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28441.63.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28442.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28442.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.145-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28442.932.109-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28443.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28443.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28443.210.15-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7353.28443.210.27-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7353.28443.210.28-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28444.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28444.1353.56-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7353.28444.1353.272-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7353.28444.1353.273-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28445.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28445.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28445.19.15-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28446.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28446.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28446.19.15-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28447.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28447.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28447.19.15-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28448.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7353.28448.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28449.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28449.294.196-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28450.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28450.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.117-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28450.49.32-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.145-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28450.2714.829-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28451.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28451.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28451.44.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28452.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28452.34.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28452.45.8-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7354.28452.45.37-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28453.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28453.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.116-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28453.224.15-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7354.28453.224.27-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7354.28453.224.28-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28454.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28454.99.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.117-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28454.49.32-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.145-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28454.101.92-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.114-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28455.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.115-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28455.102.93-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_27.117-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7354.28455.49.32-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_28-ent">
-          <def>oddzielanie_po_kawałku</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>O</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_28-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_28.118-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Instrument"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_28.119-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Initiator"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_28.120-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Theme"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_28.121-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Theme"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_28.142-arg" type="argument">
-                  <f name="role">
-                    <symbol value=""/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_28.143-arg" type="argument">
-                  <f name="role">
-                    <symbol value=""/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_28.144-arg" type="argument">
-                  <f name="role">
-                    <symbol value=""/>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>okrawać</string>
-                      </f>
-                      <f name="variant">
-                        <string>3</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="76450"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="53116"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_28.118-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_5961.23239.47.38-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_28.119-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_5961.23239.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_28.120-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_5961.23239.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_28.121-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_5961.23239.12.7-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_29-ent">
-          <def>zmniejszanie</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>S</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_29-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_29.122-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Initiator"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="PODMIOTY"/>
-                          <symbol value="SYTUACJA"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_29.124-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Measure"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="ILOŚĆ"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_29.123-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Theme"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="synsets">
-                        <vColl org="set">
-                          <numeric value="1282"/>
-                        </vColl>
-                      </f>
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="DOBRA"/>
-                          <symbol value="MIEJSCE"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>okrawać</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="76452"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="53118"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_29.123-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_5961.23238.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_29.124-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_5961.23238.202.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_29.122-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_5961.23238.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_30-ent">
-          <def>namowa</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>O</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_30-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_30.126-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Initiator"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="PODMIOTY"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_30.127-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Manner"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="KOMUNIKAT"/>
-                          <symbol value="CZYNNOŚĆ"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_30.128-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Purpose"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="synsets">
-                        <vColl org="set">
-                          <numeric value="5953"/>
-                        </vColl>
-                      </f>
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="KONCEPCJA"/>
-                          <symbol value="CZYNNOŚĆ"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_30.125-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="alternative"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Recipient"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="PODMIOTY"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>agitacja</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="25576"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="13440"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.183.6.5-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.183.5.4-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.184.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.184.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.184.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.185.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.185.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.185.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.186.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.186.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.186.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.187.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.187.66.54-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.187.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.188.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.188.109.90-phr"/>
-                                  <fs type="phrase" sameAs="#unif_48.188.109.95-phr"/>
-                                  <fs type="phrase" sameAs="#unif_48.188.109.5-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.188.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.189.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.189.61.51-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.189.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.190.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.190.18.14-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.190.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.191.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.191.62.52-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.191.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.192.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.192.63.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.192.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.193.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.193.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.193.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.194.97.90-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.194.5.4-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.195.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.195.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.196.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.196.44.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.196.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.197.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.197.110.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.197.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.198.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.198.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.198.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.198.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.199.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.199.112.90-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.199.112.95-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.199.112.96-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.199.112.97-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.199.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.200.113.53-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.200.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.201.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.201.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.201.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.201.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.202.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.202.112.90-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.202.112.95-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.202.112.96-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.202.112.97-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.202.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.203.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.204.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.204.10.5-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.204.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.205.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.205.115.14-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.205.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.206.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.206.44.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.206.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.207.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.207.110.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.207.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>agitować</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="82333"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="57411"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.183.6.5-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.183.5.4-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.184.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.184.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.184.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.185.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.185.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.185.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.186.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.186.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.186.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.187.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.187.66.54-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.187.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.188.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.188.109.90-phr"/>
-                                  <fs type="phrase" sameAs="#unif_48.188.109.95-phr"/>
-                                  <fs type="phrase" sameAs="#unif_48.188.109.5-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.188.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.189.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.189.61.51-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.189.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.190.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.190.18.14-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.190.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.191.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.191.62.52-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.191.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.192.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.192.63.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.192.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.193.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.193.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.193.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.194.97.90-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.194.5.4-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.195.107.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_48.195.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.196.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.196.44.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.196.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.197.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.197.110.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.197.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.198.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.198.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.198.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.198.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.199.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.199.112.90-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.199.112.95-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.199.112.96-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.199.112.97-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.199.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.200.113.53-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.200.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.201.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.201.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.201.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.201.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.202.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.202.112.90-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.202.112.95-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.202.112.96-phr"/>
-                                  <fs type="phrase" sameAs="#unif_49.202.112.97-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.202.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.203.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.204.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.204.10.5-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.204.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.205.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.205.115.14-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.205.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.206.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.206.44.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.206.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.207.114.94-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.207.110.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_49.207.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>namawiać</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="3805"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="1770"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_3968.16688.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_3968.16688.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_3968.16688.194.90-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_3968.16689.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.125-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_3968.16689.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_3968.16689.418.323-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.126-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_3968.16690.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_30.128-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_3968.16690.113.53-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_34-ent">
-          <def>Adopcja</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>G</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_34-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_34.146-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="alternative"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Stimulus"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="ISTOTY"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_34.148-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="modifier"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Condition"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="ISTOTY"/>
-                          <symbol value="PODMIOTY"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_34.147-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="alternative"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Theme"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="CECHA"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>adopcja</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="27643"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="14108"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.116.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.116.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.117.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.117.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_34.120.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_34.120.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>adopcja</string>
-                      </f>
-                      <f name="variant">
-                        <string>A</string>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.117.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.117.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_34.120.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_34.120.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>adoptować</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="78348"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="57166"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.116.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.116.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.117.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.117.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_34.120.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_34.120.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>adoptować</string>
-                      </f>
-                      <f name="variant">
-                        <string>2</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="78355"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54471"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.117.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_32.117.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_34.120.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_34.120.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>dbać</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="82029"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="57167"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4037.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4037.889.818-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4038.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4038.890.819-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4039.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4039.891.820-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4040.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.41-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.81-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4043.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4043.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4044.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4044.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4045.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4045.86.40-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4046.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4046.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4047.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4047.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4048.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4049.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4049.134.87-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4050.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4050.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4051.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4051.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4052.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4052.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4053.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4053.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4054.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4054.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_867.4055.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.72-phr"/>
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.75-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18059.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18059.15.11-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18060.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18061.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18061.85.71-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18062.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18062.18.14-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18063.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18063.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18064.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18064.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18065.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18066.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18066.134.87-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18067.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18067.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18068.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18068.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18069.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18069.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18070.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18070.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4411.18071.20.16-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>dbałość</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="1017"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="3525"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4037.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4037.889.818-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4038.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4038.890.819-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4039.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4039.891.820-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4040.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.41-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.81-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4043.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4043.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4044.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4044.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4045.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4045.86.40-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4046.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4046.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4047.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4047.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4048.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4049.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4049.134.87-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4050.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4050.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4051.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4051.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4052.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4052.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4053.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4053.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4054.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4054.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_867.4055.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.72-phr"/>
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.75-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18059.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18059.15.11-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18060.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18061.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18061.85.71-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18062.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18062.18.14-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18063.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18063.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18064.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18064.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18065.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18066.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18066.134.87-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18067.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18067.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18068.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18068.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18069.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18069.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18070.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18070.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4411.18071.20.16-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>dbały</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="357577"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="227179"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4037.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4037.889.818-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4038.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4038.890.819-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4039.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4039.891.820-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4040.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.41-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.81-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4043.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4043.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4044.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4044.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4045.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4045.86.40-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4046.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4046.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4047.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4047.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4048.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4049.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4049.134.87-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4050.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4050.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4051.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4051.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4052.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4052.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4053.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4053.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4054.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4054.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_867.4055.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.72-phr"/>
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.75-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18059.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18059.15.11-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18060.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18061.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18061.85.71-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18062.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18062.18.14-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18063.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18063.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18064.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18064.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18065.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18066.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18066.134.87-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18067.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18067.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18068.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18068.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18069.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18069.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18070.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18070.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4411.18071.20.16-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>doglądać</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="1136"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="2162"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1149.5256.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1149.5256.995.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>dopilnowywać</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="91603"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="2320"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.147-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1363.5968.995.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1363.5968.1087.40-phr"/>
-                                  <fs type="phrase" sameAs="#unif_1363.5968.1087.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1363.5968.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1363.5969.1088.9-phr"/>
-                                  <fs type="phrase" sameAs="#unif_1363.5969.1088.55-phr"/>
-                                  <fs type="phrase" sameAs="#unif_1363.5969.1088.34-phr"/>
-                                  <fs type="phrase" sameAs="#unif_1363.5969.1088.165-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1363.5969.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>interesować się</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="85485"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="57167"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2468.10628.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2468.10628.104.38-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2468.10628.104.44-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2468.10628.104.45-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>niedbałość</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="16898"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="18124"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4037.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4037.889.818-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4038.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4038.890.819-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4039.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4039.891.820-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4040.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.41-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.81-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4043.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4043.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4044.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4044.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4045.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4045.86.40-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4046.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4046.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4047.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4047.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4048.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4049.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4049.134.87-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4050.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4050.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4051.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4051.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4052.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4052.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4053.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4053.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4054.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4054.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_867.4055.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.72-phr"/>
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.75-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18059.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18059.15.11-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18060.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18061.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18061.85.71-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18062.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18062.18.14-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18063.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18063.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18064.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18064.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18065.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18066.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18066.134.87-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18067.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18067.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18068.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18068.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18069.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18069.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18070.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18070.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4411.18071.20.16-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>niedbały</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="16919"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="246092"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4037.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4037.889.818-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4038.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4038.890.819-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4039.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4039.891.820-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4040.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.41-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.81-phr"/>
-                                  <fs type="phrase" sameAs="#unif_865.4040.289.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4043.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4043.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4044.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4044.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4045.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4045.86.40-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4046.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4046.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4047.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4047.17.13-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4048.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_866.4048.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4049.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4049.134.87-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4050.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4050.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4051.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4051.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4052.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4052.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4053.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4053.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4054.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_866.4054.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_867.4055.64.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.72-phr"/>
-                                  <fs type="phrase" sameAs="#unif_867.4056.897.75-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18059.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18059.15.11-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18060.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18061.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18061.85.71-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18062.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18062.18.14-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18063.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18063.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18064.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18064.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18065.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4410.18065.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18066.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18066.134.87-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18067.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18067.60.25-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18068.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18068.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18069.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18069.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18070.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4410.18070.108.79-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4411.18071.20.16-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_4411.18072.896.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>pamiętać</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="5363"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="2256"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25063.272.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25063.273.206-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25064.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25064.110.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25074.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25074.2922.54-phr"/>
-                                  <fs type="phrase" sameAs="#unif_6484.25074.2922.74-phr"/>
-                                  <fs type="phrase" sameAs="#unif_6484.25074.2922.75-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>pamiętać</string>
-                      </f>
-                      <f name="variant">
-                        <string>2</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="85484"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="57167"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25063.272.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25063.273.206-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25064.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25064.110.41-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25074.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_6484.25074.2922.54-phr"/>
-                                  <fs type="phrase" sameAs="#unif_6484.25074.2922.74-phr"/>
-                                  <fs type="phrase" sameAs="#unif_6484.25074.2922.75-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>przysposabiać</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="78349"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54466"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.148-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9936.37350.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.146-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9936.37350.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_34.147-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9936.37350.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_9936.37350.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_39-ent">
-          <def>uaktywnianie</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>O</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_39-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_39.176-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Purpose"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_39.177-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Manner"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_39.173-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="alternative"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Recipient/Theme"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_39.174-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Instrument"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_39.175-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Initiator"/>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>aktywizacja</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="32221"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="19350"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.348.151.124-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.348.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.348.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.349.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.349.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.349.14.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_75.350.152.125-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_75.350.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_76.351.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.118.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_76.351.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.152.125-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.152.125-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.118.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>aktywizować</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="78119"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54283"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.348.151.124-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.348.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.348.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.349.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.349.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.349.14.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_75.350.152.125-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_75.350.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_76.351.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.118.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_76.351.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.152.125-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.152.125-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.118.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>aktywizować się</string>
-                      </f>
-                      <f name="variant">
-                        <string>A</string>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.348.151.124-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.348.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.348.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.349.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.349.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_74.349.14.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_75.350.152.125-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_75.350.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_76.351.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.118.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_76.351.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.351.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.152.125-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.152.125-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.174-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_76.352.118.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>animacja</string>
-                      </f>
-                      <f name="variant">
-                        <string>2</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="47854"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="19350"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="unc"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.625.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.625.15.11-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.625.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.626.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.626.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.627.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.627.14.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.627.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_132.632.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_132.632.196.10-phr"/>
-                                  <fs type="phrase" sameAs="#unif_132.632.196.45-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_132.632.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_132.632.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_132.632.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>animować</string>
-                      </f>
-                      <f name="variant">
-                        <string>4</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="90834"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="64530"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="unc"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.625.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.625.15.11-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.625.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.626.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.626.137.105-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.627.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.627.14.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_131.627.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_132.632.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_132.632.196.10-phr"/>
-                                  <fs type="phrase" sameAs="#unif_132.632.196.45-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_132.632.111.19-phr"/>
-                                  <fs type="phrase" sameAs="#unif_132.632.111.66-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_132.632.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>stymulacja</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="47850"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="19350"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="unc"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45467.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45467.4288.3939-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45467.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45467.309.158-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.1673.1500-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.14.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.1673.1500-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.4288.3939-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.14.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.4288.3939-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.4537.4151-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.118.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.4537.4151-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.4538.4152-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.118.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.4538.4152-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>stymulować</string>
-                      </f>
-                      <f name="variant">
-                        <string>A</string>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="unc"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45467.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45467.4288.3939-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45467.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45467.309.158-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.1673.1500-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.14.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.1673.1500-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45468.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.4288.3939-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.14.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.4288.3939-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.13.9-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12284.45469.36.30-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.4537.4151-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.118.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.4537.4151-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45470.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.175-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.4538.4152-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.118.10-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.173-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.4538.4152-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.176-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_39.177-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12285.45471.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_40-ent">
-          <def>wzbudzanie_podziwu</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>O</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_40-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_40.179-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Stimulus"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="synsets">
-                        <vColl org="set">
-                          <numeric value="8062"/>
-                        </vColl>
-                      </f>
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="CECHA"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_40.178-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Stimulus"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_40.180-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Experiencer"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_40.181-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Factor"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="synsets">
-                        <vColl org="set">
-                          <numeric value="-48"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>imponować</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="86742"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="61096"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.178-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10255.323.130-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.180-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10255.89.77-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.178-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10256.50.40-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.180-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10256.89.77-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.178-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10257.324.196-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.180-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10257.89.77-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.178-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10258.325.250-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.180-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10258.89.77-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.178-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10259.326.131-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.180-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10259.89.77-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.178-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10260.53.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.180-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10260.89.77-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.178-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10261.462.8-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10261.462.367-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10261.462.42-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10261.462.368-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10261.462.369-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10261.462.370-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10261.462.37-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.180-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10261.89.77-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.178-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10262.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.180-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10262.89.77-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.179-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10262.44.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.178-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10262.44.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.180-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10262.89.77-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.181-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10262.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.178-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10263.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.180-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10263.89.77-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.179-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10263.503.38-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10263.503.44-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10263.503.402-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10263.503.45-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.178-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10263.503.38-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10263.503.44-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10263.503.402-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2390.10263.503.45-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.180-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10263.89.77-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_40.181-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2390.10263.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_44-ent">
-          <def>konkury</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>O</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_44-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_44.194-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Recipient"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_44.195-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Theme"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_44.193-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Initiator"/>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>konkurować</string>
-                      </f>
-                      <f name="variant">
-                        <string>2</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="77760"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54037"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_44.193-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2864.12425.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_44.194-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2864.12425.116.62-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_44.195-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2864.12425.1577.79-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2864.12425.1577.80-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2864.12425.1577.155-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_45-ent">
-          <def>Zaloty</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>O</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_45-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_45.198-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Initiator"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="synsets">
-                        <vColl org="set">
-                          <numeric value="6047"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_45.196-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="alternative"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Recipient"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="synsets">
-                        <vColl org="set">
-                          <numeric value="6047"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-                <fs xml:id="unif_45.199-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Manner"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="CZYNNOŚĆ"/>
-                          <symbol value="KOMUNIKAT"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>dostawiać się</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="78024"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54074"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1491.6598.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1491.6598.46.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>dowalać się</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="78023"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54074"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="col"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1571.6840.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1571.6840.46.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>dowalać się</string>
-                      </f>
-                      <f name="variant">
-                        <string>B</string>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="col"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1571.6840.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_1571.6840.46.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>kokietować</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="77784"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54058"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2738.11834.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2738.11834.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2738.11834.44.36-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2738.11835.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2738.11835.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2738.11835.234.38-phr"/>
-                                  <fs type="phrase" sameAs="#unif_2738.11835.234.45-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2738.11836.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2738.11836.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2738.11836.113.53-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>podrywać</string>
-                      </f>
-                      <f name="variant">
-                        <string>2</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="77758"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54035"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="col"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7205.27963.352.16-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7205.27963.352.157-phr"/>
-                                  <fs type="phrase" sameAs="#unif_7205.27963.352.98-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7205.27963.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_7205.27963.30.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>przystawiać się</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="78022"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54074"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="col"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9944.37368.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_9944.37368.46.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>smalić cholewki</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="77761"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54038"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="dat"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_11730.43518.46.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_11730.43518.4346.3979-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_11730.43518.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>uderzać w konkury</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="77773"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54042"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="dat"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12946.48542.46.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12946.48542.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12946.48542.4807.4402-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>uderzać w koperczaki</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="77779"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54055"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="dat"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12946.48542.46.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12946.48542.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12946.48542.4807.4402-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>umizgać się</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="77774"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54035"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_13213.49319.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_13213.49319.46.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>umizgiwać się</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="77775"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54035"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_13214.49320.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_13214.49320.46.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>zalecać się</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="77757"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="54035"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16809.62301.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16809.62301.46.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62380.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62380.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62381.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62381.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62381.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62382.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62382.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62383.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62383.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62383.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62384.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62384.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62385.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62385.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62385.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62386.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62386.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62387.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62387.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62387.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62388.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62388.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62389.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62389.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62389.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62390.80.63-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62391.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62391.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62392.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62392.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62392.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>zaloty</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="27824"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="15400"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="cer"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16809.62301.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16809.62301.46.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62380.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62380.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62381.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62381.16.12-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62381.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62382.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62382.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62383.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62383.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62383.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62384.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62384.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62385.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62385.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62385.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62386.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62386.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62387.2.1-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62387.22.18-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62387.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62388.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62388.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62389.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62389.23.19-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62389.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62390.80.63-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62391.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62391.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.198-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62392.24.20-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.196-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62392.21.17-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_45.199-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_16835.62392.5955.5555-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-        <entry xml:id="unif_46-ent">
-          <def>Pijaństwo</def>
-          <fs type="general_info">
-            <f name="status">
-              <string>O</string>
-            </f>
-          </fs>
-          <fs xml:id="unif_46-frm" type="frame">
-            <f name="arguments">
-              <vColl org="set">
-                <fs xml:id="unif_46.204-arg" type="argument">
-                  <f name="role">
-                    <symbol value=""/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_46.205-arg" type="argument">
-                  <f name="role">
-                    <symbol value=""/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_46.206-arg" type="argument">
-                  <f name="role">
-                    <symbol value=""/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_46.207-arg" type="argument">
-                  <f name="role">
-                    <symbol value=""/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_46.203-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="modifier"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Path"/>
-                  </f>
-                </fs>
-                <fs xml:id="unif_46.201-arg" type="argument">
-                  <f name="role_type">
-                    <symbol value="role"/>
-                  </f>
-                  <f name="role">
-                    <symbol value="Initiator"/>
-                  </f>
-                  <f name="sel_prefs">
-                    <fs type="sel_prefs_groups">
-                      <f name="predefs">
-                        <vColl org="set">
-                          <symbol value="LUDZIE"/>
-                        </vColl>
-                      </f>
-                    </fs>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-          <fs type="frame_realizations">
-            <f name="realizations">
-              <vColl org="set">
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>gazować</string>
-                      </f>
-                      <f name="variant">
-                        <string>3</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="79655"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="55399"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="col"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_46.201-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_2092.8990.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-                <fs type="lexical_unit_realizations">
-                  <f name="lexical_unit">
-                    <fs type="lexical_unit">
-                      <f name="name">
-                        <string>uderzać w gaz</string>
-                      </f>
-                      <f name="variant">
-                        <string>1</string>
-                      </f>
-                      <f name="plwnluid">
-                        <numeric value="75010"/>
-                      </f>
-                      <f name="plwnsid">
-                        <numeric value="51772"/>
-                      </f>
-                      <f name="opinion">
-                        <symbol value="col"/>
-                      </f>
-                    </fs>
-                  </f>
-                  <f name="syntactic_realizations">
-                    <vColl org="set">
-                      <fs type="aternation">
-                        <f name="connections">
-                          <vColl org="set">
-                            <fs type="connection">
-                              <f name="argument">
-                                <fs type="argument" sameAs="#unif_46.201-arg"/>
-                              </f>
-                              <f>
-                                <vColl org="set">
-                                  <fs type="phrase" sameAs="#unif_12946.48516.9.8-phr"/>
-                                </vColl>
-                              </f>
-                            </fs>
-                          </vColl>
-                        </f>
-                      </fs>
-                    </vColl>
-                  </f>
-                </fs>
-              </vColl>
-            </f>
-          </fs>
-        </entry>
-      </div>
-    </body>
-  </text>
-</TEI>