Author: lgiessmann Date: Tue Aug 30 01:56:30 2011 New Revision: 807
Log: gdl-frontend: Widgets: udpated the merged jtm and xtm files for the TextGrid-ServiceRegistry GDL-Schema and fixed some bugs
Added: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/IsidorusBasic.jmx branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/gwt/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Aug 30 00:50:52 2011 (r806) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Aug 30 01:56:30 2011 (r807) @@ -1,6 +1,8 @@ package us.isidor.gdl.anaToMia.Widgets.base;
+import java.util.ArrayList; + import us.isidor.gdl.anaToMia.TmEngine.jtmsBasedEngine.JtmsTmEngine; import us.isidor.gdl.anaToMia.Widgets.environment.Pair; import us.isidor.gdl.anaToMia.Widgets.environment.TopicIdentifierTypes; @@ -27,14 +29,14 @@ mainPanel.setBorderWidth(1); mainPanel.setPixelSize(1000, 600); - //ArrayList<Pair<String, TopicIdentifierTypes>> requestedTopicsToCreate = new ArrayList<Pair<String,TopicIdentifierTypes>>(); - //requestedTopicsToCreate.add(new Pair<String, TopicIdentifierTypes>("http://textgrid.org/serviceregistry/model/types/Hash-Object", TopicIdentifierTypes.SubjectIdentifier)); + ArrayList<Pair<String, TopicIdentifierTypes>> requestedTopicsToCreate = new ArrayList<Pair<String,TopicIdentifierTypes>>(); + requestedTopicsToCreate.add(new Pair<String, TopicIdentifierTypes>("http://textgrid.org/serviceregistry/model/types/Hash-Object", TopicIdentifierTypes.SubjectIdentifier)); //requestedTopicsToCreate.add(new Pair<String, TopicIdentifierTypes>("http://textgrid.org/serviceregistry/model/types/Environment", TopicIdentifierTypes.SubjectIdentifier)); //requestedTopicsToCreate.add(new Pair<String, TopicIdentifierTypes>("http://psi.test.org/gdl-test/Poet", TopicIdentifierTypes.SubjectIdentifier)); //requestedTopicsToCreate.add(new Pair<String, TopicIdentifierTypes>("http://psi.test.org/gdl-test/Musician", TopicIdentifierTypes.SubjectIdentifier)); //Pair<String, TopicIdentifierTypes> requestedTopicToEdit = new Pair<String, TopicIdentifierTypes>("http://textgrid.org/serviceregistry/model/types/test-env", TopicIdentifierTypes.SubjectIdentifier); - Pair<String, TopicIdentifierTypes> requestedTopicToEdit = new Pair<String, TopicIdentifierTypes>("http://textgrid.org/serviceregistry/test-hash-2", TopicIdentifierTypes.SubjectIdentifier); + //Pair<String, TopicIdentifierTypes> requestedTopicToEdit = new Pair<String, TopicIdentifierTypes>("http://textgrid.org/serviceregistry/test-hash-2", TopicIdentifierTypes.SubjectIdentifier); GdlPanel.addClickHandler("hash_object_reset_button_id", new ClickHandler() { @Override public void onClick(ClickEvent event) { @@ -43,7 +45,7 @@ } }); - gdlPanel = new GdlPanel(requestedTopicToEdit, null); + gdlPanel = new GdlPanel(null, requestedTopicsToCreate); mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback());
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java Tue Aug 30 00:50:52 2011 (r806) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java Tue Aug 30 01:56:30 2011 (r807) @@ -173,7 +173,7 @@ if(Utils.compareLists(allInstanceValues, requestedTops) && !tmValues.contains(tmValue)) tmValues.add(tmValue); } } - } + }
// get all views that are bound to the found tm-values ArrayList<Topic> views = new ArrayList<Topic>(); @@ -184,7 +184,7 @@ for (Topic view : allViews) if(!views.contains(view) && TmHelper.isInstanceOf(view, viewSupertype)) views.add(view); } - + return views; }
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Tue Aug 30 00:50:52 2011 (r806) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Tue Aug 30 01:56:30 2011 (r807) @@ -23,7 +23,7 @@ // this class can be used as a callback that requests the Topic Map data // addressable by the URI isidorusUrl public class LoadSchemaCallback implements ILoadSchemaCallback{ - private final String isidorusUrl = URL.encode(GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm");//"TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"); // TODO: replace with the correct URL + private final String isidorusUrl = URL.encode(GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"); // TODO: replace with the correct URL private ArrayList<Pair<String, TopicIdentifierTypes>> requestedTopicsToCreate = new ArrayList<Pair<String,TopicIdentifierTypes>>(); private Pair<String, TopicIdentifierTypes> requestedTopicToEdit = null; private RequestBuilder requestBuilder = new RequestBuilder(RequestBuilder.GET, isidorusUrl);
Added: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/IsidorusBasic.jmx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/IsidorusBasic.jmx Tue Aug 30 01:56:30 2011 (r807) @@ -0,0 +1,679 @@ +<?xml version="1.0" encoding="UTF-8"?> +<jmeterTestPlan version="1.2" properties="2.1"> + <hashTree> + <TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="Test Plan" enabled="true"> + <stringProp name="TestPlan.comments"></stringProp> + <boolProp name="TestPlan.functional_mode">false</boolProp> + <boolProp name="TestPlan.serialize_threadgroups">false</boolProp> + <elementProp name="TestPlan.user_defined_variables" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="TestPlan.user_define_classpath"></stringProp> + </TestPlan> + <hashTree> + <ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Thread Group" enabled="true"> + <elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" testname="Loop Controller" enabled="true"> + <boolProp name="LoopController.continue_forever">false</boolProp> + <stringProp name="LoopController.loops">200</stringProp> + </elementProp> + <stringProp name="ThreadGroup.num_threads">4</stringProp> + <stringProp name="ThreadGroup.ramp_time">1</stringProp> + <longProp name="ThreadGroup.start_time">1268394663000</longProp> + <longProp name="ThreadGroup.end_time">1268394663000</longProp> + <boolProp name="ThreadGroup.scheduler">false</boolProp> + <stringProp name="ThreadGroup.on_sample_error">continue</stringProp> + <stringProp name="ThreadGroup.duration"></stringProp> + <stringProp name="ThreadGroup.delay"></stringProp> + </ThreadGroup> + <hashTree> + <ConfigTestElement guiclass="HttpDefaultsGui" testclass="ConfigTestElement" testname="HTTP Request Defaults" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain">isidorus2.ztt.fh-worms.de</stringProp> + <stringProp name="HTTPSampler.port">7000</stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path"></stringProp> + </ConfigTestElement> + <hashTree/> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/psis Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/json/psis</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/psis Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-2050829214">[([".+"],?)+]</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/psis Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/json/psis</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/psis Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-2050829214">[([".+"],?)+]</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/psis Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/json/psis</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/psis Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-2050829214">[([".+"],?)+]</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/psis Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/json/psis</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/psis Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-2050829214">[([".+"],?)+]</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/psis Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/json/psis</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/psis Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-2050829214">[([".+"],?)+]</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/psis Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/json/psis</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/psis Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-2050829214">[([".+"],?)+]</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/psis Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">/json/psis</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/psis Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-2050829214">[([".+"],?)+]</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">1</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/production/tgauth Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/production/tgauth</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/newmeta/tgcrud Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/newmeta/tgcrud</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/parameter/newmeta/userdata Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/parameter/newmeta/userdata</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/url/newmeta/ApprovedServicesTextGridURI Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/url/newmeta/ApprovedServicesTextGridURI</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/1.0/tgsearch Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/1.0/tgsearch</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/url/production/pwchange Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/url/production/pwchange</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/development/rdf-repository Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/development/rdf-repository</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/url/development/tgauth Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/url/development/tgauth</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/url/testing/webpublish Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/url/testing/webpublish</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/testing/tgcrud Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/testing/tgcrud</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <HTTPSampler guiclass="HttpTestSampleGui" testclass="HTTPSampler" testname="json/get/http://textgrid.org/serviceregistry/url/production/webpublish Request" enabled="true"> + <elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> + <collectionProp name="Arguments.arguments"/> + </elementProp> + <stringProp name="HTTPSampler.domain"></stringProp> + <stringProp name="HTTPSampler.port"></stringProp> + <stringProp name="HTTPSampler.connect_timeout"></stringProp> + <stringProp name="HTTPSampler.response_timeout"></stringProp> + <stringProp name="HTTPSampler.protocol"></stringProp> + <stringProp name="HTTPSampler.contentEncoding"></stringProp> + <stringProp name="HTTPSampler.path">json/get/http://textgrid.org/serviceregistry/url/production/webpublish</stringProp> + <stringProp name="HTTPSampler.method">GET</stringProp> + <boolProp name="HTTPSampler.follow_redirects">false</boolProp> + <boolProp name="HTTPSampler.auto_redirects">true</boolProp> + <boolProp name="HTTPSampler.use_keepalive">true</boolProp> + <boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp> + <boolProp name="HTTPSampler.monitor">false</boolProp> + <stringProp name="HTTPSampler.embedded_url_re"></stringProp> + </HTTPSampler> + <hashTree> + <ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="json/get/http://textgrid.org/serviceregistry/parameter/1.0/authz Assertion" enabled="true"> + <collectionProp name="Asserion.test_strings"> + <stringProp name="-775567678">{"topic":{.+},"topicStubs":[({.+})+],"associations":[({.+})+],"tmIds":[.+]}</stringProp> + </collectionProp> + <stringProp name="Assertion.test_field">Assertion.response_data</stringProp> + <boolProp name="Assertion.assume_success">false</boolProp> + <intProp name="Assertion.test_type">2</intProp> + </ResponseAssertion> + <hashTree/> + </hashTree> + <ResultCollector guiclass="ViewResultsFullVisualizer" testclass="ResultCollector" testname="View Results Tree" enabled="true"> + <boolProp name="ResultCollector.error_logging">false</boolProp> + <objProp> + <name>saveConfig</name> + <value class="SampleSaveConfiguration"> + <time>true</time> + <latency>true</latency> + <timestamp>true</timestamp> + <success>true</success> + <label>true</label> + <code>true</code> + <message>true</message> + <threadName>true</threadName> + <dataType>true</dataType> + <encoding>false</encoding> + <assertions>true</assertions> + <subresults>true</subresults> + <responseData>false</responseData> + <samplerData>false</samplerData> + <xml>true</xml> + <fieldNames>false</fieldNames> + <responseHeaders>false</responseHeaders> + <requestHeaders>false</requestHeaders> + <responseDataOnError>false</responseDataOnError> + <saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage> + <assertionsResultsToSave>0</assertionsResultsToSave> + <bytes>true</bytes> + </value> + </objProp> + <stringProp name="filename"></stringProp> + </ResultCollector> + <hashTree/> + <ResultCollector guiclass="StatVisualizer" testclass="ResultCollector" testname="Aggregate Report" enabled="true"> + <boolProp name="ResultCollector.error_logging">false</boolProp> + <objProp> + <name>saveConfig</name> + <value class="SampleSaveConfiguration"> + <time>true</time> + <latency>true</latency> + <timestamp>true</timestamp> + <success>true</success> + <label>true</label> + <code>true</code> + <message>true</message> + <threadName>true</threadName> + <dataType>true</dataType> + <encoding>false</encoding> + <assertions>true</assertions> + <subresults>true</subresults> + <responseData>false</responseData> + <samplerData>false</samplerData> + <xml>true</xml> + <fieldNames>false</fieldNames> + <responseHeaders>false</responseHeaders> + <requestHeaders>false</requestHeaders> + <responseDataOnError>false</responseDataOnError> + <saveAssertionResultsFailureMessage>false</saveAssertionResultsFailureMessage> + <assertionsResultsToSave>0</assertionsResultsToSave> + <bytes>true</bytes> + </value> + </objProp> + <stringProp name="filename"></stringProp> + </ResultCollector> + <hashTree/> + </hashTree> + </hashTree> + </hashTree> +</jmeterTestPlan>
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Tue Aug 30 00:50:52 2011 (r806) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Tue Aug 30 01:56:30 2011 (r807) @@ -106,7 +106,7 @@ {"subject_identifiers":["[tgg:has-environment-creator-association-view]"], "instance_of":["si:[gdlt:Creator-Association-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment%22%7D], "occurrences":[{"type":"si:[gdl:id]", "value":"has_environment_createor_association_view_id"}, {"type":"si:[gdl:width]", "value":"230px"}]}, {"subject_identifiers":["[tgg:hash-object-has-environement-creator-association-view-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"10px"}, {"type":"si:[gdl:left]", "value":"120px"}]},
- {"subject_identifiers":["[tgg:has-environment-hash-role-hidden-value]"], "instance_of":["si:[gdlt:Hidden-Value]"]}]}, + {"subject_identifiers":["[tgg:has-environment-hash-role-hidden-value]"], "instance_of":["si:[gdlt:Hidden-Value]"]},
{"subject_identifiers":["[tgg:hash-object-creator-text-label-env]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_label_env_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"100px"},{"type":"si:[gdl:background-color]", "value":"gray"}, {"type":"si:[gdl:border-style]", "value":"none"}]}, {"subject_identifiers":["[tgg:hash-object-creator-text-label-env-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"10px"}, {"type":"si:[gdl:left]", "value":"10px"}]}, @@ -157,7 +157,7 @@ {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:View]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Association-View]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Association-View]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Creator-Association-View]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Descriptor]"}]}, - {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Descriptor]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Hidden-value]"}]}, + {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Descriptor]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Hidden-Value]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:TM-Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Value]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:TM-Single-Type-Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:TM-Value]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Default-Literal-Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Literal-Value]"}]},
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Tue Aug 30 00:50:52 2011 (r806) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Tue Aug 30 01:56:30 2011 (r807) @@ -2996,6 +2996,16 @@ ] }, { + "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Role-Player]" + ], + "names":null, + "occurrences":null + }, + { "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" ], "subject_locators":null, @@ -3349,7 +3359,17 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" + "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Hidden-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" ], "subject_locators":null, "item_identifiers":null, @@ -3368,41 +3388,41 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"115px", + "value":"10px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", + "type":"si:[pref_3:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" + "subject_identifiers":["[pref_1:has-environment-creator-association-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_2:Creator-Association-View]" ], - "names":null, - "occurrences":[{ + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_commit_button_id", + "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", "scope":null, + "variants":null, "reifier":null - }, - { + } + ], + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_3:id]", + "value":"has_environment_createor_association_view_id", "scope":null, "reifier":null }, @@ -3410,900 +3430,344 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"reset", + "value":"230px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" + "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" + "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", "scope":null, + "variants":null, "reifier":null } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Action-Button]" ], - "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_reset_button_id", + "value":"hash_object_default_creator_topic_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_3:width]", + "value":"362px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_3:height]", + "value":"160px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_3:background-color]", + "value":"gray", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" + "subject_identifiers":["[pref_1:textgrid-ui-schema]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_2:Schema]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", + "type":"si:[pref_3:schema-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" + "subject_identifiers":["[pref_2:Commit-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value]" + "subject_identifiers":["[pref_2:Action-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" + "subject_identifiers":["[pref_2:Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Value-Group]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" + "subject_identifiers":["[pref_3:right]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" + "subject_identifiers":["[pref_3:left]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" + "subject_identifiers":["[pref_3:top]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" + "subject_identifiers":["[pref_3:position-style]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" + "subject_identifiers":["[pref_2:Position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key]" + "subject_identifiers":["[pref_3:font-size]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" + "subject_identifiers":["[pref_3:readonly]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"key:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" + "subject_identifiers":["[pref_2:Text]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" + "subject_identifiers":["[pref_2:List-Box]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" + "subject_identifiers":["[pref_2:Text-Object]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" + "subject_identifiers":["[pref_2:Default-Literal-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" + "subject_identifiers":["[pref_3:fixed]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" + "subject_identifiers":["[pref_2:Default-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" + "subject_identifiers":["[pref_3:literal-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:List-Box]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_list_box_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"232px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" + "subject_identifiers":["[pref_2:Literal-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" + "subject_identifiers":["[pref_2:TM-Single-Type-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" + "subject_identifiers":["[pref_3:display-by]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" + "subject_identifiers":["[pref_2:TM-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" + "subject_identifiers":["[pref_2:Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:has-environment-creator-association-view]" + "subject_identifiers":["[pref_2:Creator-Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Creator-Association-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_createor_association_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - } - ] + "instance_of":null, + "names":null, + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" + "subject_identifiers":["[pref_2:Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" + "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Creator-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_default_creator_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"362px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"160px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", - "scope":null, - "reifier":null - } - ] + "instance_of":null, + "names":null, + "occurrences":null }, { - "subject_identifiers":["[pref_1:textgrid-ui-schema]" + "subject_identifiers":["[pref_2:Default-Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Schema]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", - "type":"si:[pref_3:schema-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], + "instance_of":null, + "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Commit-Button]" + "subject_identifiers":["[pref_2:Topic-View]" ], "subject_locators":null, "item_identifiers":null, @@ -4312,16 +3776,17 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:Action-Button]" + "subject_identifiers":["[pref_3:view-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:name-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Button]" + "subject_identifiers":["[pref_2:View]" ], "subject_locators":null, "item_identifiers":null, @@ -4330,26 +3795,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:Value-Group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:right]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:left]" + "subject_identifiers":["[pref_3:id]" ], "subject_locators":null, "item_identifiers":null, @@ -4359,7 +3805,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:top]" + "subject_identifiers":["[pref_3:background-color]" ], "subject_locators":null, "item_identifiers":null, @@ -4369,7 +3815,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:position-style]" + "subject_identifiers":["[pref_3:border-style]" ], "subject_locators":null, "item_identifiers":null, @@ -4379,16 +3825,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:Position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:font-size]" + "subject_identifiers":["[pref_3:pointer]" ], "subject_locators":null, "item_identifiers":null, @@ -4398,7 +3835,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:readonly]" + "subject_identifiers":["[pref_3:height]" ], "subject_locators":null, "item_identifiers":null, @@ -4408,43 +3845,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:Text]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:List-Box]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Text-Object]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Literal-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:fixed]" + "subject_identifiers":["[pref_3:padding-left]" ], "subject_locators":null, "item_identifiers":null, @@ -4454,16 +3855,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:literal-value]" + "subject_identifiers":["[pref_3:width]" ], "subject_locators":null, "item_identifiers":null, @@ -4473,25 +3865,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:Literal-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:TM-Single-Type-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:display-by]" + "subject_identifiers":["[pref_3:hidden-value]" ], "subject_locators":null, "item_identifiers":null, @@ -4501,80 +3875,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:TM-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Creator-Association-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Association-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Topic-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Topic-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:view-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:View]" + "subject_identifiers":["[pref_2:Hidden-Value]" ], "subject_locators":null, "item_identifiers":null, @@ -4583,78 +3884,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:id]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:background-color]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:border-style]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:pointer]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:height]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:padding-left]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:width]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Visible-Object]", - "[pref_2:Visible-Object]" + "subject_identifiers":["[pref_2:Visible-Object]" ], "subject_locators":null, "item_identifiers":null, @@ -4782,8 +4012,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:container]", - "[pref_3:container]" + "subject_identifiers":["[pref_3:container]" ], "subject_locators":null, "item_identifiers":null, @@ -5657,8096 +4886,3129 @@ "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:card-max]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:card-min]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:association-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:role-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:occurrence-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:name-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - } - ], - "associations":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:configuration]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:configuration]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:data]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:data]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:form]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:form]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:default]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:default]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:needs-b64-encoding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:needs-b64-encoding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:crud]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:crud]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:multiple]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:multiple]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:mime-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:mime-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:param]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:param]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-name]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:tg-approved]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:tg-approved]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:textgrid-url]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:textgrid-url]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:identifier]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:identifier]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:owner]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:owner]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:use-target-ns]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:use-target-ns]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:target-namespace]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:target-namespace]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-body]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-body]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:inline-description-location]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:inline-description-location]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-uri]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-uri]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:keywords]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:keywords]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:operation]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:operation]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-name]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-param-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-param-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-identifier-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-identifier-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-owner-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-owner-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-keywords-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-keywords-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-description-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-description-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-service-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-service-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-operation-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-operation-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:data]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:form]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:default]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-config-id]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:name-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:example-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:needs-b64-encoding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:crud]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:multiple]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:mime-type]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:param]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-type]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-id]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter-name]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:name-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:tg-approved]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:textgrid-url]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:identifier]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:owner]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:use-target-ns]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:target-namespace]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:description-location-body]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:inline-description-location]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:description-location-uri]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:keywords]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:description]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-type]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:operation]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:service-name]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:name-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:configuration]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-value]", - "reifier":null, - "player":"si:[pref_1:environment-editor-view-binding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_5:Environment]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Delete-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Editor-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-value]", - "reifier":null, - "player":"si:[pref_1:environment-creator-view-binding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_5:Environment]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Literal-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Commit-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-creator-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:cursor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:display-by]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" - } - ] + "occurrences":null }, { + "subject_identifiers":["[pref_7:card-max]" + ], + "subject_locators":null, "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" - } - ] + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null }, { + "subject_identifiers":["[pref_7:card-min]" + ], + "subject_locators":null, "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" - } - ] + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null }, { + "subject_identifiers":["[pref_7:association-type]" + ], + "subject_locators":null, "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null }, { + "subject_identifiers":["[pref_7:role-type]" + ], + "subject_locators":null, "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" - } - ] + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null }, { + "subject_identifiers":["[pref_7:occurrence-type]" + ], + "subject_locators":null, "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null }, { + "subject_identifiers":["[pref_7:name-type]" + ], + "subject_locators":null, "item_identifiers":null, - "type":"si:[pref_3:position]", + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + } + ], + "associations":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_4:configuration]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_4:has-config-configuration-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_4:has-config]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_4:has-config-configuration-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + "player":"si:[pref_4:configuration]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_4:has-config-configuration-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + "player":"si:[pref_4:has-config]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value]" + "player":"si:[pref_4:has-config-configuration-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_5:Parameter-Config]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_4:has-config-configuration-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_4:parameter]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_4:has-config-parameter-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_4:has-config]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-value]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-view-binding]" + "player":"si:[pref_4:has-config-parameter-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-view-binding]" + "player":"si:[pref_4:parameter]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_4:has-config-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" + "player":"si:[pref_4:has-config]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_4:has-config-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_5:Parameter]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Delete-Button]" + "player":"si:[pref_4:has-config-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Association-View]" + "player":"si:[pref_4:service]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Editor-Association-View]" + "player":"si:[pref_4:has-parameter-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" + "player":"si:[pref_4:has-parameter]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Default-Editor-Topic-View]" + "player":"si:[pref_4:has-parameter-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button-position]" + "player":"si:[pref_4:service]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_4:has-parameter-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" + "player":"si:[pref_4:has-parameter]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Delete-Button]" + "player":"si:[pref_4:has-parameter-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + "player":"si:[pref_5:Service]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_4:has-parameter-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-position]" + "player":"si:[pref_4:parameter]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" + "player":"si:[pref_4:has-parameter]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value]" + "player":"si:[pref_4:parameter]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + "player":"si:[pref_4:has-parameter]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-position]" + "player":"si:[pref_5:Parameter]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" + "player":"si:[pref_4:parameter-config-data-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:data]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + "player":"si:[pref_4:parameter-config-data-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_4:data]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-position]" + "player":"si:[pref_4:parameter-config-data-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" + "player":"si:[pref_4:parameter-config-form-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:form]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value]" + "player":"si:[pref_4:parameter-config-form-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:form]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + "player":"si:[pref_4:parameter-config-form-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-position]" + "player":"si:[pref_4:parameter-config-default-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_4:default]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" + "player":"si:[pref_4:parameter-config-default-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:default]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + "player":"si:[pref_4:parameter-config-default-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-position]" + "player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_4:parameter-config-id]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" + "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:parameter-config-id]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" + "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_4:parameter-config-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Editor-Association-View]" + "player":"si:[pref_4:parameter-config-name]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value]" + "player":"si:[pref_4:parameter-config-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_5:Parameter-Config]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + "player":"si:[pref_4:parameter-config-psi-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_5:Parameter-Config]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-position]" + "player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_4:needs-b64-encoding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:needs-b64-encoding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-view-binding]" + "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_4:parameter-crud-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Default-Editor-Topic-View]" + "player":"si:[pref_4:crud]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_4:parameter-crud-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_4:crud]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:parameter-crud-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_4:parameter-multiple-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_4:multiple]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_4:parameter-multiple-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value]" + "player":"si:[pref_4:multiple]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_4:parameter-multiple-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:parameter-mime-type-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_4:mime-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + "player":"si:[pref_4:parameter-mime-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_4:mime-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + "player":"si:[pref_4:parameter-mime-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_4:parameter-param-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_4:param]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:parameter-param-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_4:param]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + "player":"si:[pref_4:parameter-param-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + "player":"si:[pref_4:parameter-id]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_4:parameter-parameter-id-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_4:parameter-id]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:parameter-parameter-id-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_4:parameter-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + "player":"si:[pref_4:parameter-parameter-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_4:parameter-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_4:parameter-parameter-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:parameter-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_4:parameter-name]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + "player":"si:[pref_4:parameter-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + "player":"si:[pref_4:parameter-psi-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + "player":"si:[pref_5:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:service-tg-approved-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_4:tg-approved]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:service-tg-approved-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_4:tg-approved]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:display-by]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_4:service-tg-approved-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + "player":"si:[pref_4:service-textgrid-url-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_4:textgrid-url]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_4:service-textgrid-url-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + "player":"si:[pref_4:textgrid-url]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_4:service-textgrid-url-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:service-identifier-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_4:identifier]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:service-identifier-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_4:identifier]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:service-identifier-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:service-owner-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_4:owner]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:service-owner-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_4:owner]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:service-owner-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_4:service-use-target-ns-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:use-target-ns]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:service-use-target-ns-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:use-target-ns]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + "player":"si:[pref_4:service-use-target-ns-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + "player":"si:[pref_4:service-target-namespace-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + "player":"si:[pref_4:target-namespace]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:service-target-namespace-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_4:target-namespace]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:service-target-namespace-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:service-description-location-body-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-value]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" + "player":"si:[pref_4:description-location-body]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" + "player":"si:[pref_4:service-description-location-body-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_4:description-location-body]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" + "player":"si:[pref_4:service-description-location-body-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_4:service-inline-description-location-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Commit-Button]" + "player":"si:[pref_4:inline-description-location]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Button]" + "player":"si:[pref_4:service-inline-description-location-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_4:inline-description-location]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_4:service-inline-description-location-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Button]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:service-description-location-uri-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_4:description-location-uri]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:service-description-location-uri-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_4:description-location-uri]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_4:service-description-location-uri-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_4:service-keywords-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:List-Box]" + "player":"si:[pref_4:keywords]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_4:service-keywords-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_4:keywords]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:service-keywords-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Default-Value]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:service-description-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Literal-Value]" + "player":"si:[pref_4:description]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" + "player":"si:[pref_4:service-description-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:TM-Value]" + "player":"si:[pref_4:description]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:TM-Value]" + "player":"si:[pref_4:service-description-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_4:service-service-type-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:service-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Association-View]" + "player":"si:[pref_4:service-service-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Creator-Association-View]" + "player":"si:[pref_4:service-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_4:service-service-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Association-View]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" + "player":"si:[pref_4:service-operation-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" + "player":"si:[pref_4:operation]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Topic-View]" + "player":"si:[pref_4:service-operation-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" + "player":"si:[pref_4:operation]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_4:service-operation-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Topic-View]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_4:service-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_4:service-name]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:service-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:service-psi-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_2:Role-Player]" + "player":"si:[pref_5:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button-position]" + "player":"si:[pref_1:environment-editor-delete-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:environment-editor-name-text]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_1:environment-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Commit-Button]" + "player":"si:[pref_1:environment-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value]" + "player":"si:[pref_1:environment-editor-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_1:environment-editor-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:environment-editor-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-position]" + "player":"si:[pref_1:environment-editor-name-text-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:environment-editor-text-label]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_1:environment-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_1:environment-editor-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + "player":"si:[pref_1:environment-editor-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:environment-editor-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-position]" + "player":"si:[pref_1:environment-editor-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:environment-editor-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_1:environment-editor-text-label-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + "player":"si:[pref_1:environment-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_1:environment-editor-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:topic-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + "player":"si:[pref_1:environment-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-value]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:environment-editor-view-binding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-position]" + "player":"si:[pref_1:environment-editor-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_5:Environment]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_1:textgrid-ui-schema]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:environment-default-editor-topic-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + "player":"si:[pref_1:environment-creator-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:environment-creator-name-text]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-position]" + "player":"si:[pref_1:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:environment-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_1:environment-creator-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + "player":"si:[pref_1:environment-creator-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_1:environment-creator-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + "player":"si:[pref_1:environment-creator-name-text-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:environment-creator-text-label]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-position]" + "player":"si:[pref_1:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:environment-creator-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_1:environment-creator-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:environment-creator-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + "player":"si:[pref_1:environment-creator-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_2:Role-Player]" + "player":"si:[pref_1:environment-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_1:environment-creator-text-label-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" + "player":"si:[pref_1:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:environment-creator-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:topic-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_1:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-value]", "reifier":null, - "player":"si:[pref_2:List-Box]" + "player":"si:[pref_1:environment-creator-view-binding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + "player":"si:[pref_1:environment-creator-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_5:Environment]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + "player":"si:[pref_1:textgrid-ui-schema]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:environment-default-creator-topic-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-position]" + "player":"si:[pref_2:Action-Button]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_2:Commit-Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_2:Default-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_2:Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" + "player":"si:[pref_2:Literal-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_2:Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_2:Default-Topic-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Creator-Association-View]" + "player":"si:[pref_2:Default-Creator-Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" + "player":"si:[pref_1:hash-object-editor-delete-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" + "player":"si:[pref_1:hash-object-editor-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" + "player":"si:[pref_1:hash-object-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Schema]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_3:right]" + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_3:left]" + "player":"si:[pref_1:hash-object-editor-text-label-value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_3:top]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_3:position-style]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_1:hash-object-editor-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_3:font-size]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_3:readonly]" + "player":"si:[pref_1:hash-object-editor-text-key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_1:hash-object-editor-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_3:fixed]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_1:hash-object-editor-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_3:literal-value]" + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_3:display-by]" + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_1:hash-object-editor-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_1:hash-object-editor-text-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-label-key]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_1:hash-object-editor-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_1:hash-object-editor-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-label-key-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_1:hash-object-editor-text-label-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_3:display-by]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_1:hash-object-editor-text-env-position]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, "player":"si:[pref_4:has-environment-hash-role-constraint]" } @@ -13754,18 +8016,18 @@ }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:environment]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, "player":"si:[pref_4:has-environment-environment-association-role-constraint]" } @@ -13773,400 +8035,412 @@ }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:environment]" + "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_1:has-environment-editor-association-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_4:hash-value-datatype-constraint]" + "player":"si:[pref_1:hash-object-editor-text-label-env-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_1:hash-object-editor-text-label-env-position]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_4:hash-value-regular-expression-constraint]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_1:hash-object-editor-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:topic-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-value]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_1:hash-object-editor-view-binding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_1:hash-object-editor-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-key-datatype-constraint]" + "player":"si:[pref_5:Hash-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_1:textgrid-ui-schema]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:hash-key-regular-expression-constraint]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_2:Action-Button]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_2:Delete-Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_2:Button]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_2:Action-Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_2:Text-Object]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + "player":"si:[pref_2:Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" + "player":"si:[pref_2:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_2:Text-Object]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_2:Visible-Object]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_4:environment-name-regular-expression-constraint]" + "player":"si:[pref_2:Text-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_2:Default-Literal-Value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_2:Default-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_2:Default-Literal-Value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_2:Literal-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_2:TM-Single-Type-Value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_4:environment-psi-constraint]" + "player":"si:[pref_2:TM-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_2:TM-Value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_4:hash-psi-constraint]" + "player":"si:[pref_2:Value]" } ] }, @@ -14179,13 +8453,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Value]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:Descriptor]" } ] }, @@ -14198,13 +8472,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Association-View]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:Editor-Association-View]" } ] }, @@ -14217,13 +8491,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:View]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_2:Association-View]" } ] }, @@ -14236,13 +8510,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Default-Topic-View]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_2:Default-Editor-Topic-View]" } ] }, @@ -14255,13 +8529,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Topic-View]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_2:Default-Topic-View]" } ] }, @@ -14274,893 +8548,887 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:View]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_2:Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-key-regular-expression-constraint]" + "player":"si:[pref_2:Visible-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_2:View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_2:Visible-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" + "player":"si:[pref_2:Role-Player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" + "player":"si:[pref_4:service]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_4:has-hash-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_4:has-hash-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-psi-constraint]" + "player":"si:[pref_4:service]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_4:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name-regular-expression-constraint]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_4:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_5:Service]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_4:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-psi-constraint]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:name-type]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_4:environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_4:environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_6:supertype-subtype]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_6:subtype]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_6:supertype]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:hash-value-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained-role]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:hash-value-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained-topic-type]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained-statement]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:hash-key-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-key-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-hash-type-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:environment-name-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:datatype]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:regexp]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:environment-psi-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:card-max]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:hash-psi-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:card-min]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_7:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:name-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:subject-identifier-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:topic-name-constraint]" } ] }
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Tue Aug 30 00:50:52 2011 (r806) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Tue Aug 30 01:56:30 2011 (r807) @@ -1,14077 +1,854 @@ -<?xml version="1.0" encoding="utf-8"?> -<t:topicMap xmlns:t="http://www.topicmaps.org/xtm/" version="2.0"> - <t:itemIdentity href="http://textgrid.org/serviceregistry/services-tm" /> - <t:topic id="t236"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/topic-type" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t241"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/name-type" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t246"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/occurrence-type" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t251"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/role-type" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t256"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/association-type" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t261"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/card-min" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t266"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/card-max" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t271"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/regexp" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t276"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/datatype" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t281"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/constraint" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t286"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/subject-identifier-constraint" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t291"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/topic-name-constraint" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t296"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/topic-occurrence-constraint" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t301"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/regular-expression-constraint" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t306"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/occurrence-datatype-constraint" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t311"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/topic-role-constraint" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t316"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/association-role-constraint" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t321"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/constrained" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t326"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/constrained-statement" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t331"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/constrained-topic-type" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t336"> - <t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/constrained-role" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t341"> - <t:subjectIdentifier href="http://psi.topicmaps.org/iso13250/model/supertype" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t346"> - <t:subjectIdentifier href="http://psi.topicmaps.org/iso13250/model/subtype" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t351"> - <t:subjectIdentifier href="http://psi.topicmaps.org/iso13250/model/supertype-subtype" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t356"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/types/Service" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t361"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/types/Hash-Object" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t366"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/types/Environment" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t371"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-type" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t376"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/key" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t381"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/value" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t386"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/environment-name" /> - <t:instanceOf> - <t:topicRef href="#t241" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t391"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-hash" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t396"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-environment" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t401"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t406"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t411"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/environment" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t416"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/environment-psi-constraint" /> - <t:instanceOf> - <t:topicRef href="#t286" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t271" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5Ehttp://textgrid.org/servicer...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t421"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/environment-name-constraint" /> - <t:instanceOf> - <t:topicRef href="#t291" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t426"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/environment-name-regular-expressio..." /> - <t:instanceOf> - <t:topicRef href="#t301" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t271" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5E.+$</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t431"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-psi-constraint" /> - <t:instanceOf> - <t:topicRef href="#t286" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t271" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5Ehttp://textgrid.org/servicer...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t436"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-hash-type-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t441"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-hash-type-regular-expression-..." /> - <t:instanceOf> - <t:topicRef href="#t301" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t271" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5E.+$</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t446"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-hash-type-datatype-constraint" /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t451"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-key-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t456"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-key-regular-expression-constr..." /> - <t:instanceOf> - <t:topicRef href="#t301" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t271" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5E.+$</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t461"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-key-datatype-constraint" /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t466"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-value-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t471"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-value-regular-expression-cons..." /> - <t:instanceOf> - <t:topicRef href="#t301" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t271" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5E.+$</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t476"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-value-datatype-constraint" /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t481"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-environment-environment-role-c..." /> - <t:instanceOf> - <t:topicRef href="#t311" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t486"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-environment-environment-associ..." /> - <t:instanceOf> - <t:topicRef href="#t316" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t491"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-environment-hash-role-constrai..." /> - <t:instanceOf> - <t:topicRef href="#t311" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t496"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-environment-hash-association-r..." /> - <t:instanceOf> - <t:topicRef href="#t316" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t501"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-hash-hash-role-constraint" /> - <t:instanceOf> - <t:topicRef href="#t311" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t506"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-hash-hash-association-role-con..." /> - <t:instanceOf> - <t:topicRef href="#t316" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t511"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-hash-service-role-constraint" /> - <t:instanceOf> - <t:topicRef href="#t311" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t516"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-hash-service-association-role-..." /> - <t:instanceOf> - <t:topicRef href="#t316" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2601"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/contains" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2606"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/topic-view-binding" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2611"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/association-view-binding" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2616"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/tm-binding" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2621"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/view-binding" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2626"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/value-binding" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2631"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/position" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2636"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/container" /> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/container" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2641"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/containee" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2646"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/tm-value" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2651"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/tm-construct" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2656"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/descriptor" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2661"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/value-group" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2666"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/value" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2671"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/ancestor" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2676"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/descendant" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2681"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Schema" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2686"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/schema-name" /> - <t:instanceOf> - <t:topicRef href="#t241" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2691"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Descriptor" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2696"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Role-Player" /> - </t:topic> - - <t:topic id="t2701"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Visible-Object" /> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Visible-Object" /> - </t:topic> - - <t:topic id="t2706"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/width" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2711"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/padding-left" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2716"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/height" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2721"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/pointer" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2726"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/border-style" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2731"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/background-color" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2736"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/id" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2741"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/View" /> - </t:topic> - - <t:topic id="t2746"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/view-name" /> - <t:instanceOf> - <t:topicRef href="#t241" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2751"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Topic-View" /> - </t:topic> - - <t:topic id="t2756"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Topic-View" /> - </t:topic> - - <t:topic id="t2761"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Creator-Topic-View" /> - </t:topic> - - <t:topic id="t2766"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Association-View" /> - </t:topic> - - <t:topic id="t2771"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Creator-Association-View" /> - </t:topic> - - <t:topic id="t2776"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Value" /> - </t:topic> - - <t:topic id="t2781"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/TM-Value" /> - </t:topic> - - <t:topic id="t2786"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/display-by" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2791"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/TM-Single-Type-Value" /> - </t:topic> - - <t:topic id="t2796"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Literal-Value" /> - </t:topic> - - <t:topic id="t2801"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/literal-value" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2806"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Value" /> - </t:topic> - - <t:topic id="t2811"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/fixed" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2816"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Literal-Value" /> - </t:topic> - - <t:topic id="t2821"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Text-Object" /> - </t:topic> - - <t:topic id="t2826"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/List-Box" /> - </t:topic> - - <t:topic id="t2831"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Text" /> - </t:topic> - - <t:topic id="t2836"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/readonly" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2841"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/font-size" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2846"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Position" /> - </t:topic> - - <t:topic id="t2851"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/position-style" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2856"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/top" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2861"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/left" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2866"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/right" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2871"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Value-Group" /> - </t:topic> - - <t:topic id="t2876"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Button" /> - </t:topic> - - <t:topic id="t2881"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Action-Button" /> - </t:topic> - - <t:topic id="t2886"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Commit-Button" /> - </t:topic> - - <t:topic id="t2891"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/textgrid-ui-schema" /> - <t:instanceOf> - <t:topicRef href="#t2681" /> - </t:instanceOf> - <t:name> - <t:type> - <t:topicRef href="#t2686" /> - </t:type> - <t:value>GDL Schema for the TextGrid-ServiceRegistry-UI</t:value> - </t:name> - </t:topic> - - <t:topic id="t2896"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-default-creator-topic-vi..." /> - <t:instanceOf> - <t:topicRef href="#t2761" /> - </t:instanceOf> - <t:name> - <t:type> - <t:topicRef href="#t2746" /> - </t:type> - <t:value>GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object</t:value> - </t:name> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_default_creator_top...</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E362px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2716" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E160px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2901"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-view-binding" /> - <t:instanceOf> - <t:topicRef href="#t2791" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2906"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-creator-association-..." /> - <t:instanceOf> - <t:topicRef href="#t2771" /> - </t:instanceOf> - <t:name> - <t:type> - <t:topicRef href="#t2746" /> - </t:type> - <t:value>A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment</t:value> - </t:name> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehas_environment_createor_associ...</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2911"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environement-creator..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2916"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_env_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2921"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-p..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2926"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-v..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2931"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-v..." /> - <t:instanceOf> - <t:topicRef href="#t2816" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2801" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment:</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2936"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-en..." /> - <t:instanceOf> - <t:topicRef href="#t2826" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_list_box_env_i...</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E232px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2941"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-en..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2946"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-en..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2951"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environment-environm..." /> - <t:instanceOf> - <t:topicRef href="#t2696" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2956"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_key_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2961"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-p..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2966"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-v..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2971"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-v..." /> - <t:instanceOf> - <t:topicRef href="#t2816" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2801" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ekey:</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2976"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_key_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Efalse</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2721" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2711" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2981"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key-positio..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2986"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key-value-g..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t2991"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_value_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t2996"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t3001"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t3006"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value..." /> - <t:instanceOf> - <t:topicRef href="#t2816" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2801" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Evalue:</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t3011"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_value_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Efalse</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2721" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2711" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t3016"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value-posit..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t3021"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value-value..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t3026"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button" /> - <t:instanceOf> - <t:topicRef href="#t2881" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_reset_button_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2716" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2841" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t3031"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-pos..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E115px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t3036"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-val..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t3041"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-val..." /> - <t:instanceOf> - <t:topicRef href="#t2816" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2801" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ereset</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t3046"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-commit-button" /> - <t:instanceOf> - <t:topicRef href="#t2886" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_commit_button_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2716" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2841" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t3051"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-commit-button-po..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E115px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2866" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6003"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Editor-Topic-View" /> - </t:topic> - - <t:topic id="t6008"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Editor-Association-View" /> - </t:topic> - - <t:topic id="t6013"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Delete-Button" /> - </t:topic> - - <t:topic id="t6018"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-default-editor-topic-vie..." /> - <t:instanceOf> - <t:topicRef href="#t6003" /> - </t:instanceOf> - <t:name> - <t:type> - <t:topicRef href="#t2746" /> - </t:type> - <t:value>GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object</t:value> - </t:name> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_default_editor_topi...</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E362px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2716" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E160px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6023"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-view-binding" /> - <t:instanceOf> - <t:topicRef href="#t2791" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t6028"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_env_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6033"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-po..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6038"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-va..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t6043"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-va..." /> - <t:instanceOf> - <t:topicRef href="#t2816" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2801" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment:</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6048"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-editor-association-v..." /> - <t:instanceOf> - <t:topicRef href="#t6008" /> - </t:instanceOf> - <t:name> - <t:type> - <t:topicRef href="#t2746" /> - </t:type> - <t:value>A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment</t:value> - </t:name> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehas_environment_editor_associat...</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6053"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environment-editor-a..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6058"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_env_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2711" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6063"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env-position" /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6068"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env-value-gr..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t6073"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_key_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6078"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-po..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6083"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-va..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t6088"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-va..." /> - <t:instanceOf> - <t:topicRef href="#t2816" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2801" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ekey:</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6093"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_key_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2721" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2711" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6098"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key-position" /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6103"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key-value-gr..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t6108"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_value_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6113"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value-..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6118"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value-..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t6123"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value-..." /> - <t:instanceOf> - <t:topicRef href="#t2816" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2801" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Evalue:</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6128"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_value_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2721" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2711" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6133"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value-positi..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6138"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value-value-..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t6143"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-delete-button" /> - <t:instanceOf> - <t:topicRef href="#t6013" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_delete_button_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2716" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2841" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t6148"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-delete-button-pos..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E115px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t7803"> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/cursor" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t7808"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-default-creator-topic-vi..." /> - <t:instanceOf> - <t:topicRef href="#t2761" /> - </t:instanceOf> - <t:name> - <t:type> - <t:topicRef href="#t2746" /> - </t:type> - <t:value>GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment</t:value> - </t:name> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_default_creator_top...</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E322px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2716" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t7813"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-view-binding" /> - <t:instanceOf> - <t:topicRef href="#t2791" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t7818"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_text_label_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E60px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t7823"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-posit..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t7828"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-value..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t7833"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-value" /> - <t:instanceOf> - <t:topicRef href="#t2816" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2801" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ename:</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t7838"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_name_text_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Efalse</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E240px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t7803" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2711" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t7843"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text-positi..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t7848"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text-value-..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t7853"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-commit-button" /> - <t:instanceOf> - <t:topicRef href="#t2886" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_commit_button_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2716" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2841" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t7858"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-commit-button-po..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E65px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2866" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t8604"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-default-editor-topic-vie..." /> - <t:instanceOf> - <t:topicRef href="#t6003" /> - </t:instanceOf> - <t:name> - <t:type> - <t:topicRef href="#t2746" /> - </t:type> - <t:value>GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment</t:value> - </t:name> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_default_editor_topi...</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E322px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2716" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t8609"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-view-binding" /> - <t:instanceOf> - <t:topicRef href="#t2791" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t8614"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_text_label_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E60px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2731" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2726" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t8619"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-positi..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t8624"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-value-..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t8629"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-value" /> - <t:instanceOf> - <t:topicRef href="#t2816" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2801" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ename:</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t8634"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text" /> - <t:instanceOf> - <t:topicRef href="#t2831" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_name_text_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2836" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E240px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t7803" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2711" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t8639"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text-positio..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t8644"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text-value-g..." /> - <t:instanceOf> - <t:topicRef href="#t2871" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t8649"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-delete-button" /> - <t:instanceOf> - <t:topicRef href="#t6013" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2736" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_delete_button_id</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2716" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2706" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2841" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t8654"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-delete-button-pos..." /> - <t:instanceOf> - <t:topicRef href="#t2846" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t2851" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2856" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E65px</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t2861" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9302"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/types/Parameter" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9307"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/types/Parameter-Config" /> - <t:instanceOf> - <t:topicRef href="#t236" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9312"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-parameter" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9317"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-config" /> - <t:instanceOf> - <t:topicRef href="#t256" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9322"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9327"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/configuration" /> - <t:instanceOf> - <t:topicRef href="#t251" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9332"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-name" /> - <t:instanceOf> - <t:topicRef href="#t241" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9337"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/operation" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9342"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-type" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9347"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/description" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9352"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/keywords" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9357"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/description-location-uri" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9362"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/inline-description-location" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9367"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/description-location-body" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9372"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/target-namespace" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9377"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/use-target-ns" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9382"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/owner" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9387"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/identifier" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9392"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/textgrid-url" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9397"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/tg-approved" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9402"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-name" /> - <t:instanceOf> - <t:topicRef href="#t241" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9407"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-id" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9412"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-type" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9417"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/param" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9422"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/mime-type" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9427"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/multiple" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9432"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/crud" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9437"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/needs-b64-encoding" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9442"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/example-config" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9447"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-name" /> - <t:instanceOf> - <t:topicRef href="#t241" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9452"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-id" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9457"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/default" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9462"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/form" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9467"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/data" /> - <t:instanceOf> - <t:topicRef href="#t246" /> - </t:instanceOf> - </t:topic> - - <t:topic id="t9472"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-psi-constraint" /> - <t:instanceOf> - <t:topicRef href="#t286" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t271" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5Ehttp://textgrid.org/servicer...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9477"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-name-constraint" /> - <t:instanceOf> - <t:topicRef href="#t291" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9482"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-operation-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9487"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-operation-datatype-constra..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9492"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-service-type-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9497"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-service-type-datatype-cons..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9502"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9507"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-datatype-const..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9512"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-keywords-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9517"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-keywords-datatype-constrai..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9522"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-location-uri-c..." /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9527"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-location-uri-d..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9532"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-inline-description-locatio..." /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9537"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-inline-description-locatio..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9542"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-location-body-..." /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9547"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-location-body-..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9552"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-target-namespace-constrain..." /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9557"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-target-namespace-datatype-..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9562"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-use-target-ns-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9567"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-use-target-ns-datatype-con..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9572"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-owner-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9577"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-owner-datatype-constraint" /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9582"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-identifier-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9587"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-identifier-datatype-constr..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9592"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-textgrid-url-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9597"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-textgrid-url-datatype-cons..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9602"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-tg-approved-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9607"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-tg-approved-datatype-const..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9612"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-psi-constraint" /> - <t:instanceOf> - <t:topicRef href="#t286" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t271" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5Ehttp://textgrid.org/servicer...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9617"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-name-constraint" /> - <t:instanceOf> - <t:topicRef href="#t291" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9622"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-parameter-id-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9627"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-parameter-id-datatype-co..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9632"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-parameter-type-constrain..." /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9637"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-parameter-type-datatype-..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9642"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-param-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9647"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-param-datatype-constrain..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9652"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-mime-type-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9657"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-mime-type-datatype-const..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9662"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-multiple-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9667"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-multiple-datatype-constr..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9672"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-crud-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9677"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-crud-datatype-constraint" /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9682"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-needs-b64-encoding-const..." /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9687"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-needs-b64-encoding-datat..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9692"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-psi-constraint" /> - <t:instanceOf> - <t:topicRef href="#t286" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t271" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5Ehttp://textgrid.org/servicer...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9697"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-name-constraint" /> - <t:instanceOf> - <t:topicRef href="#t291" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9702"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-parameter-config-..." /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9707"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-parameter-config-..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9712"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-default-constrain..." /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9717"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-default-datatype-..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9722"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-form-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9727"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-form-datatype-con..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9732"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-data-constraint" /> - <t:instanceOf> - <t:topicRef href="#t296" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9737"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-data-datatype-con..." /> - <t:instanceOf> - <t:topicRef href="#t306" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t276" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9742"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-parameter-parameter-role-const..." /> - <t:instanceOf> - <t:topicRef href="#t311" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9747"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-parameter-parameter-associatio..." /> - <t:instanceOf> - <t:topicRef href="#t316" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9752"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-parameter-service-role-constra..." /> - <t:instanceOf> - <t:topicRef href="#t311" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9757"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-parameter-service-association-..." /> - <t:instanceOf> - <t:topicRef href="#t316" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9762"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-config-parameter-role-constrai..." /> - <t:instanceOf> - <t:topicRef href="#t311" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9767"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-config-parameter-association-r..." /> - <t:instanceOf> - <t:topicRef href="#t316" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9772"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-config-configuration-role-cons..." /> - <t:instanceOf> - <t:topicRef href="#t311" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:topic id="t9777"> - <t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-config-configuration-associati..." /> - <t:instanceOf> - <t:topicRef href="#t316" /> - </t:instanceOf> - <t:occurrence> - <t:type> - <t:topicRef href="#t261" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - <t:occurrence> - <t:type> - <t:topicRef href="#t266" /> - </t:type> - <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData> - </t:occurrence> - </t:topic> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9327" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9777" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9317" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9777" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9327" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9772" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9317" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9772" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9307" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9772" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9322" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9767" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9317" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9767" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9322" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9762" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9317" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9762" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9762" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t401" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9757" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9312" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9757" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t401" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9752" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9312" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9752" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9752" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9322" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9747" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9312" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9747" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9322" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9742" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9312" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9742" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9742" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9737" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9467" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9732" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9467" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9732" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9727" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9462" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9722" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9462" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9722" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9717" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9457" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9712" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9457" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9712" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9707" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9452" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9702" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9452" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9702" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9697" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9447" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9697" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9307" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9692" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9307" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9687" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9437" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9682" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9437" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9682" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9677" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9432" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9672" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9432" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9672" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9667" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9427" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9662" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9427" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9662" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9657" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9422" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9652" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9422" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9652" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9647" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9417" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9642" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9417" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9642" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9627" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9407" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9622" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9407" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9622" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9637" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9412" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9632" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9412" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9632" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9617" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9402" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9617" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9612" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9607" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9397" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9602" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9397" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9602" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9597" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9392" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9592" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9392" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9592" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9587" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9387" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9582" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9387" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9582" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9577" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9382" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9572" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9382" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9572" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9567" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9377" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9562" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9377" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9562" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9557" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9372" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9552" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9372" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9552" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9547" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9367" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9542" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9367" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9542" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9537" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9362" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9532" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9362" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9532" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9527" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9357" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9522" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9357" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9522" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9517" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9352" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9512" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9352" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9512" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9507" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9347" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9502" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9347" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9502" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9497" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9342" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9492" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9342" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9492" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9487" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9337" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9482" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9337" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9482" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9477" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t9332" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9477" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t9472" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9777" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t316" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9772" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t311" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9767" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t316" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9762" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t311" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9757" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t316" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9752" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t311" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9747" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t316" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9742" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t311" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9737" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9732" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9727" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9722" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9717" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9712" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9707" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9702" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9697" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t291" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9692" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t286" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9687" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9682" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9677" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9672" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9667" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9662" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9657" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9652" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9647" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9642" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9637" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9632" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9627" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9622" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9617" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t291" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9612" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t286" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9607" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9602" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9597" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9592" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9587" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9582" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9577" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9572" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9567" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9562" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9557" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9552" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9547" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9542" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9537" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9532" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9527" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9522" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9517" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9512" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9507" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9502" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9497" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9492" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9487" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9482" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9477" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t291" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9472" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t286" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9467" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9462" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9457" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9452" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9447" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t241" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9442" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9437" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9432" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9427" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9422" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9417" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9412" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9407" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9402" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t241" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9397" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9392" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9387" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9382" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9377" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9372" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9367" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9362" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9357" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9352" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9347" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9342" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9337" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9332" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t241" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9327" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9322" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9317" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9312" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9307" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t9302" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t8654" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t8634" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t8649" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t8604" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t8649" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t8644" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t421" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t8644" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t8634" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t8639" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t8614" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t8634" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t8604" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t8634" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t8624" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t8614" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2626" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t8624" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2666" /> - </t:type> - <t:topicRef href="#t8629" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t8619" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t8604" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t8614" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t8604" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t8614" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2606" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t8604" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2646" /> - </t:type> - <t:topicRef href="#t8609" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t8609" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t366" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2891" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t8604" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t8654" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t8649" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t6013" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t8644" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t8639" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t8634" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t8629" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2816" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t8624" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t8619" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t8614" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t8609" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2791" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t8604" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t6003" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t7858" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t7838" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t7853" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t7808" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t7853" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t7848" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t421" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t7848" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t7838" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t7843" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t7818" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t7838" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t7808" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t7838" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t7828" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t7818" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2626" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t7828" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2666" /> - </t:type> - <t:topicRef href="#t7833" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t7823" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t7808" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t7818" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t7808" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t7818" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2606" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t7808" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2646" /> - </t:type> - <t:topicRef href="#t7813" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t7813" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t366" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2891" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t7808" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2806" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2776" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2796" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2776" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7858" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7853" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2886" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7848" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7843" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7838" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7833" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2816" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7828" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7823" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7818" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7813" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2791" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7808" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2761" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t7803" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6148" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t6128" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t6143" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t6018" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t6143" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6138" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t466" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6138" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6128" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6133" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t6108" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t6128" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t6018" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t6128" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6118" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6108" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2626" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6118" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2666" /> - </t:type> - <t:topicRef href="#t6123" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6113" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t6093" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t6108" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t6018" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t6108" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6103" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t451" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6103" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6093" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6098" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t6073" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t6093" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t6018" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t6093" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6083" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6073" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2626" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6083" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2666" /> - </t:type> - <t:topicRef href="#t6088" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6078" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t6048" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t6073" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t6018" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t6073" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2786" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6068" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t421" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6068" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t2951" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6068" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6058" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6063" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t6048" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t6058" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t6048" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t6058" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2611" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6048" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t496" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2611" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6048" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t491" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2611" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6048" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t486" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2611" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6048" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t481" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6053" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t6028" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t6048" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t6018" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t6048" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6038" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6028" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2626" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t6038" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2666" /> - </t:type> - <t:topicRef href="#t6043" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6033" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t6018" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t6028" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t6018" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t6028" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2606" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6018" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2646" /> - </t:type> - <t:topicRef href="#t6023" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t6023" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t361" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2891" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t6018" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2881" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t6013" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2766" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t6008" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2756" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t6003" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6148" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6143" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t6013" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6138" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6133" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6128" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6123" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2816" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6118" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6113" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6108" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6103" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6098" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6093" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6088" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2816" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6083" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6078" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6073" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6068" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6063" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6058" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6053" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6048" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t6008" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6043" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2816" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6038" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6033" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6028" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6023" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2791" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t6018" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t6003" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t3051" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t3026" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t3046" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t3046" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t3036" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t3026" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2626" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t3036" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2666" /> - </t:type> - <t:topicRef href="#t3041" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t3031" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t3011" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t3026" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t3026" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t3021" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t466" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t3021" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t3011" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t3016" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t2991" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t3011" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t3011" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t3001" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2991" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2626" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t3001" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2666" /> - </t:type> - <t:topicRef href="#t3006" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2996" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t2976" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t2991" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t2991" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t2986" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t451" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t2986" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2976" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2981" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t2956" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t2976" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t2976" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t2966" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2956" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2626" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t2966" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2666" /> - </t:type> - <t:topicRef href="#t2971" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2961" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t2906" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t2956" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t2956" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2786" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2946" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t421" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2951" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t481" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t2946" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t2951" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t2946" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2936" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2941" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t2906" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t2936" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2906" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t2936" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2611" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t496" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2611" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t491" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2611" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t486" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2611" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t481" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2911" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t2916" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t2906" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t2906" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2621" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t2926" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2916" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2626" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2661" /> - </t:type> - <t:topicRef href="#t2926" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2666" /> - </t:type> - <t:topicRef href="#t2931" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2631" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2921" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2671" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2676" /> - </t:type> - <t:topicRef href="#t2916" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t2916" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2606" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2646" /> - </t:type> - <t:topicRef href="#t2901" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2616" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2656" /> - </t:type> - <t:topicRef href="#t2901" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2651" /> - </t:type> - <t:topicRef href="#t361" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t2601" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t2636" /> - </t:type> - <t:topicRef href="#t2891" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t2641" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2881" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2886" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2876" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2881" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2821" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2876" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2691" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2691" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2821" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2821" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2826" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2701" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2821" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2816" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2806" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2816" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2796" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2791" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2781" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2781" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2776" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2776" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2691" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2766" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2771" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2741" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2766" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2756" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2761" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2751" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2756" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2741" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2751" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2701" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2741" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2691" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2701" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t2691" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t2696" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t3051" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t3046" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2886" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t3041" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2816" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t3036" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t3031" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t3026" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2881" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t3021" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t3016" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t3011" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t3006" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2816" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t3001" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2996" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2991" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2986" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2981" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2976" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2971" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2816" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2966" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2961" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2956" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2951" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2696" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2946" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2941" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2936" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2826" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2931" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2816" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2926" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2871" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2921" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2916" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2831" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2911" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2846" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2906" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2771" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2901" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2791" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2896" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2761" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2891" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t2681" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2866" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2861" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2856" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2851" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2841" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2836" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2811" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2801" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2786" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2746" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t241" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2736" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2731" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2726" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2721" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2716" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2711" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2706" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2691" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2686" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t241" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2681" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2676" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2671" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2666" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2661" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2656" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2651" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2646" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2641" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2636" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2631" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2626" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2621" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2616" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2611" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2606" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t2601" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t401" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t516" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t401" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t391" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t516" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t401" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t511" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t401" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t391" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t511" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t511" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t406" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t506" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t391" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t506" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t406" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t501" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t391" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t501" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t391" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t361" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t501" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t406" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t496" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t396" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t496" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t406" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t491" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t396" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t491" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t361" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t491" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t411" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t486" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t396" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t486" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t336" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t411" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t481" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t396" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t481" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t366" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t481" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t381" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t476" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t381" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t471" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t381" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t466" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t361" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t466" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t376" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t461" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t376" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t456" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t376" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t451" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t361" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t451" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t371" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t446" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t371" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t441" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t371" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t436" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t361" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t436" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t386" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t426" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t326" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t386" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t421" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t366" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t421" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t366" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t416" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t331" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t321" /> - </t:type> - <t:topicRef href="#t361" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t281" /> - </t:type> - <t:topicRef href="#t431" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t281" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t316" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t281" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t311" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t281" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t301" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t281" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t281" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t286" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t351" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t341" /> - </t:type> - <t:topicRef href="#t281" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t346" /> - </t:type> - <t:topicRef href="#t291" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t516" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t316" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t511" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t311" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t506" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t316" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t501" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t311" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t496" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t316" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t491" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t311" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t486" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t316" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t481" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t311" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t476" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t471" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t301" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t466" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t461" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t456" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t301" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t451" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t446" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t441" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t301" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t436" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t431" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t286" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t426" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t301" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t421" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t291" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t416" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t286" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t411" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t406" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t401" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t396" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t391" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t386" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t241" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t381" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t376" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t371" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t366" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t361" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t356" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t351" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t346" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t341" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t336" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t331" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t326" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t321" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t316" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t311" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t306" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t301" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t296" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t291" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t291" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t286" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t281" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t281" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t276" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t271" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t266" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t261" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t256" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t251" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t246" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t241" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> - </t:association> - -</t:topicMap> +<?xml version="1.0" encoding="UTF-8"?> +<t:topicMap xmlns:t="http://www.topicmaps.org/xtm/" version="2.0"><t:itemIdentity href="http://textgrid.org/serviceregistry/services-tm%22/%3E<t:topic id="t236"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/topic-type%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t241"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/name-type%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t246"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/occurrence-type%22/%3E<t:instanceOf><t:topicRef href="#t236"/><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t251"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/role-type%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t256"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/association-type%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t261"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/card-min%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t266"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/card-max%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t271"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/regexp%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t276"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/datatype%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t281"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/constraint%22/%3E<t:instanceOf><t:topicRef href="#t236"/><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t286"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/subject-identifier-constraint%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t291"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/topic-name-constraint%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t296"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/topic-occurrence-constraint%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t301"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/regular-expression-constraint%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t306"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/occurrence-datatype-constraint%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t311"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/topic-role-constraint%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t316"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/association-role-constraint%22/%3E<t:instanceOf><t:topicRef href="#t316"/></t:instanceOf></t:topic> +<t:topic id="t321"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/constrained%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t326"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/constrained-statement%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t331"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/constrained-topic-type%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t336"><t:subjectIdentifier href="http://psi.topicmaps.org/tmcl/constrained-role%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t341"><t:subjectIdentifier href="http://psi.topicmaps.org/iso13250/model/supertype%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t346"><t:subjectIdentifier href="http://psi.topicmaps.org/iso13250/model/subtype%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t351"><t:subjectIdentifier href="http://psi.topicmaps.org/iso13250/model/supertype-subtype%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t356"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/types/Service%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t361"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/types/Hash-Object%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t366"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/types/Environment%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t371"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-type%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t376"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/key%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t381"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/value%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t386"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/environment-name%22/%3E<t:instanceOf><t:topicRef href="#t241"/></t:instanceOf></t:topic> +<t:topic id="t391"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-hash%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t396"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-environment%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t401"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t406"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t411"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/environment%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t416"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/environment-psi-constraint%22/%3E<t:instanceOf><t:topicRef href="#t286"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t271"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5Ehttp://textgrid.org/servicer...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t421"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/environment-name-constraint%22/%3E<t:instanceOf><t:topicRef href="#t291"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t426"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/environment-name-regular-expressio...<t:instanceOf><t:topicRef href="#t301"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t271"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5E.+$</t:resourceData></t:occurrence></t:topic> +<t:topic id="t431"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-psi-constraint%22/%3E<t:instanceOf><t:topicRef href="#t286"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t271"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5Ehttp://textgrid.org/servicer...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t436"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-hash-type-constraint%22/%3E<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t441"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-hash-type-regular-expression-...<t:instanceOf><t:topicRef href="#t301"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t271"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5E.+$</t:resourceData></t:occurrence></t:topic> +<t:topic id="t446"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-hash-type-datatype-constraint...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t451"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-key-constraint%22/%3E<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t456"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-key-regular-expression-constr...<t:instanceOf><t:topicRef href="#t301"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t271"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5E.+$</t:resourceData></t:occurrence></t:topic> +<t:topic id="t461"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-key-datatype-constraint%22/%3...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t466"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-value-constraint%22/%3E<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t471"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-value-regular-expression-cons...<t:instanceOf><t:topicRef href="#t301"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t271"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5E.+$</t:resourceData></t:occurrence></t:topic> +<t:topic id="t476"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/hash-value-datatype-constraint%22/...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t481"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-environment-environment-role-c...<t:instanceOf><t:topicRef href="#t311"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t486"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-environment-environment-associ...<t:instanceOf><t:topicRef href="#t316"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t491"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-environment-hash-role-constrai...<t:instanceOf><t:topicRef href="#t311"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t496"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-environment-hash-association-r...<t:instanceOf><t:topicRef href="#t316"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t501"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-hash-hash-role-constraint%22/%...<t:instanceOf><t:topicRef href="#t311"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t506"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-hash-hash-association-role-con...<t:instanceOf><t:topicRef href="#t316"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t511"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-hash-service-role-constraint%2...<t:instanceOf><t:topicRef href="#t311"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t516"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-hash-service-association-role-...<t:instanceOf><t:topicRef href="#t316"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2601"><t:subjectIdentifier href="http://psi.isidor.us/gdl/contains%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t2606"><t:subjectIdentifier href="http://psi.isidor.us/gdl/topic-view-binding%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t2611"><t:subjectIdentifier href="http://psi.isidor.us/gdl/association-view-binding%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t2616"><t:subjectIdentifier href="http://psi.isidor.us/gdl/tm-binding%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t2621"><t:subjectIdentifier href="http://psi.isidor.us/gdl/view-binding%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t2626"><t:subjectIdentifier href="http://psi.isidor.us/gdl/value-binding%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t2631"><t:subjectIdentifier href="http://psi.isidor.us/gdl/position%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t2636"><t:subjectIdentifier href="http://psi.isidor.us/gdl/container%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t2641"><t:subjectIdentifier href="http://psi.isidor.us/gdl/containee%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t2646"><t:subjectIdentifier href="http://psi.isidor.us/gdl/tm-value%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t2651"><t:subjectIdentifier href="http://psi.isidor.us/gdl/tm-construct%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t2656"><t:subjectIdentifier href="http://psi.isidor.us/gdl/descriptor%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t2661"><t:subjectIdentifier href="http://psi.isidor.us/gdl/value-group%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t2666"><t:subjectIdentifier href="http://psi.isidor.us/gdl/value%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t2671"><t:subjectIdentifier href="http://psi.isidor.us/gdl/ancestor%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t2676"><t:subjectIdentifier href="http://psi.isidor.us/gdl/descendant%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t2681"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Schema%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t2686"><t:subjectIdentifier href="http://psi.isidor.us/gdl/schema-name%22/%3E<t:instanceOf><t:topicRef href="#t241"/></t:instanceOf></t:topic> +<t:topic id="t2691"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Descriptor%22/%3E<t:instanceOf><t:topicRef href="#t2691"/><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t2696"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Role-Player%22/%3E</t:topic> +<t:topic id="t2701"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Visible-Object%22/%3E</t:topic> +<t:topic id="t2706"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Hidden-Value%22/%3E</t:topic> +<t:topic id="t2711"><t:subjectIdentifier href="http://psi.isidor.us/gdl/hidden-value%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2716"><t:subjectIdentifier href="http://psi.isidor.us/gdl/width%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2721"><t:subjectIdentifier href="http://psi.isidor.us/gdl/padding-left%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2726"><t:subjectIdentifier href="http://psi.isidor.us/gdl/height%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2731"><t:subjectIdentifier href="http://psi.isidor.us/gdl/pointer%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2736"><t:subjectIdentifier href="http://psi.isidor.us/gdl/border-style%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2741"><t:subjectIdentifier href="http://psi.isidor.us/gdl/background-color%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2746"><t:subjectIdentifier href="http://psi.isidor.us/gdl/id%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2751"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/View%22/%3E</t:topic> +<t:topic id="t2756"><t:subjectIdentifier href="http://psi.isidor.us/gdl/view-name%22/%3E<t:subjectIdentifier href="http://psi.isidor.us/gdl/view-name%22/%3E<t:instanceOf><t:topicRef href="#t241"/></t:instanceOf></t:topic> +<t:topic id="t2761"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Topic-View%22/%3E</t:topic> +<t:topic id="t2766"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Topic-View%22/%3E</t:topic> +<t:topic id="t2771"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Creator-Topic-View%22/%3E</t:topic> +<t:topic id="t2776"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Association-View%22/%3E</t:topic> +<t:topic id="t2781"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Creator-Association-View%22/%3E</t:topic> +<t:topic id="t2786"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Value%22/%3E</t:topic> +<t:topic id="t2791"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/TM-Value%22/%3E</t:topic> +<t:topic id="t2796"><t:subjectIdentifier href="http://psi.isidor.us/gdl/display-by%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2801"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/TM-Single-Type-Value%22/%3E</t:topic> +<t:topic id="t2806"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Literal-Value%22/%3E</t:topic> +<t:topic id="t2811"><t:subjectIdentifier href="http://psi.isidor.us/gdl/literal-value%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2816"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Value%22/%3E</t:topic> +<t:topic id="t2821"><t:subjectIdentifier href="http://psi.isidor.us/gdl/fixed%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2826"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Literal-Value%22/%3E</t:topic> +<t:topic id="t2831"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Text-Object%22/%3E</t:topic> +<t:topic id="t2836"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/List-Box%22/%3E</t:topic> +<t:topic id="t2841"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Text%22/%3E</t:topic> +<t:topic id="t2846"><t:subjectIdentifier href="http://psi.isidor.us/gdl/readonly%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2851"><t:subjectIdentifier href="http://psi.isidor.us/gdl/font-size%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2856"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Position%22/%3E</t:topic> +<t:topic id="t2861"><t:subjectIdentifier href="http://psi.isidor.us/gdl/position-style%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2866"><t:subjectIdentifier href="http://psi.isidor.us/gdl/top%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2871"><t:subjectIdentifier href="http://psi.isidor.us/gdl/left%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2876"><t:subjectIdentifier href="http://psi.isidor.us/gdl/right%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t2881"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Value-Group%22/%3E</t:topic> +<t:topic id="t2886"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Button%22/%3E</t:topic> +<t:topic id="t2891"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Action-Button%22/%3E</t:topic> +<t:topic id="t2896"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Commit-Button%22/%3E</t:topic> +<t:topic id="t2901"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/textgrid-ui-schema%22/%3E<t:instanceOf><t:topicRef href="#t2681"/></t:instanceOf><t:name><t:type><t:topicRef href="#t2686"/></t:type><t:value>GDL Schema for the TextGrid-ServiceRegistry-UI</t:value></t:name></t:topic> +<t:topic id="t2906"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-default-creator-topic-vi...<t:instanceOf><t:topicRef href="#t2771"/></t:instanceOf><t:name><t:type><t:topicRef href="#t2756"/></t:type><t:value>GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object</t:value></t:name><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_default_creator_top...</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E362px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2726"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E160px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2911"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-view-binding%22/...<t:instanceOf><t:topicRef href="#t2801"/></t:instanceOf></t:topic> +<t:topic id="t2916"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-creator-association-...<t:instanceOf><t:topicRef href="#t2781"/></t:instanceOf><t:name><t:type><t:topicRef href="#t2756"/></t:type><t:value>A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment</t:value></t:name><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehas_environment_createor_associ...</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2921"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environement-creator...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2926"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-hash-role-hidden-val...<t:instanceOf><t:topicRef href="#t2706"/></t:instanceOf></t:topic> +<t:topic id="t2931"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env%2...<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_env_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2936"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-p...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2941"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-v...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t2946"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-v...<t:instanceOf><t:topicRef href="#t2826"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2811"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment:</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2951"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-en...<t:instanceOf><t:topicRef href="#t2836"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_list_box_env_i...</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E232px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2956"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-en...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2961"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-en...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t2966"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environment-environm...<t:instanceOf><t:topicRef href="#t2696"/></t:instanceOf></t:topic> +<t:topic id="t2971"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key%2...<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_key_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2976"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-p...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2981"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-v...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t2986"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-v...<t:instanceOf><t:topicRef href="#t2826"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2811"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ekey:</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2991"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key%22/%3E<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_key_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Efalse</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2731"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2721"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t2996"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key-positio...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t3001"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key-value-g...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t3006"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value...<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_value_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence></t:topic> +<t:topic id="t3011"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t3016"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t3021"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value...<t:instanceOf><t:topicRef href="#t2826"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2811"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Evalue:</t:resourceData></t:occurrence></t:topic> +<t:topic id="t3026"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value%22/%3...<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_value_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Efalse</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2731"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2721"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t3031"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value-posit...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t3036"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value-value...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t3041"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button%22/...<t:instanceOf><t:topicRef href="#t2891"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_reset_button_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2726"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2851"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t3046"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-pos...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E115px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t3051"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-val...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t3056"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-val...<t:instanceOf><t:topicRef href="#t2826"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2811"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ereset</t:resourceData></t:occurrence></t:topic> +<t:topic id="t3061"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-commit-button%22...<t:instanceOf><t:topicRef href="#t2896"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_commit_button_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2726"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2851"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t3066"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-commit-button-po...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E115px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2876"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6101"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Editor-Topic-View%22/%3E</t:topic> +<t:topic id="t6106"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Editor-Association-View%22/%3E</t:topic> +<t:topic id="t6111"><t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Delete-Button%22/%3E</t:topic> +<t:topic id="t6116"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-default-editor-topic-vie...<t:instanceOf><t:topicRef href="#t6101"/></t:instanceOf><t:name><t:type><t:topicRef href="#t2756"/></t:type><t:value>GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object</t:value></t:name><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_default_editor_topi...</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E362px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2726"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E160px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6121"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-view-binding%22/%...<t:instanceOf><t:topicRef href="#t2801"/></t:instanceOf></t:topic> +<t:topic id="t6126"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env%22...<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_env_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6131"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-po...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6136"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-va...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t6141"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-va...<t:instanceOf><t:topicRef href="#t2826"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2811"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment:</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6146"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-editor-association-v...<t:instanceOf><t:topicRef href="#t6106"/></t:instanceOf><t:name><t:type><t:topicRef href="#t2756"/></t:type><t:value>A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment</t:value></t:name><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehas_environment_editor_associat...</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6151"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environment-editor-a...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6156"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env%22/%3E<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_env_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2721"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6161"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env-position...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6166"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env-value-gr...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t6171"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key%22...<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_key_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6176"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-po...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6181"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-va...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t6186"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-va...<t:instanceOf><t:topicRef href="#t2826"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2811"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ekey:</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6191"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key%22/%3E<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_key_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2731"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2721"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6196"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key-position...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6201"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key-value-gr...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t6206"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value%...<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_value_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6211"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value-...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6216"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value-...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t6221"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value-...<t:instanceOf><t:topicRef href="#t2826"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2811"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Evalue:</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6226"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value%22/%3E<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_value_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2731"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2721"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6231"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value-positi...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6236"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value-value-...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t6241"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-delete-button%22/...<t:instanceOf><t:topicRef href="#t6111"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_delete_button_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2726"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2851"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t6246"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-delete-button-pos...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E115px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t7901"><t:subjectIdentifier href="http://psi.isidor.us/gdl/cursor%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t7908"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-default-creator-topic-vi...<t:instanceOf><t:topicRef href="#t2771"/></t:instanceOf><t:name><t:type><t:topicRef href="#t2756"/></t:type><t:value>GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment</t:value></t:name><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_default_creator_top...</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E322px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2726"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence></t:topic> +<t:topic id="t7913"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-view-binding%22/...<t:instanceOf><t:topicRef href="#t2801"/></t:instanceOf></t:topic> +<t:topic id="t7918"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label%22/%3...<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_text_label_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E60px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence></t:topic> +<t:topic id="t7923"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-posit...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t7928"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-value...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t7933"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-value...<t:instanceOf><t:topicRef href="#t2826"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2811"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ename:</t:resourceData></t:occurrence></t:topic> +<t:topic id="t7938"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text%22/%3E<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_name_text_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Efalse</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E240px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t7901"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2721"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t7943"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text-positi...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t7948"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text-value-...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t7953"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-commit-button%22...<t:instanceOf><t:topicRef href="#t2896"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_commit_button_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2726"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2851"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t7958"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-commit-button-po...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E65px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2876"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t8704"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-default-editor-topic-vie...<t:instanceOf><t:topicRef href="#t6101"/></t:instanceOf><t:name><t:type><t:topicRef href="#t2756"/></t:type><t:value>GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment</t:value></t:name><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_default_editor_topi...</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E322px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2726"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence></t:topic> +<t:topic id="t8709"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-view-binding%22/%...<t:instanceOf><t:topicRef href="#t2801"/></t:instanceOf></t:topic> +<t:topic id="t8714"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label%22/%3E<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_text_label_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E60px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2741"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2736"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData></t:occurrence></t:topic> +<t:topic id="t8719"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-positi...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t8724"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-value-...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t8729"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-value%...<t:instanceOf><t:topicRef href="#t2826"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2811"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ename:</t:resourceData></t:occurrence></t:topic> +<t:topic id="t8734"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text%22/%3E<t:instanceOf><t:topicRef href="#t2841"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_name_text_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2846"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E240px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t7901"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2721"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t8739"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text-positio...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t8744"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text-value-g...<t:instanceOf><t:topicRef href="#t2881"/></t:instanceOf></t:topic> +<t:topic id="t8749"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-delete-button%22/...<t:instanceOf><t:topicRef href="#t6111"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2746"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_delete_button_id</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2726"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2716"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2851"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t8754"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-delete-button-pos...<t:instanceOf><t:topicRef href="#t2856"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t2861"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2866"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E65px</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t2871"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9402"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/types/Parameter%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t9407"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/types/Parameter-Config%22/%3E<t:instanceOf><t:topicRef href="#t236"/></t:instanceOf></t:topic> +<t:topic id="t9412"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-parameter%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t9417"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-config%22/%3E<t:instanceOf><t:topicRef href="#t256"/></t:instanceOf></t:topic> +<t:topic id="t9422"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t9427"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/configuration%22/%3E<t:instanceOf><t:topicRef href="#t251"/></t:instanceOf></t:topic> +<t:topic id="t9432"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-name%22/%3E<t:instanceOf><t:topicRef href="#t241"/></t:instanceOf></t:topic> +<t:topic id="t9437"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/operation%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9442"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-type%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9447"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/description%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9452"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/keywords%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9457"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/description-location-uri%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9462"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/inline-description-location%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9467"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/description-location-body%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9472"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/target-namespace%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9477"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/use-target-ns%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9482"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/owner%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9487"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/identifier%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9492"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/textgrid-url%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9497"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/tg-approved%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9502"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-name%22/%3E<t:instanceOf><t:topicRef href="#t241"/></t:instanceOf></t:topic> +<t:topic id="t9507"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-id%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9512"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-type%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9517"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/param%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9522"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/mime-type%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9527"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/multiple%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9532"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/crud%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9537"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/needs-b64-encoding%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9542"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/example-config%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9547"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-name%22/%3E<t:instanceOf><t:topicRef href="#t241"/></t:instanceOf></t:topic> +<t:topic id="t9552"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-id%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9557"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/default%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9562"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/form%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9567"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/data%22/%3E<t:instanceOf><t:topicRef href="#t246"/></t:instanceOf></t:topic> +<t:topic id="t9572"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-psi-constraint%22/%3E<t:instanceOf><t:topicRef href="#t286"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t271"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5Ehttp://textgrid.org/servicer...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9577"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-name-constraint%22/%3E<t:instanceOf><t:topicRef href="#t291"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9582"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-operation-constraint%22/%3...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9587"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-operation-datatype-constra...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9592"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-service-type-constraint%22...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9597"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-service-type-datatype-cons...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9602"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-constraint%22/...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9607"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-datatype-const...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9612"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-keywords-constraint%22/%3E<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9617"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-keywords-datatype-constrai...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9622"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-location-uri-c...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9627"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-location-uri-d...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9632"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-inline-description-locatio...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9637"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-inline-description-locatio...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9642"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-location-body-...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9647"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-description-location-body-...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9652"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-target-namespace-constrain...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9657"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-target-namespace-datatype-...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9662"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-use-target-ns-constraint%2...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9667"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-use-target-ns-datatype-con...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9672"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-owner-constraint%22/%3E<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9677"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-owner-datatype-constraint%...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9682"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-identifier-constraint%22/%...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9687"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-identifier-datatype-constr...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9692"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-textgrid-url-constraint%22...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9697"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-textgrid-url-datatype-cons...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9702"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-tg-approved-constraint%22/...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9707"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/service-tg-approved-datatype-const...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9712"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-psi-constraint%22/%3E<t:instanceOf><t:topicRef href="#t286"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t271"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5Ehttp://textgrid.org/servicer...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9717"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-name-constraint%22/%3E<t:instanceOf><t:topicRef href="#t291"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9722"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-parameter-id-constraint%...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9727"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-parameter-id-datatype-co...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9732"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-parameter-type-constrain...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9737"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-parameter-type-datatype-...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9742"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-param-constraint%22/%3E<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9747"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-param-datatype-constrain...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9752"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-mime-type-constraint%22/...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9757"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-mime-type-datatype-const...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9762"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-multiple-constraint%22/%...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9767"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-multiple-datatype-constr...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9772"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-crud-constraint%22/%3E<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9777"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-crud-datatype-constraint...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9782"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-needs-b64-encoding-const...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9787"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-needs-b64-encoding-datat...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9792"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-psi-constraint%22...<t:instanceOf><t:topicRef href="#t286"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t271"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E%5Ehttp://textgrid.org/servicer...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9797"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-name-constraint%2...<t:instanceOf><t:topicRef href="#t291"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9802"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-parameter-config-...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9807"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-parameter-config-...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9812"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-default-constrain...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9817"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-default-datatype-...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9822"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-form-constraint%2...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9827"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-form-datatype-con...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9832"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-data-constraint%2...<t:instanceOf><t:topicRef href="#t296"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9837"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/parameter-config-data-datatype-con...<t:instanceOf><t:topicRef href="#t306"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t276"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehttp://www.w3.org/2001/XMLSchem...</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9843"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-parameter-parameter-role-const...<t:instanceOf><t:topicRef href="#t311"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9848"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-parameter-parameter-associatio...<t:instanceOf><t:topicRef href="#t316"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9853"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-parameter-service-role-constra...<t:instanceOf><t:topicRef href="#t311"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9858"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-parameter-service-association-...<t:instanceOf><t:topicRef href="#t316"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9863"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-config-parameter-role-constrai...<t:instanceOf><t:topicRef href="#t311"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9868"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-config-parameter-association-r...<t:instanceOf><t:topicRef href="#t316"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9873"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-config-configuration-role-cons...<t:instanceOf><t:topicRef href="#t311"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:topic id="t9878"><t:subjectIdentifier href="http://textgrid.org/serviceregistry/model/has-config-configuration-associati...<t:instanceOf><t:topicRef href="#t316"/></t:instanceOf><t:occurrence><t:type><t:topicRef href="#t261"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence><t:occurrence><t:type><t:topicRef href="#t266"/></t:type><t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E1</t:resourceData></t:occurrence></t:topic> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9427"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9878"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9417"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9878"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9427"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9873"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9417"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9873"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9407"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9873"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9422"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9868"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9417"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9868"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9422"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9863"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9417"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9863"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9863"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t401"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9858"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9412"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9858"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t401"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9853"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9412"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9853"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9853"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9422"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9848"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9412"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9848"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9422"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9843"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9412"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9843"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9843"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9837"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9567"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9832"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9567"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9832"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9827"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9562"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9822"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9562"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9822"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9817"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9557"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9812"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9557"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9812"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9807"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9552"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9802"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9552"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9802"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9797"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9547"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9797"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9407"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9792"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9407"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9787"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9537"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9782"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9537"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9782"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9777"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9532"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9772"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9532"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9772"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9767"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9527"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9762"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9527"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9762"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9757"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9522"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9752"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9522"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9752"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9747"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9517"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9742"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9517"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9742"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9727"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9507"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9722"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9507"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9722"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9737"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9512"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9732"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9512"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9732"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9717"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9502"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9717"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9712"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9402"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9707"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9497"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9702"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9497"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9702"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9697"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9492"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9692"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9492"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9692"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9687"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9487"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9682"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9487"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9682"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9677"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9482"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9672"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9482"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9672"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9667"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9477"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9662"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9477"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9662"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9657"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9472"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9652"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9472"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9652"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9647"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9467"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9642"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9467"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9642"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9637"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9462"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9632"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9462"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9632"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9627"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9457"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9622"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9457"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9622"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9617"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9452"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9612"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9452"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9612"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9607"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9447"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9602"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9447"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9602"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9597"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9442"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9592"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9442"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9592"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9587"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9437"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9582"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9437"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9582"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9577"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t9432"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9577"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t9572"/></t:role><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9878"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t316"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9873"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t311"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9868"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t316"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9863"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t311"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9858"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t316"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9853"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t311"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9848"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t316"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9843"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t311"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9837"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9832"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9827"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9822"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9817"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9812"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9807"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9802"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9797"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t291"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9792"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t286"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9787"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9782"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9777"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9772"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9767"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9762"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9757"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9752"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9747"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9742"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9737"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9732"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9727"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9722"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9717"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t291"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9712"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t286"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9707"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9702"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9697"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9692"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9687"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9682"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9677"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9672"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9667"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9662"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9657"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9652"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9647"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9642"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9637"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9632"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9627"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9622"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9617"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9612"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9607"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9602"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9597"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9592"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9587"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9582"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9577"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t291"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9572"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t286"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9567"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9562"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9557"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9552"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9547"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t241"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9542"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9537"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9532"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9527"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9522"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9517"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9512"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9507"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9502"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t241"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9497"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9492"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9487"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9482"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9477"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9472"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9467"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9462"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9457"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9452"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9447"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9442"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9437"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9432"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t241"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9427"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9422"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9417"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9412"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9407"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t9402"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t8754"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t8734"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t8749"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t8704"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t8749"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t8744"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t421"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t8744"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t8734"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t8739"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t8714"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t8734"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t8704"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t8734"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t8724"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t8714"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2626"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t8724"/></t:role><t:role><t:type><t:topicRef href="#t2666"/></t:type><t:topicRef href="#t8729"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t8719"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t8704"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t8714"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t8704"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t8714"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2606"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t8704"/></t:role><t:role><t:type><t:topicRef href="#t2646"/></t:type><t:topicRef href="#t8709"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t8709"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t366"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2901"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t8704"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t8754"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t8749"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t6111"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t8744"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t8739"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t8734"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t8729"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2826"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t8724"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t8719"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t8714"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t8709"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2801"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t8704"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t6101"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2691"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t7958"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t7938"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t7953"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t7908"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t7953"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t7948"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t421"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t7948"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t7938"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t7943"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t7918"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t7938"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t7908"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t7938"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t7928"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t7918"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2626"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t7928"/></t:role><t:role><t:type><t:topicRef href="#t2666"/></t:type><t:topicRef href="#t7933"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t7923"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t7908"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t7918"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t7908"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t7918"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2606"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t7908"/></t:role><t:role><t:type><t:topicRef href="#t2646"/></t:type><t:topicRef href="#t7913"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t7913"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t366"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2901"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t7908"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2816"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2786"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2806"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2786"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7958"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7953"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2896"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7948"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7943"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7938"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7933"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2826"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7928"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7923"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7918"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7913"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2801"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7908"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2771"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t7901"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6246"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t6226"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t6241"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t6116"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t6241"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6236"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t466"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6236"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6226"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6231"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t6206"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t6226"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t6116"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t6226"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6216"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6206"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2626"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6216"/></t:role><t:role><t:type><t:topicRef href="#t2666"/></t:type><t:topicRef href="#t6221"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6211"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t6191"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t6206"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t6116"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t6206"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6201"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t451"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6201"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6191"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6196"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t6171"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t6191"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t6116"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t6191"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6181"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6171"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2626"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6181"/></t:role><t:role><t:type><t:topicRef href="#t2666"/></t:type><t:topicRef href="#t6186"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6176"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t6146"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t6171"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t6116"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t6171"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2796"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6166"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t421"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6166"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t2966"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6166"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6156"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6161"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t6146"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t6156"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t6146"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t6156"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2611"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6146"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t496"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2611"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6146"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t491"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2611"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6146"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t486"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2611"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6146"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t481"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6151"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t6126"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t6146"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t6116"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t6146"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6136"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6126"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2626"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t6136"/></t:role><t:role><t:type><t:topicRef href="#t2666"/></t:type><t:topicRef href="#t6141"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6131"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t6116"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t6126"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t6116"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t6126"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2606"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6116"/></t:role><t:role><t:type><t:topicRef href="#t2646"/></t:type><t:topicRef href="#t6121"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t6121"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t361"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2901"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t6116"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2891"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t6111"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2776"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t6106"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2766"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t6101"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6246"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6241"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t6111"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6236"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6231"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6226"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6221"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2826"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6216"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6211"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6206"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6201"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6196"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6191"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6186"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2826"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6181"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6176"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6171"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6166"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6161"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6156"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6151"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6146"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t6106"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6141"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2826"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6136"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6131"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6126"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6121"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2801"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t6116"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t6101"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t3066"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t3041"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t3061"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t3061"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t3051"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t3041"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2626"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t3051"/></t:role><t:role><t:type><t:topicRef href="#t2666"/></t:type><t:topicRef href="#t3056"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t3046"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t3026"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t3041"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t3041"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t3036"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t466"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t3036"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t3026"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t3031"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t3006"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t3026"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t3026"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t3016"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t3006"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2626"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t3016"/></t:role><t:role><t:type><t:topicRef href="#t2666"/></t:type><t:topicRef href="#t3021"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t3011"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t2991"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t3006"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t3006"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t3001"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t451"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t3001"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2991"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2996"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t2971"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t2991"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t2991"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t2981"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2971"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2626"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t2981"/></t:role><t:role><t:type><t:topicRef href="#t2666"/></t:type><t:topicRef href="#t2986"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2976"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t2916"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t2971"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t2971"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2796"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2961"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t421"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2966"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t481"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t2961"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t2966"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t2961"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2951"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2956"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t2916"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t2951"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2916"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t2951"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2916"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t2926"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2711"/></t:type><t:topicRef href="#t2926"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t491"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2611"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t496"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2611"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t491"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2611"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t486"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2611"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t481"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2921"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t2931"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t2916"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t2916"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2621"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t2941"/></t:role><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2931"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2626"/></t:type><t:role><t:type><t:topicRef href="#t2661"/></t:type><t:topicRef href="#t2941"/></t:role><t:role><t:type><t:topicRef href="#t2666"/></t:type><t:topicRef href="#t2946"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2631"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2936"/></t:role><t:role><t:type><t:topicRef href="#t2671"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2676"/></t:type><t:topicRef href="#t2931"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t2931"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2606"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t2646"/></t:type><t:topicRef href="#t2911"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2616"/></t:type><t:role><t:type><t:topicRef href="#t2656"/></t:type><t:topicRef href="#t2911"/></t:role><t:role><t:type><t:topicRef href="#t2651"/></t:type><t:topicRef href="#t361"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t2601"/></t:type><t:role><t:type><t:topicRef href="#t2636"/></t:type><t:topicRef href="#t2901"/></t:role><t:role><t:type><t:topicRef href="#t2641"/></t:type><t:topicRef href="#t2906"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2891"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2896"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2886"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2891"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2831"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2886"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2691"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2691"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2831"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2831"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2836"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2701"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2831"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2826"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2816"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2826"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2806"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2801"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2791"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2791"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2786"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2691"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2706"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2786"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2691"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2776"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2781"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2751"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2776"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2766"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2771"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2761"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2766"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2751"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2761"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2701"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2751"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2691"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2701"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t2691"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t2696"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3066"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3061"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2896"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3056"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2826"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3051"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3046"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3041"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2891"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3036"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3031"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3026"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3021"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2826"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3016"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3011"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3006"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t3001"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2996"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2991"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2986"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2826"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2981"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2976"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2971"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2966"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2696"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2961"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2956"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2951"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2836"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2946"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2826"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2941"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2881"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2936"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2931"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2841"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2926"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2706"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2921"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2856"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2916"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2781"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2911"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2801"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2906"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2771"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2901"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t2681"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2876"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2871"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2866"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2861"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2851"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2846"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2821"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2811"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2796"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2756"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t241"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2746"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2741"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2736"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2731"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2726"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2721"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2716"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2711"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2691"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2691"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2686"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t241"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2681"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2676"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2671"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2666"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2661"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2656"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2651"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2646"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2641"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2636"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2631"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2626"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2621"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2616"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2611"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2606"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t2601"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t401"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t516"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t391"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t516"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t401"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t511"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t391"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t511"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t356"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t511"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t406"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t506"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t391"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t506"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t406"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t501"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t391"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t501"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t361"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t501"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t406"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t496"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t396"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t496"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t406"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t491"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t396"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t491"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t361"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t491"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t411"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t486"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t396"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t486"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t336"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t411"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t481"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t396"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t481"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t366"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t481"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t381"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t476"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t381"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t471"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t381"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t466"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t361"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t466"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t376"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t461"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t376"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t456"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t376"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t451"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t361"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t451"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t371"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t446"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t371"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t441"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t371"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t436"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t361"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t436"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t386"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t426"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t326"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t386"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t421"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t366"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t421"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t366"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t416"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t331"/></t:type><t:role><t:type><t:topicRef href="#t321"/></t:type><t:topicRef href="#t361"/></t:role><t:role><t:type><t:topicRef href="#t281"/></t:type><t:topicRef href="#t431"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t281"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t316"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t281"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t311"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t281"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t301"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t281"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t281"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t286"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t351"/></t:type><t:role><t:type><t:topicRef href="#t341"/></t:type><t:topicRef href="#t281"/></t:role><t:role><t:type><t:topicRef href="#t346"/></t:type><t:topicRef href="#t291"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t516"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t316"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t511"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t311"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t506"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t316"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t501"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t311"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t496"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t316"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t491"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t311"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t486"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t316"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t481"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t311"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t476"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t471"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t301"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t466"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t461"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t456"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t301"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t451"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t446"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t306"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t441"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t301"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t436"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t296"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t431"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t286"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t426"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t301"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t421"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t291"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t416"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t286"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t411"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t406"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t401"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t396"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t391"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t386"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t241"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t381"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t376"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t371"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t366"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t361"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t356"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t351"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t346"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t341"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t336"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t331"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t326"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t256"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t321"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t316"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t311"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t306"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t301"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t296"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t291"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t286"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t281"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t251"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t281"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t276"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t271"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t266"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t261"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t246"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t256"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t251"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t246"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t246"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t241"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +<t:association><t:type><t:topicRef href="#t99"/></t:type><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t236"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role><t:role><t:type><t:topicRef href="#t215"/></t:type><t:topicRef href="#t236"/></t:role><t:role><t:type><t:topicRef href="#t207"/></t:type><t:topicRef href="#t236"/></t:role></t:association> +</t:topicMap> \ No newline at end of file
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Tue Aug 30 00:50:52 2011 (r806) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Tue Aug 30 01:56:30 2011 (r807) @@ -1189,7 +1189,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"1000px", + "value":"100px", "scope":null, "reifier":null }, @@ -2373,6 +2373,16 @@ ] }, { + "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Hidden-Value]" + ], + "names":null, + "occurrences":null + }, + { "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" ], "subject_locators":null, @@ -2869,8 +2879,26 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:Visible-Object]", - "[pref_2:Visible-Object]" + "subject_identifiers":["[pref_3:hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Hidden-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Visible-Object]" ], "subject_locators":null, "item_identifiers":null, @@ -2918,7 +2946,8 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:descendant]" + "subject_identifiers":["[pref_3:descendant]", + "[pref_3:descendant]" ], "subject_locators":null, "item_identifiers":null, @@ -2998,8 +3027,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:container]", - "[pref_3:container]" + "subject_identifiers":["[pref_3:container]" ], "subject_locators":null, "item_identifiers":null, @@ -5879,6 +5907,44 @@ }, { "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, @@ -6373,6 +6439,25 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, "player":"si:[pref_2:Value]" }, { @@ -6456,6 +6541,12 @@ "type":"si:[pref_6:subtype]", "reifier":null, "player":"si:[pref_2:Default-Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" } ] },
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Tue Aug 30 00:50:52 2011 (r806) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Tue Aug 30 01:56:30 2011 (r807) @@ -674,7 +674,6 @@
<t:topic id="t2636"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/container" /> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/container" /> <t:instanceOf> <t:topicRef href="#t251" /> </t:instanceOf> @@ -753,6 +752,7 @@ <t:topic id="t2691"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Descriptor" /> <t:instanceOf> + <t:topicRef href="#t2691" /> <t:topicRef href="#t236" /> </t:instanceOf> </t:topic> @@ -763,209 +763,220 @@
<t:topic id="t2701"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Visible-Object" /> - <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Visible-Object" /> </t:topic>
<t:topic id="t2706"> + <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Hidden-Value" /> + </t:topic> + + <t:topic id="t2711"> + <t:subjectIdentifier href="http://psi.isidor.us/gdl/hidden-value" /> + <t:instanceOf> + <t:topicRef href="#t246" /> + </t:instanceOf> + </t:topic> + + <t:topic id="t2716"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/width" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2711"> + <t:topic id="t2721"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/padding-left" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2716"> + <t:topic id="t2726"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/height" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2721"> + <t:topic id="t2731"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/pointer" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2726"> + <t:topic id="t2736"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/border-style" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2731"> + <t:topic id="t2741"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/background-color" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2736"> + <t:topic id="t2746"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/id" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2741"> + <t:topic id="t2751"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/View" /> </t:topic>
- <t:topic id="t2746"> + <t:topic id="t2756"> + <t:subjectIdentifier href="http://psi.isidor.us/gdl/view-name" /> <t:subjectIdentifier href="http://psi.isidor.us/gdl/view-name" /> <t:instanceOf> <t:topicRef href="#t241" /> </t:instanceOf> </t:topic>
- <t:topic id="t2751"> + <t:topic id="t2761"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Topic-View" /> </t:topic>
- <t:topic id="t2756"> + <t:topic id="t2766"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Topic-View" /> </t:topic>
- <t:topic id="t2761"> + <t:topic id="t2771"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Creator-Topic-View" /> </t:topic>
- <t:topic id="t2766"> + <t:topic id="t2776"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Association-View" /> </t:topic>
- <t:topic id="t2771"> + <t:topic id="t2781"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Creator-Association-View" /> </t:topic>
- <t:topic id="t2776"> + <t:topic id="t2786"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Value" /> </t:topic>
- <t:topic id="t2781"> + <t:topic id="t2791"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/TM-Value" /> </t:topic>
- <t:topic id="t2786"> + <t:topic id="t2796"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/display-by" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2791"> + <t:topic id="t2801"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/TM-Single-Type-Value" /> </t:topic>
- <t:topic id="t2796"> + <t:topic id="t2806"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Literal-Value" /> </t:topic>
- <t:topic id="t2801"> + <t:topic id="t2811"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/literal-value" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2806"> + <t:topic id="t2816"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Value" /> </t:topic>
- <t:topic id="t2811"> + <t:topic id="t2821"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/fixed" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2816"> + <t:topic id="t2826"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Literal-Value" /> </t:topic>
- <t:topic id="t2821"> + <t:topic id="t2831"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Text-Object" /> </t:topic>
- <t:topic id="t2826"> + <t:topic id="t2836"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/List-Box" /> </t:topic>
- <t:topic id="t2831"> + <t:topic id="t2841"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Text" /> </t:topic>
- <t:topic id="t2836"> + <t:topic id="t2846"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/readonly" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2841"> + <t:topic id="t2851"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/font-size" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2846"> + <t:topic id="t2856"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Position" /> </t:topic>
- <t:topic id="t2851"> + <t:topic id="t2861"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/position-style" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2856"> + <t:topic id="t2866"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/top" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2861"> + <t:topic id="t2871"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/left" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2866"> + <t:topic id="t2876"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/right" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t2871"> + <t:topic id="t2881"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Value-Group" /> </t:topic>
- <t:topic id="t2876"> + <t:topic id="t2886"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Button" /> </t:topic>
- <t:topic id="t2881"> + <t:topic id="t2891"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Action-Button" /> </t:topic>
- <t:topic id="t2886"> + <t:topic id="t2896"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Commit-Button" /> </t:topic>
- <t:topic id="t2891"> + <t:topic id="t2901"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/textgrid-ui-schema" /> <t:instanceOf> <t:topicRef href="#t2681" /> @@ -978,1817 +989,1824 @@ </t:name> </t:topic>
- <t:topic id="t2896"> + <t:topic id="t2906"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-default-creator-topic-vi..." /> <t:instanceOf> - <t:topicRef href="#t2761" /> + <t:topicRef href="#t2771" /> </t:instanceOf> <t:name> <t:type> - <t:topicRef href="#t2746" /> + <t:topicRef href="#t2756" /> </t:type> <t:value>GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object</t:value> </t:name> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_default_creator_top...</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E362px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2716" /> + <t:topicRef href="#t2726" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E160px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2901"> + <t:topic id="t2911"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-view-binding" /> <t:instanceOf> - <t:topicRef href="#t2791" /> + <t:topicRef href="#t2801" /> </t:instanceOf> </t:topic>
- <t:topic id="t2906"> + <t:topic id="t2916"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-creator-association-..." /> <t:instanceOf> - <t:topicRef href="#t2771" /> + <t:topicRef href="#t2781" /> </t:instanceOf> <t:name> <t:type> - <t:topicRef href="#t2746" /> + <t:topicRef href="#t2756" /> </t:type> <t:value>A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment</t:value> </t:name> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehas_environment_createor_associ...</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2911"> + <t:topic id="t2921"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environement-creator..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2916"> + <t:topic id="t2926"> + <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-hash-role-hidden-val..." /> + <t:instanceOf> + <t:topicRef href="#t2706" /> + </t:instanceOf> + </t:topic> + + <t:topic id="t2931"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_env_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2921"> + <t:topic id="t2936"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-p..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2926"> + <t:topic id="t2941"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-v..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t2931"> + <t:topic id="t2946"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-v..." /> <t:instanceOf> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2801" /> + <t:topicRef href="#t2811" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment:</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2936"> + <t:topic id="t2951"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-en..." /> <t:instanceOf> - <t:topicRef href="#t2826" /> + <t:topicRef href="#t2836" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_list_box_env_i...</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E232px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2941"> + <t:topic id="t2956"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-en..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2946"> + <t:topic id="t2961"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-en..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t2951"> + <t:topic id="t2966"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environment-environm..." /> <t:instanceOf> <t:topicRef href="#t2696" /> </t:instanceOf> </t:topic>
- <t:topic id="t2956"> + <t:topic id="t2971"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_key_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2961"> + <t:topic id="t2976"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-p..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2966"> + <t:topic id="t2981"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-v..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t2971"> + <t:topic id="t2986"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-v..." /> <t:instanceOf> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2801" /> + <t:topicRef href="#t2811" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ekey:</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2976"> + <t:topic id="t2991"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_key_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Efalse</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2721" /> + <t:topicRef href="#t2731" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2711" /> + <t:topicRef href="#t2721" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2981"> + <t:topic id="t2996"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key-positio..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2986"> + <t:topic id="t3001"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key-value-g..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t2991"> + <t:topic id="t3006"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_value_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t2996"> + <t:topic id="t3011"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t3001"> + <t:topic id="t3016"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t3006"> + <t:topic id="t3021"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value..." /> <t:instanceOf> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2801" /> + <t:topicRef href="#t2811" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Evalue:</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t3011"> + <t:topic id="t3026"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_value_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Efalse</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2721" /> + <t:topicRef href="#t2731" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2711" /> + <t:topicRef href="#t2721" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t3016"> + <t:topic id="t3031"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value-posit..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t3021"> + <t:topic id="t3036"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value-value..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t3026"> + <t:topic id="t3041"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button" /> <t:instanceOf> - <t:topicRef href="#t2881" /> + <t:topicRef href="#t2891" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_reset_button_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2716" /> + <t:topicRef href="#t2726" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2841" /> + <t:topicRef href="#t2851" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t3031"> + <t:topic id="t3046"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-pos..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E115px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t3036"> + <t:topic id="t3051"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-val..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t3041"> + <t:topic id="t3056"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-val..." /> <t:instanceOf> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2801" /> + <t:topicRef href="#t2811" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ereset</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t3046"> + <t:topic id="t3061"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-commit-button" /> <t:instanceOf> - <t:topicRef href="#t2886" /> + <t:topicRef href="#t2896" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_commit_button_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2716" /> + <t:topicRef href="#t2726" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2841" /> + <t:topicRef href="#t2851" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t3051"> + <t:topic id="t3066"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-commit-button-po..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E115px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2866" /> + <t:topicRef href="#t2876" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6003"> + <t:topic id="t6101"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Editor-Topic-View" /> </t:topic>
- <t:topic id="t6008"> + <t:topic id="t6106"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Editor-Association-View" /> </t:topic>
- <t:topic id="t6013"> + <t:topic id="t6111"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Delete-Button" /> </t:topic>
- <t:topic id="t6018"> + <t:topic id="t6116"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-default-editor-topic-vie..." /> <t:instanceOf> - <t:topicRef href="#t6003" /> + <t:topicRef href="#t6101" /> </t:instanceOf> <t:name> <t:type> - <t:topicRef href="#t2746" /> + <t:topicRef href="#t2756" /> </t:type> <t:value>GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object</t:value> </t:name> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_default_editor_topi...</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E362px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2716" /> + <t:topicRef href="#t2726" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E160px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6023"> + <t:topic id="t6121"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-view-binding" /> <t:instanceOf> - <t:topicRef href="#t2791" /> + <t:topicRef href="#t2801" /> </t:instanceOf> </t:topic>
- <t:topic id="t6028"> + <t:topic id="t6126"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_env_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6033"> + <t:topic id="t6131"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-po..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6038"> + <t:topic id="t6136"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-va..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t6043"> + <t:topic id="t6141"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-va..." /> <t:instanceOf> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2801" /> + <t:topicRef href="#t2811" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment:</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6048"> + <t:topic id="t6146"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-editor-association-v..." /> <t:instanceOf> - <t:topicRef href="#t6008" /> + <t:topicRef href="#t6106" /> </t:instanceOf> <t:name> <t:type> - <t:topicRef href="#t2746" /> + <t:topicRef href="#t2756" /> </t:type> <t:value>A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment</t:value> </t:name> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehas_environment_editor_associat...</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6053"> + <t:topic id="t6151"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environment-editor-a..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6058"> + <t:topic id="t6156"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_env_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2711" /> + <t:topicRef href="#t2721" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6063"> + <t:topic id="t6161"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env-position" /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E0px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6068"> + <t:topic id="t6166"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env-value-gr..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t6073"> + <t:topic id="t6171"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_key_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6078"> + <t:topic id="t6176"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-po..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6083"> + <t:topic id="t6181"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-va..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t6088"> + <t:topic id="t6186"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-va..." /> <t:instanceOf> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2801" /> + <t:topicRef href="#t2811" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ekey:</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6093"> + <t:topic id="t6191"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_key_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2721" /> + <t:topicRef href="#t2731" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2711" /> + <t:topicRef href="#t2721" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6098"> + <t:topic id="t6196"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key-position" /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E40px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6103"> + <t:topic id="t6201"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key-value-gr..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t6108"> + <t:topic id="t6206"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_label_value_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6113"> + <t:topic id="t6211"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value-..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6118"> + <t:topic id="t6216"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value-..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t6123"> + <t:topic id="t6221"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value-..." /> <t:instanceOf> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2801" /> + <t:topicRef href="#t2811" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Evalue:</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6128"> + <t:topic id="t6226"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_text_value_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E230px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2721" /> + <t:topicRef href="#t2731" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2711" /> + <t:topicRef href="#t2721" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6133"> + <t:topic id="t6231"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value-positi..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E120px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6138"> + <t:topic id="t6236"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value-value-..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t6143"> + <t:topic id="t6241"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-delete-button" /> <t:instanceOf> - <t:topicRef href="#t6013" /> + <t:topicRef href="#t6111" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ehash_object_delete_button_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2716" /> + <t:topicRef href="#t2726" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2841" /> + <t:topicRef href="#t2851" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t6148"> + <t:topic id="t6246"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-delete-button-pos..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E115px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t7803"> + <t:topic id="t7901"> <t:subjectIdentifier href="http://psi.isidor.us/gdl/cursor" /> <t:instanceOf> <t:topicRef href="#t246" /> </t:instanceOf> </t:topic>
- <t:topic id="t7808"> + <t:topic id="t7908"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-default-creator-topic-vi..." /> <t:instanceOf> - <t:topicRef href="#t2761" /> + <t:topicRef href="#t2771" /> </t:instanceOf> <t:name> <t:type> - <t:topicRef href="#t2746" /> + <t:topicRef href="#t2756" /> </t:type> <t:value>GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment</t:value> </t:name> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_default_creator_top...</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E322px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2716" /> + <t:topicRef href="#t2726" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t7813"> + <t:topic id="t7913"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-view-binding" /> <t:instanceOf> - <t:topicRef href="#t2791" /> + <t:topicRef href="#t2801" /> </t:instanceOf> </t:topic>
- <t:topic id="t7818"> + <t:topic id="t7918"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_text_label_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E60px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t7823"> + <t:topic id="t7923"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-posit..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t7828"> + <t:topic id="t7928"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-value..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t7833"> + <t:topic id="t7933"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-value" /> <t:instanceOf> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2801" /> + <t:topicRef href="#t2811" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ename:</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t7838"> + <t:topic id="t7938"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_name_text_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Efalse</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E240px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t7803" /> + <t:topicRef href="#t7901" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2711" /> + <t:topicRef href="#t2721" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t7843"> + <t:topic id="t7943"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text-positi..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t7848"> + <t:topic id="t7948"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text-value-..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t7853"> + <t:topic id="t7953"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-commit-button" /> <t:instanceOf> - <t:topicRef href="#t2886" /> + <t:topicRef href="#t2896" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_commit_button_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2716" /> + <t:topicRef href="#t2726" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2841" /> + <t:topicRef href="#t2851" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t7858"> + <t:topic id="t7958"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-commit-button-po..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E65px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2866" /> + <t:topicRef href="#t2876" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t8604"> + <t:topic id="t8704"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-default-editor-topic-vie..." /> <t:instanceOf> - <t:topicRef href="#t6003" /> + <t:topicRef href="#t6101" /> </t:instanceOf> <t:name> <t:type> - <t:topicRef href="#t2746" /> + <t:topicRef href="#t2756" /> </t:type> <t:value>GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment</t:value> </t:name> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_default_editor_topi...</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E322px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2716" /> + <t:topicRef href="#t2726" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E100px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t8609"> + <t:topic id="t8709"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-view-binding" /> <t:instanceOf> - <t:topicRef href="#t2791" /> + <t:topicRef href="#t2801" /> </t:instanceOf> </t:topic>
- <t:topic id="t8614"> + <t:topic id="t8714"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_text_label_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E60px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2731" /> + <t:topicRef href="#t2741" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Egray</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2726" /> + <t:topicRef href="#t2736" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Enone</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t8619"> + <t:topic id="t8719"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-positi..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t8624"> + <t:topic id="t8724"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-value-..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t8629"> + <t:topic id="t8729"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-value" /> <t:instanceOf> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2801" /> + <t:topicRef href="#t2811" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Ename:</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t8634"> + <t:topic id="t8734"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text" /> <t:instanceOf> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_name_text_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2846" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etrue</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E240px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t7803" /> + <t:topicRef href="#t7901" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Etext</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2711" /> + <t:topicRef href="#t2721" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E2px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t8639"> + <t:topic id="t8739"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text-positio..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E70px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t8644"> + <t:topic id="t8744"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text-value-g..." /> <t:instanceOf> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:instanceOf> </t:topic>
- <t:topic id="t8649"> + <t:topic id="t8749"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-delete-button" /> <t:instanceOf> - <t:topicRef href="#t6013" /> + <t:topicRef href="#t6111" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2736" /> + <t:topicRef href="#t2746" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eenvironment_delete_button_id</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2716" /> + <t:topicRef href="#t2726" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E30px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2716" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E80px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2841" /> + <t:topicRef href="#t2851" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E12px</t:resourceData> </t:occurrence> </t:topic>
- <t:topic id="t8654"> + <t:topic id="t8754"> <t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-delete-button-pos..." /> <t:instanceOf> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:instanceOf> <t:occurrence> <t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2861" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3Eabsolute</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2866" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E65px</t:resourceData> </t:occurrence> <t:occurrence> <t:type> - <t:topicRef href="#t2861" /> + <t:topicRef href="#t2871" /> </t:type> <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string%22%3E10px</t:resourceData> </t:occurrence> @@ -2802,19 +2820,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t8654" /> + <t:topicRef href="#t8754" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t8634" /> + <t:topicRef href="#t8734" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t8649" /> + <t:topicRef href="#t8749" /> </t:role> </t:association>
@@ -2826,13 +2844,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t8604" /> + <t:topicRef href="#t8704" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t8649" /> + <t:topicRef href="#t8749" /> </t:role> </t:association>
@@ -2844,7 +2862,7 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t8644" /> + <t:topicRef href="#t8744" /> </t:role> <t:role> <t:type> @@ -2862,13 +2880,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t8644" /> + <t:topicRef href="#t8744" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t8634" /> + <t:topicRef href="#t8734" /> </t:role> </t:association>
@@ -2880,19 +2898,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t8639" /> + <t:topicRef href="#t8739" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t8614" /> + <t:topicRef href="#t8714" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t8634" /> + <t:topicRef href="#t8734" /> </t:role> </t:association>
@@ -2904,13 +2922,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t8604" /> + <t:topicRef href="#t8704" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t8634" /> + <t:topicRef href="#t8734" /> </t:role> </t:association>
@@ -2922,13 +2940,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t8624" /> + <t:topicRef href="#t8724" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t8614" /> + <t:topicRef href="#t8714" /> </t:role> </t:association>
@@ -2940,13 +2958,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t8624" /> + <t:topicRef href="#t8724" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2666" /> </t:type> - <t:topicRef href="#t8629" /> + <t:topicRef href="#t8729" /> </t:role> </t:association>
@@ -2958,19 +2976,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t8619" /> + <t:topicRef href="#t8719" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t8604" /> + <t:topicRef href="#t8704" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t8614" /> + <t:topicRef href="#t8714" /> </t:role> </t:association>
@@ -2982,13 +3000,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t8604" /> + <t:topicRef href="#t8704" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t8614" /> + <t:topicRef href="#t8714" /> </t:role> </t:association>
@@ -3000,13 +3018,13 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t8604" /> + <t:topicRef href="#t8704" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2646" /> </t:type> - <t:topicRef href="#t8609" /> + <t:topicRef href="#t8709" /> </t:role> </t:association>
@@ -3018,7 +3036,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t8609" /> + <t:topicRef href="#t8709" /> </t:role> <t:role> <t:type> @@ -3036,13 +3054,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2891" /> + <t:topicRef href="#t2901" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t8604" /> + <t:topicRef href="#t8704" /> </t:role> </t:association>
@@ -3054,13 +3072,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t8654" /> + <t:topicRef href="#t8754" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -3072,13 +3090,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t8649" /> + <t:topicRef href="#t8749" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t6013" /> + <t:topicRef href="#t6111" /> </t:role> </t:association>
@@ -3090,13 +3108,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t8644" /> + <t:topicRef href="#t8744" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -3108,13 +3126,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t8639" /> + <t:topicRef href="#t8739" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -3126,13 +3144,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t8634" /> + <t:topicRef href="#t8734" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -3144,13 +3162,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t8629" /> + <t:topicRef href="#t8729" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:role> </t:association>
@@ -3162,13 +3180,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t8624" /> + <t:topicRef href="#t8724" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -3180,13 +3198,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t8619" /> + <t:topicRef href="#t8719" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -3198,13 +3216,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t8614" /> + <t:topicRef href="#t8714" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -3216,13 +3234,31 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t8609" /> + <t:topicRef href="#t8709" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2791" /> + <t:topicRef href="#t2801" /> + </t:role> + </t:association> + + <t:association> + <t:type> + <t:topicRef href="#t99" /> + </t:type> + <t:role> + <t:type> + <t:topicRef href="#t215" /> + </t:type> + <t:topicRef href="#t8704" /> + </t:role> + <t:role> + <t:type> + <t:topicRef href="#t207" /> + </t:type> + <t:topicRef href="#t6101" /> </t:role> </t:association>
@@ -3234,13 +3270,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t8604" /> + <t:topicRef href="#t2691" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t6003" /> + <t:topicRef href="#t236" /> </t:role> </t:association>
@@ -3252,19 +3288,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t7858" /> + <t:topicRef href="#t7958" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t7838" /> + <t:topicRef href="#t7938" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t7853" /> + <t:topicRef href="#t7953" /> </t:role> </t:association>
@@ -3276,13 +3312,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t7808" /> + <t:topicRef href="#t7908" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t7853" /> + <t:topicRef href="#t7953" /> </t:role> </t:association>
@@ -3294,7 +3330,7 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t7848" /> + <t:topicRef href="#t7948" /> </t:role> <t:role> <t:type> @@ -3312,13 +3348,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t7848" /> + <t:topicRef href="#t7948" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t7838" /> + <t:topicRef href="#t7938" /> </t:role> </t:association>
@@ -3330,19 +3366,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t7843" /> + <t:topicRef href="#t7943" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t7818" /> + <t:topicRef href="#t7918" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t7838" /> + <t:topicRef href="#t7938" /> </t:role> </t:association>
@@ -3354,13 +3390,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t7808" /> + <t:topicRef href="#t7908" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t7838" /> + <t:topicRef href="#t7938" /> </t:role> </t:association>
@@ -3372,13 +3408,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t7828" /> + <t:topicRef href="#t7928" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t7818" /> + <t:topicRef href="#t7918" /> </t:role> </t:association>
@@ -3390,13 +3426,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t7828" /> + <t:topicRef href="#t7928" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2666" /> </t:type> - <t:topicRef href="#t7833" /> + <t:topicRef href="#t7933" /> </t:role> </t:association>
@@ -3408,19 +3444,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t7823" /> + <t:topicRef href="#t7923" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t7808" /> + <t:topicRef href="#t7908" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t7818" /> + <t:topicRef href="#t7918" /> </t:role> </t:association>
@@ -3432,13 +3468,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t7808" /> + <t:topicRef href="#t7908" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t7818" /> + <t:topicRef href="#t7918" /> </t:role> </t:association>
@@ -3450,13 +3486,13 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t7808" /> + <t:topicRef href="#t7908" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2646" /> </t:type> - <t:topicRef href="#t7813" /> + <t:topicRef href="#t7913" /> </t:role> </t:association>
@@ -3468,7 +3504,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t7813" /> + <t:topicRef href="#t7913" /> </t:role> <t:role> <t:type> @@ -3486,13 +3522,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2891" /> + <t:topicRef href="#t2901" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t7808" /> + <t:topicRef href="#t7908" /> </t:role> </t:association>
@@ -3504,13 +3540,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2806" /> + <t:topicRef href="#t2816" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2776" /> + <t:topicRef href="#t2786" /> </t:role> </t:association>
@@ -3522,13 +3558,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2796" /> + <t:topicRef href="#t2806" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2776" /> + <t:topicRef href="#t2786" /> </t:role> </t:association>
@@ -3540,13 +3576,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7858" /> + <t:topicRef href="#t7958" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -3558,13 +3594,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7853" /> + <t:topicRef href="#t7953" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2886" /> + <t:topicRef href="#t2896" /> </t:role> </t:association>
@@ -3576,13 +3612,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7848" /> + <t:topicRef href="#t7948" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -3594,13 +3630,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7843" /> + <t:topicRef href="#t7943" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -3612,13 +3648,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7838" /> + <t:topicRef href="#t7938" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -3630,13 +3666,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7833" /> + <t:topicRef href="#t7933" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:role> </t:association>
@@ -3648,13 +3684,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7828" /> + <t:topicRef href="#t7928" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -3666,13 +3702,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7823" /> + <t:topicRef href="#t7923" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -3684,13 +3720,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7818" /> + <t:topicRef href="#t7918" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -3702,13 +3738,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7813" /> + <t:topicRef href="#t7913" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2791" /> + <t:topicRef href="#t2801" /> </t:role> </t:association>
@@ -3720,13 +3756,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7808" /> + <t:topicRef href="#t7908" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2761" /> + <t:topicRef href="#t2771" /> </t:role> </t:association>
@@ -3738,7 +3774,7 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t7803" /> + <t:topicRef href="#t7901" /> </t:role> <t:role> <t:type> @@ -3756,19 +3792,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6148" /> + <t:topicRef href="#t6246" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t6128" /> + <t:topicRef href="#t6226" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t6143" /> + <t:topicRef href="#t6241" /> </t:role> </t:association>
@@ -3780,13 +3816,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t6018" /> + <t:topicRef href="#t6116" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t6143" /> + <t:topicRef href="#t6241" /> </t:role> </t:association>
@@ -3798,7 +3834,7 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6138" /> + <t:topicRef href="#t6236" /> </t:role> <t:role> <t:type> @@ -3816,13 +3852,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6138" /> + <t:topicRef href="#t6236" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6128" /> + <t:topicRef href="#t6226" /> </t:role> </t:association>
@@ -3834,19 +3870,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6133" /> + <t:topicRef href="#t6231" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t6108" /> + <t:topicRef href="#t6206" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t6128" /> + <t:topicRef href="#t6226" /> </t:role> </t:association>
@@ -3858,13 +3894,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t6018" /> + <t:topicRef href="#t6116" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t6128" /> + <t:topicRef href="#t6226" /> </t:role> </t:association>
@@ -3876,13 +3912,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6118" /> + <t:topicRef href="#t6216" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6108" /> + <t:topicRef href="#t6206" /> </t:role> </t:association>
@@ -3894,13 +3930,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6118" /> + <t:topicRef href="#t6216" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2666" /> </t:type> - <t:topicRef href="#t6123" /> + <t:topicRef href="#t6221" /> </t:role> </t:association>
@@ -3912,19 +3948,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6113" /> + <t:topicRef href="#t6211" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t6093" /> + <t:topicRef href="#t6191" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t6108" /> + <t:topicRef href="#t6206" /> </t:role> </t:association>
@@ -3936,13 +3972,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t6018" /> + <t:topicRef href="#t6116" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t6108" /> + <t:topicRef href="#t6206" /> </t:role> </t:association>
@@ -3954,7 +3990,7 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6103" /> + <t:topicRef href="#t6201" /> </t:role> <t:role> <t:type> @@ -3972,13 +4008,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6103" /> + <t:topicRef href="#t6201" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6093" /> + <t:topicRef href="#t6191" /> </t:role> </t:association>
@@ -3990,19 +4026,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6098" /> + <t:topicRef href="#t6196" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t6073" /> + <t:topicRef href="#t6171" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t6093" /> + <t:topicRef href="#t6191" /> </t:role> </t:association>
@@ -4014,13 +4050,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t6018" /> + <t:topicRef href="#t6116" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t6093" /> + <t:topicRef href="#t6191" /> </t:role> </t:association>
@@ -4032,13 +4068,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6083" /> + <t:topicRef href="#t6181" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6073" /> + <t:topicRef href="#t6171" /> </t:role> </t:association>
@@ -4050,13 +4086,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6083" /> + <t:topicRef href="#t6181" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2666" /> </t:type> - <t:topicRef href="#t6088" /> + <t:topicRef href="#t6186" /> </t:role> </t:association>
@@ -4068,19 +4104,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6078" /> + <t:topicRef href="#t6176" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t6048" /> + <t:topicRef href="#t6146" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t6073" /> + <t:topicRef href="#t6171" /> </t:role> </t:association>
@@ -4092,25 +4128,25 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t6018" /> + <t:topicRef href="#t6116" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t6073" /> + <t:topicRef href="#t6171" /> </t:role> </t:association>
<t:association> <t:type> - <t:topicRef href="#t2786" /> + <t:topicRef href="#t2796" /> </t:type> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6068" /> + <t:topicRef href="#t6166" /> </t:role> <t:role> <t:type> @@ -4128,13 +4164,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6068" /> + <t:topicRef href="#t6166" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2651" /> </t:type> - <t:topicRef href="#t2951" /> + <t:topicRef href="#t2966" /> </t:role> </t:association>
@@ -4146,13 +4182,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6068" /> + <t:topicRef href="#t6166" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6058" /> + <t:topicRef href="#t6156" /> </t:role> </t:association>
@@ -4164,19 +4200,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6063" /> + <t:topicRef href="#t6161" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t6048" /> + <t:topicRef href="#t6146" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t6058" /> + <t:topicRef href="#t6156" /> </t:role> </t:association>
@@ -4188,13 +4224,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t6048" /> + <t:topicRef href="#t6146" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t6058" /> + <t:topicRef href="#t6156" /> </t:role> </t:association>
@@ -4206,7 +4242,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6048" /> + <t:topicRef href="#t6146" /> </t:role> <t:role> <t:type> @@ -4224,7 +4260,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6048" /> + <t:topicRef href="#t6146" /> </t:role> <t:role> <t:type> @@ -4242,7 +4278,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6048" /> + <t:topicRef href="#t6146" /> </t:role> <t:role> <t:type> @@ -4260,7 +4296,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6048" /> + <t:topicRef href="#t6146" /> </t:role> <t:role> <t:type> @@ -4278,19 +4314,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6053" /> + <t:topicRef href="#t6151" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t6028" /> + <t:topicRef href="#t6126" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t6048" /> + <t:topicRef href="#t6146" /> </t:role> </t:association>
@@ -4302,13 +4338,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t6018" /> + <t:topicRef href="#t6116" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t6048" /> + <t:topicRef href="#t6146" /> </t:role> </t:association>
@@ -4320,13 +4356,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6038" /> + <t:topicRef href="#t6136" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6028" /> + <t:topicRef href="#t6126" /> </t:role> </t:association>
@@ -4338,13 +4374,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t6038" /> + <t:topicRef href="#t6136" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2666" /> </t:type> - <t:topicRef href="#t6043" /> + <t:topicRef href="#t6141" /> </t:role> </t:association>
@@ -4356,19 +4392,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6033" /> + <t:topicRef href="#t6131" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t6018" /> + <t:topicRef href="#t6116" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t6028" /> + <t:topicRef href="#t6126" /> </t:role> </t:association>
@@ -4380,13 +4416,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t6018" /> + <t:topicRef href="#t6116" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t6028" /> + <t:topicRef href="#t6126" /> </t:role> </t:association>
@@ -4398,13 +4434,13 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6018" /> + <t:topicRef href="#t6116" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2646" /> </t:type> - <t:topicRef href="#t6023" /> + <t:topicRef href="#t6121" /> </t:role> </t:association>
@@ -4416,7 +4452,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t6023" /> + <t:topicRef href="#t6121" /> </t:role> <t:role> <t:type> @@ -4434,13 +4470,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2891" /> + <t:topicRef href="#t2901" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t6018" /> + <t:topicRef href="#t6116" /> </t:role> </t:association>
@@ -4452,13 +4488,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2881" /> + <t:topicRef href="#t2891" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t6013" /> + <t:topicRef href="#t6111" /> </t:role> </t:association>
@@ -4470,13 +4506,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2766" /> + <t:topicRef href="#t2776" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t6008" /> + <t:topicRef href="#t6106" /> </t:role> </t:association>
@@ -4488,13 +4524,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2756" /> + <t:topicRef href="#t2766" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t6003" /> + <t:topicRef href="#t6101" /> </t:role> </t:association>
@@ -4506,13 +4542,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6148" /> + <t:topicRef href="#t6246" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -4524,13 +4560,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6143" /> + <t:topicRef href="#t6241" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t6013" /> + <t:topicRef href="#t6111" /> </t:role> </t:association>
@@ -4542,13 +4578,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6138" /> + <t:topicRef href="#t6236" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -4560,13 +4596,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6133" /> + <t:topicRef href="#t6231" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -4578,13 +4614,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6128" /> + <t:topicRef href="#t6226" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -4596,13 +4632,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6123" /> + <t:topicRef href="#t6221" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:role> </t:association>
@@ -4614,13 +4650,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6118" /> + <t:topicRef href="#t6216" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -4632,13 +4668,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6113" /> + <t:topicRef href="#t6211" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -4650,13 +4686,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6108" /> + <t:topicRef href="#t6206" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -4668,13 +4704,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6103" /> + <t:topicRef href="#t6201" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -4686,13 +4722,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6098" /> + <t:topicRef href="#t6196" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -4704,13 +4740,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6093" /> + <t:topicRef href="#t6191" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -4722,13 +4758,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6088" /> + <t:topicRef href="#t6186" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:role> </t:association>
@@ -4740,13 +4776,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6083" /> + <t:topicRef href="#t6181" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -4758,13 +4794,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6078" /> + <t:topicRef href="#t6176" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -4776,13 +4812,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6073" /> + <t:topicRef href="#t6171" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -4794,13 +4830,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6068" /> + <t:topicRef href="#t6166" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -4812,13 +4848,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6063" /> + <t:topicRef href="#t6161" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -4830,13 +4866,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6058" /> + <t:topicRef href="#t6156" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -4848,13 +4884,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6053" /> + <t:topicRef href="#t6151" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -4866,13 +4902,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6048" /> + <t:topicRef href="#t6146" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t6008" /> + <t:topicRef href="#t6106" /> </t:role> </t:association>
@@ -4884,13 +4920,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6043" /> + <t:topicRef href="#t6141" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2826" /> </t:role> </t:association>
@@ -4902,13 +4938,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6038" /> + <t:topicRef href="#t6136" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -4920,13 +4956,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6033" /> + <t:topicRef href="#t6131" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -4938,13 +4974,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6028" /> + <t:topicRef href="#t6126" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -4956,13 +4992,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6023" /> + <t:topicRef href="#t6121" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2791" /> + <t:topicRef href="#t2801" /> </t:role> </t:association>
@@ -4974,13 +5010,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t6018" /> + <t:topicRef href="#t6116" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t6003" /> + <t:topicRef href="#t6101" /> </t:role> </t:association>
@@ -4992,19 +5028,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t3051" /> + <t:topicRef href="#t3066" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t3026" /> + <t:topicRef href="#t3041" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t3046" /> + <t:topicRef href="#t3061" /> </t:role> </t:association>
@@ -5016,13 +5052,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t3046" /> + <t:topicRef href="#t3061" /> </t:role> </t:association>
@@ -5034,7 +5070,7 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t3026" /> + <t:topicRef href="#t3051" /> </t:role> <t:role> <t:type> @@ -5052,13 +5088,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t3036" /> + <t:topicRef href="#t3051" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2666" /> </t:type> - <t:topicRef href="#t3041" /> + <t:topicRef href="#t3056" /> </t:role> </t:association>
@@ -5070,19 +5106,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t3031" /> + <t:topicRef href="#t3046" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t3011" /> + <t:topicRef href="#t3026" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t3026" /> + <t:topicRef href="#t3041" /> </t:role> </t:association>
@@ -5094,13 +5130,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t3026" /> + <t:topicRef href="#t3041" /> </t:role> </t:association>
@@ -5112,7 +5148,7 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t3021" /> + <t:topicRef href="#t3036" /> </t:role> <t:role> <t:type> @@ -5130,13 +5166,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t3021" /> + <t:topicRef href="#t3036" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t3011" /> + <t:topicRef href="#t3026" /> </t:role> </t:association>
@@ -5148,19 +5184,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t3016" /> + <t:topicRef href="#t3031" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t2991" /> + <t:topicRef href="#t3006" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t3011" /> + <t:topicRef href="#t3026" /> </t:role> </t:association>
@@ -5172,13 +5208,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t3011" /> + <t:topicRef href="#t3026" /> </t:role> </t:association>
@@ -5190,13 +5226,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t3001" /> + <t:topicRef href="#t3016" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2991" /> + <t:topicRef href="#t3006" /> </t:role> </t:association>
@@ -5208,13 +5244,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t3001" /> + <t:topicRef href="#t3016" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2666" /> </t:type> - <t:topicRef href="#t3006" /> + <t:topicRef href="#t3021" /> </t:role> </t:association>
@@ -5226,19 +5262,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2996" /> + <t:topicRef href="#t3011" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t2976" /> + <t:topicRef href="#t2991" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t2991" /> + <t:topicRef href="#t3006" /> </t:role> </t:association>
@@ -5250,13 +5286,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t2991" /> + <t:topicRef href="#t3006" /> </t:role> </t:association>
@@ -5268,7 +5304,7 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t2986" /> + <t:topicRef href="#t3001" /> </t:role> <t:role> <t:type> @@ -5286,13 +5322,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t2986" /> + <t:topicRef href="#t3001" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2976" /> + <t:topicRef href="#t2991" /> </t:role> </t:association>
@@ -5304,19 +5340,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2981" /> + <t:topicRef href="#t2996" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t2956" /> + <t:topicRef href="#t2971" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t2976" /> + <t:topicRef href="#t2991" /> </t:role> </t:association>
@@ -5328,13 +5364,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t2976" /> + <t:topicRef href="#t2991" /> </t:role> </t:association>
@@ -5346,13 +5382,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t2966" /> + <t:topicRef href="#t2981" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2956" /> + <t:topicRef href="#t2971" /> </t:role> </t:association>
@@ -5364,13 +5400,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t2966" /> + <t:topicRef href="#t2981" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2666" /> </t:type> - <t:topicRef href="#t2971" /> + <t:topicRef href="#t2986" /> </t:role> </t:association>
@@ -5382,19 +5418,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2961" /> + <t:topicRef href="#t2976" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t2906" /> + <t:topicRef href="#t2916" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t2956" /> + <t:topicRef href="#t2971" /> </t:role> </t:association>
@@ -5406,25 +5442,25 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t2956" /> + <t:topicRef href="#t2971" /> </t:role> </t:association>
<t:association> <t:type> - <t:topicRef href="#t2786" /> + <t:topicRef href="#t2796" /> </t:type> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2946" /> + <t:topicRef href="#t2961" /> </t:role> <t:role> <t:type> @@ -5442,7 +5478,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2951" /> + <t:topicRef href="#t2966" /> </t:role> <t:role> <t:type> @@ -5460,13 +5496,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t2946" /> + <t:topicRef href="#t2961" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2651" /> </t:type> - <t:topicRef href="#t2951" /> + <t:topicRef href="#t2966" /> </t:role> </t:association>
@@ -5478,13 +5514,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t2946" /> + <t:topicRef href="#t2961" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2936" /> + <t:topicRef href="#t2951" /> </t:role> </t:association>
@@ -5496,19 +5532,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2941" /> + <t:topicRef href="#t2956" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t2906" /> + <t:topicRef href="#t2916" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t2936" /> + <t:topicRef href="#t2951" /> </t:role> </t:association>
@@ -5520,13 +5556,49 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2906" /> + <t:topicRef href="#t2916" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t2936" /> + <t:topicRef href="#t2951" /> + </t:role> + </t:association> + + <t:association> + <t:type> + <t:topicRef href="#t2601" /> + </t:type> + <t:role> + <t:type> + <t:topicRef href="#t2636" /> + </t:type> + <t:topicRef href="#t2916" /> + </t:role> + <t:role> + <t:type> + <t:topicRef href="#t2641" /> + </t:type> + <t:topicRef href="#t2926" /> + </t:role> + </t:association> + + <t:association> + <t:type> + <t:topicRef href="#t2616" /> + </t:type> + <t:role> + <t:type> + <t:topicRef href="#t2711" /> + </t:type> + <t:topicRef href="#t2926" /> + </t:role> + <t:role> + <t:type> + <t:topicRef href="#t2651" /> + </t:type> + <t:topicRef href="#t491" /> </t:role> </t:association>
@@ -5538,7 +5610,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> @@ -5556,7 +5628,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> @@ -5574,7 +5646,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> @@ -5592,7 +5664,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> @@ -5610,19 +5682,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2911" /> + <t:topicRef href="#t2921" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t2916" /> + <t:topicRef href="#t2931" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t2906" /> + <t:topicRef href="#t2916" /> </t:role> </t:association>
@@ -5634,13 +5706,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t2906" /> + <t:topicRef href="#t2916" /> </t:role> </t:association>
@@ -5652,13 +5724,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t2926" /> + <t:topicRef href="#t2941" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2916" /> + <t:topicRef href="#t2931" /> </t:role> </t:association>
@@ -5670,13 +5742,13 @@ <t:type> <t:topicRef href="#t2661" /> </t:type> - <t:topicRef href="#t2926" /> + <t:topicRef href="#t2941" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2666" /> </t:type> - <t:topicRef href="#t2931" /> + <t:topicRef href="#t2946" /> </t:role> </t:association>
@@ -5688,19 +5760,19 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2921" /> + <t:topicRef href="#t2936" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2671" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2676" /> </t:type> - <t:topicRef href="#t2916" /> + <t:topicRef href="#t2931" /> </t:role> </t:association>
@@ -5712,13 +5784,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t2916" /> + <t:topicRef href="#t2931" /> </t:role> </t:association>
@@ -5730,13 +5802,13 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2646" /> </t:type> - <t:topicRef href="#t2901" /> + <t:topicRef href="#t2911" /> </t:role> </t:association>
@@ -5748,7 +5820,7 @@ <t:type> <t:topicRef href="#t2656" /> </t:type> - <t:topicRef href="#t2901" /> + <t:topicRef href="#t2911" /> </t:role> <t:role> <t:type> @@ -5766,13 +5838,13 @@ <t:type> <t:topicRef href="#t2636" /> </t:type> - <t:topicRef href="#t2891" /> + <t:topicRef href="#t2901" /> </t:role> <t:role> <t:type> <t:topicRef href="#t2641" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2906" /> </t:role> </t:association>
@@ -5784,13 +5856,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2881" /> + <t:topicRef href="#t2891" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2886" /> + <t:topicRef href="#t2896" /> </t:role> </t:association>
@@ -5802,13 +5874,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2876" /> + <t:topicRef href="#t2886" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2881" /> + <t:topicRef href="#t2891" /> </t:role> </t:association>
@@ -5820,13 +5892,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2821" /> + <t:topicRef href="#t2831" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2876" /> + <t:topicRef href="#t2886" /> </t:role> </t:association>
@@ -5844,7 +5916,7 @@ <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -5862,7 +5934,7 @@ <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -5874,13 +5946,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2821" /> + <t:topicRef href="#t2831" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -5892,13 +5964,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2821" /> + <t:topicRef href="#t2831" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2826" /> + <t:topicRef href="#t2836" /> </t:role> </t:association>
@@ -5916,7 +5988,7 @@ <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2821" /> + <t:topicRef href="#t2831" /> </t:role> </t:association>
@@ -5928,8 +6000,26 @@ <t:type> <t:topicRef href="#t341" /> </t:type> + <t:topicRef href="#t2826" /> + </t:role> + <t:role> + <t:type> + <t:topicRef href="#t346" /> + </t:type> <t:topicRef href="#t2816" /> </t:role> + </t:association> + + <t:association> + <t:type> + <t:topicRef href="#t351" /> + </t:type> + <t:role> + <t:type> + <t:topicRef href="#t341" /> + </t:type> + <t:topicRef href="#t2826" /> + </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> @@ -5946,13 +6036,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2801" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2796" /> + <t:topicRef href="#t2791" /> </t:role> </t:association>
@@ -5970,7 +6060,7 @@ <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2781" /> + <t:topicRef href="#t2786" /> </t:role> </t:association>
@@ -5982,13 +6072,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2781" /> + <t:topicRef href="#t2691" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2776" /> + <t:topicRef href="#t2706" /> </t:role> </t:association>
@@ -6000,7 +6090,7 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2776" /> + <t:topicRef href="#t2786" /> </t:role> <t:role> <t:type> @@ -6018,13 +6108,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2766" /> + <t:topicRef href="#t2776" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2771" /> + <t:topicRef href="#t2781" /> </t:role> </t:association>
@@ -6036,13 +6126,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2741" /> + <t:topicRef href="#t2751" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2766" /> + <t:topicRef href="#t2776" /> </t:role> </t:association>
@@ -6054,13 +6144,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2756" /> + <t:topicRef href="#t2766" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2761" /> + <t:topicRef href="#t2771" /> </t:role> </t:association>
@@ -6072,13 +6162,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2751" /> + <t:topicRef href="#t2761" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2756" /> + <t:topicRef href="#t2766" /> </t:role> </t:association>
@@ -6090,13 +6180,13 @@ <t:type> <t:topicRef href="#t341" /> </t:type> - <t:topicRef href="#t2741" /> + <t:topicRef href="#t2751" /> </t:role> <t:role> <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2751" /> + <t:topicRef href="#t2761" /> </t:role> </t:association>
@@ -6114,7 +6204,7 @@ <t:type> <t:topicRef href="#t346" /> </t:type> - <t:topicRef href="#t2741" /> + <t:topicRef href="#t2751" /> </t:role> </t:association>
@@ -6162,13 +6252,67 @@ <t:type> <t:topicRef href="#t215" /> </t:type> + <t:topicRef href="#t3066" /> + </t:role> + <t:role> + <t:type> + <t:topicRef href="#t207" /> + </t:type> + <t:topicRef href="#t2856" /> + </t:role> + </t:association> + + <t:association> + <t:type> + <t:topicRef href="#t99" /> + </t:type> + <t:role> + <t:type> + <t:topicRef href="#t215" /> + </t:type> + <t:topicRef href="#t3061" /> + </t:role> + <t:role> + <t:type> + <t:topicRef href="#t207" /> + </t:type> + <t:topicRef href="#t2896" /> + </t:role> + </t:association> + + <t:association> + <t:type> + <t:topicRef href="#t99" /> + </t:type> + <t:role> + <t:type> + <t:topicRef href="#t215" /> + </t:type> + <t:topicRef href="#t3056" /> + </t:role> + <t:role> + <t:type> + <t:topicRef href="#t207" /> + </t:type> + <t:topicRef href="#t2826" /> + </t:role> + </t:association> + + <t:association> + <t:type> + <t:topicRef href="#t99" /> + </t:type> + <t:role> + <t:type> + <t:topicRef href="#t215" /> + </t:type> <t:topicRef href="#t3051" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -6186,7 +6330,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2886" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -6204,7 +6348,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2891" /> </t:role> </t:association>
@@ -6222,7 +6366,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -6240,7 +6384,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -6258,7 +6402,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2881" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -6276,7 +6420,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2826" /> </t:role> </t:association>
@@ -6294,7 +6438,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -6312,7 +6456,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -6330,7 +6474,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -6348,7 +6492,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -6366,7 +6510,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -6384,7 +6528,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -6402,7 +6546,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2826" /> </t:role> </t:association>
@@ -6420,7 +6564,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -6438,7 +6582,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -6456,7 +6600,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -6474,7 +6618,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2696" /> </t:role> </t:association>
@@ -6492,7 +6636,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -6510,7 +6654,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -6528,7 +6672,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2696" /> + <t:topicRef href="#t2836" /> </t:role> </t:association>
@@ -6546,7 +6690,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2826" /> </t:role> </t:association>
@@ -6564,7 +6708,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2881" /> </t:role> </t:association>
@@ -6582,7 +6726,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2826" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -6600,7 +6744,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2816" /> + <t:topicRef href="#t2841" /> </t:role> </t:association>
@@ -6618,7 +6762,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2871" /> + <t:topicRef href="#t2706" /> </t:role> </t:association>
@@ -6636,7 +6780,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2856" /> </t:role> </t:association>
@@ -6654,7 +6798,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2831" /> + <t:topicRef href="#t2781" /> </t:role> </t:association>
@@ -6672,7 +6816,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2846" /> + <t:topicRef href="#t2801" /> </t:role> </t:association>
@@ -6708,7 +6852,7 @@ <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2791" /> + <t:topicRef href="#t2681" /> </t:role> </t:association>
@@ -6720,13 +6864,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t2896" /> + <t:topicRef href="#t2876" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2761" /> + <t:topicRef href="#t246" /> </t:role> </t:association>
@@ -6738,13 +6882,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t2891" /> + <t:topicRef href="#t2871" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t2681" /> + <t:topicRef href="#t246" /> </t:role> </t:association>
@@ -6792,7 +6936,7 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t2856" /> + <t:topicRef href="#t2851" /> </t:role> <t:role> <t:type> @@ -6810,7 +6954,7 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t2851" /> + <t:topicRef href="#t2846" /> </t:role> <t:role> <t:type> @@ -6828,7 +6972,7 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t2841" /> + <t:topicRef href="#t2821" /> </t:role> <t:role> <t:type> @@ -6846,7 +6990,7 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t2836" /> + <t:topicRef href="#t2811" /> </t:role> <t:role> <t:type> @@ -6864,7 +7008,7 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t2811" /> + <t:topicRef href="#t2796" /> </t:role> <t:role> <t:type> @@ -6882,13 +7026,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t2801" /> + <t:topicRef href="#t2756" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t246" /> + <t:topicRef href="#t241" /> </t:role> </t:association>
@@ -6900,7 +7044,7 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t2786" /> + <t:topicRef href="#t2746" /> </t:role> <t:role> <t:type> @@ -6918,13 +7062,13 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t2746" /> + <t:topicRef href="#t2741" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t241" /> + <t:topicRef href="#t246" /> </t:role> </t:association>
@@ -7044,32 +7188,20 @@ <t:type> <t:topicRef href="#t215" /> </t:type> - <t:topicRef href="#t2706" /> + <t:topicRef href="#t2691" /> </t:role> <t:role> <t:type> <t:topicRef href="#t207" /> </t:type> - <t:topicRef href="#t246" /> + <t:topicRef href="#t236" /> </t:role> - </t:association> - - <t:association> - <t:type> - <t:topicRef href="#t99" /> - </t:type> <t:role> <t:type> <t:topicRef href="#t215" /> </t:type> <t:topicRef href="#t2691" /> </t:role> - <t:role> - <t:type> - <t:topicRef href="#t207" /> - </t:type> - <t:topicRef href="#t236" /> - </t:role> </t:association>
<t:association> @@ -8996,12 +9128,6 @@ </t:type> <t:topicRef href="#t236" /> </t:role> - <t:role> - <t:type> - <t:topicRef href="#t215" /> - </t:type> - <t:topicRef href="#t291" /> - </t:role> </t:association>
<t:association>
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Aug 30 00:50:52 2011 (r806) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Aug 30 01:56:30 2011 (r807) @@ -2393,6 +2393,16 @@ ] }, { + "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Hidden-Value]" + ], + "names":null, + "occurrences":null + }, + { "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" ], "subject_locators":null, @@ -2889,8 +2899,26 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:Visible-Object]", - "[pref_2:Visible-Object]" + "subject_identifiers":["[pref_3:hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Hidden-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Visible-Object]" ], "subject_locators":null, "item_identifiers":null, @@ -2938,7 +2966,8 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:descendant]" + "subject_identifiers":["[pref_3:descendant]", + "[pref_3:descendant]" ], "subject_locators":null, "item_identifiers":null, @@ -3018,8 +3047,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:container]", - "[pref_3:container]" + "subject_identifiers":["[pref_3:container]" ], "subject_locators":null, "item_identifiers":null, @@ -5935,6 +5963,44 @@ }, { "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, @@ -6429,6 +6495,25 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, "player":"si:[pref_2:Value]" }, { @@ -6512,6 +6597,12 @@ "type":"si:[pref_6:subtype]", "reifier":null, "player":"si:[pref_2:Default-Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" } ] }, @@ -7412,4 +7503,4 @@ "item_type":"topicmap", "reifier":null } - \ No newline at end of file + \ No newline at end of file
Added: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/gwt/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/gwt/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Tue Aug 30 01:56:30 2011 (r807) @@ -0,0 +1,11148 @@ +{ + "version":"1.1", + "prefixes":{ + "pref_5":"http://textgrid.org/serviceregistry/model/types/", + "pref_4":"http://textgrid.org/serviceregistry/model/", + "pref_1":"http://textgrid.org/serviceregistry/gdl/", + "pref_6":"http://psi.topicmaps.org/iso13250/model/", + "pref_8":"http://textgrid.org/serviceregistry/", + "xsd":"http://www.w3.org/2001/XMLSchema#", + "pref_2":"http://psi.isidor.us/gdl/types/", + "pref_7":"http://psi.topicmaps.org/tmcl/", + "pref_3":"http://psi.isidor.us/gdl/" + }, + "item_identifiers":["[pref_8:services-tm]" + ], + "topics":[{ + "subject_identifiers":["[pref_4:has-config-configuration-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-config-configuration-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-config-parameter-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-config-parameter-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-parameter-service-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-parameter-service-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-parameter-parameter-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-parameter-parameter-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-data-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-data-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-form-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-form-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-default-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-default-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/parameter-config/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-crud-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-crud-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-multiple-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-multiple-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-mime-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-mime-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-param-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-param-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-id-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-id-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/parameter/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-tg-approved-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-tg-approved-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-textgrid-url-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-textgrid-url-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-identifier-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-identifier-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-owner-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-owner-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-use-target-ns-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-use-target-ns-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-target-namespace-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-target-namespace-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-location-body-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-location-body-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-inline-description-location-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-inline-description-location-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-location-uri-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-location-uri-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-keywords-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-keywords-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-service-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-service-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-operation-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-operation-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/service/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:data]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:form]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:default]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter-config-id]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter-config-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:example-config]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:needs-b64-encoding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:crud]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:multiple]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:mime-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:param]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter-id]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:tg-approved]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:textgrid-url]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:identifier]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:owner]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:use-target-ns]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:target-namespace]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:description-location-body]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:inline-description-location]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:description-location-uri]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:keywords]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:description]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:service-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:operation]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:service-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:configuration]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-config]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-parameter]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Parameter-Config]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Parameter]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"65px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-delete-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Delete-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_delete_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-editor-name-text-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"70px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-name-text]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_name_text_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"240px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:cursor]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"name:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"60px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_default_editor_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"322px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"65px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-commit-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Commit-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-creator-name-text-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"70px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-name-text]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_name_text_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"240px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:cursor]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"name:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"60px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_default_creator_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"322px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_3:cursor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Delete-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_delete_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"value:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:has-environment-editor-association-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Editor-Association-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_editor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_editor_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_2:Delete-Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Editor-Association-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Commit-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"reset", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Action-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_reset_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"value:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Role-Player]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:List-Box]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_list_box_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"232px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Hidden-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:has-environment-creator-association-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Creator-Association-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_createor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_creator_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:textgrid-ui-schema]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Schema]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", + "type":"si:[pref_3:schema-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Commit-Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Action-Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Value-Group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:right]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:left]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:top]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:position-style]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:font-size]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:readonly]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Text]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:List-Box]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Text-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Literal-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:fixed]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:literal-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Literal-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:TM-Single-Type-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:display-by]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:TM-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Creator-Association-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Association-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:view-name]", + "[pref_3:view-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:id]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:background-color]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:border-style]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:pointer]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:height]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:padding-left]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:width]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Hidden-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Visible-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Role-Player]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Descriptor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Descriptor]", + "si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:schema-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Schema]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:descendant]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:ancestor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:descriptor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-construct]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:containee]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:container]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:association-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:topic-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:contains]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/environment/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:hash]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:service]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:environment-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:hash-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Hash-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Service]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:supertype-subtype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:subtype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:supertype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-role]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-statement]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-occurrence-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:subject-identifier-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]", + "si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:datatype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:regexp]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:card-max]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:card-min]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:association-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:role-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:occurrence-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]", + "si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:name-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + } + ], + "associations":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:configuration]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:configuration]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:data]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:data]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:form]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:form]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:default]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:default]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:needs-b64-encoding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:needs-b64-encoding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:crud]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:crud]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:multiple]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:multiple]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:mime-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:mime-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:param]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:param]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:tg-approved]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:tg-approved]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:textgrid-url]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:textgrid-url]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:identifier]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:identifier]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:owner]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:owner]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:use-target-ns]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:use-target-ns]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:target-namespace]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:target-namespace]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-body]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-body]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:inline-description-location]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:inline-description-location]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-uri]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-uri]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:keywords]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:keywords]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:operation]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:operation]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:environment-editor-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Environment]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:environment-creator-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Environment]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:display-by]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Delete-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Editor-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Editor-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:display-by]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Commit-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:List-Box]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:TM-Single-Type-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:TM-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:TM-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Creator-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Creator-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Role-Player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-datatype-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-datatype-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash-type]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash-type]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash-type]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment-name]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-name-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment-name]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-psi-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-psi-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:topic-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:topic-occurrence-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:subject-identifier-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:topic-name-constraint]" + } + ] + } + ], + "item_type":"topicmap", + "reifier":null +}