From d7c12f6fbb920bd3f9780e7bd5e027372441d4f4 Mon Sep 17 00:00:00 2001
From: Beyersdorffer <patrick.beyersdorffer@reutlingen-university.de>
Date: Tue, 28 Mar 2023 10:19:40 +0200
Subject: [PATCH] small consistency fixes

---
 application/AccessAQM.py                      |    11 +-
 .../__pycache__/AccessAQM.cpython-311.pyc     |   Bin 12039 -> 11776 bytes
 application/static/data/YOUR_ONTOLOGY.TTL     |  6020 +----
 application/static/data/YOUR_ONTOLOGY.json    | 18085 +++-------------
 .../1_Quality_Model_Snowballing.xlsx          |   Bin 37496 -> 37515 bytes
 .../2_Quality_Model_Formalization.xlsx        |   Bin 59673 -> 59746 bytes
 6 files changed, 3717 insertions(+), 20399 deletions(-)

diff --git a/application/AccessAQM.py b/application/AccessAQM.py
index 9b53c85..36d7f63 100644
--- a/application/AccessAQM.py
+++ b/application/AccessAQM.py
@@ -22,7 +22,6 @@ co = rdflib.URIRef("http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#C
 qa = rdflib.URIRef("http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#QualityAttribute")
 vf = rdflib.URIRef("http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#VariationFactor")
 
-
 purposes = [a, c, es, im, ma, me, mo, pr, sp]
 measurement_purposes = [a, c, es, im, ma, me, mo, pr]
 
@@ -48,22 +47,25 @@ def getAQM(conversion=True):
 def createAQMSubgraphForConsensus(source, conversion=True):
     """
         This function shall enable the analysis of semantic equivalence of one quality model (source) with the others in the AQM.
+        Thereby, different understandings about quality models are aligned resulting in a consensus about quality.
+        If the AQM contains domain standards with regulations on the desired quality, the fulfillment of this regulations can be verified.
+        
         A subgraph of the AQM is needed, containing the requested quality model (source) and quality attributes of other quality models,
         that are aligned via the isEquivalent object property. 
         
         Note: The source needs to be a string representation of the annotation property "Citation" in the AQM (currently in AlphaBixTex format)
     """
     
-    #Load the current backup of the AQM and create an empty subgraph
+    #Load current backup of the AQM and create empty subgraph
     aqm = rdflib.Graph(base="http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#")
     aqm.parse(os.path.join(str(os.getcwd()) + "\\application\\static\\data\\AQM.owl"))
 
     subgraph = rdflib.Graph()
     
-    #Iterate through all triples with the annotation property "Citation" and having the value of the requested source.
+    #Iterate through all triples with the annotation property "Citation" having the value of the requested source.
     for s, p, o in aqm.triples((None, ci, rdflib.Literal(source, lang="en"))):
         
-        subgraph.add((s,p,o)) #subgraph now contains all quality attributes / variation factors of the requested quality model
+        subgraph.add((s,p,o)) #subgraph now contains all quality attributes of the requested quality model
         
         #For given quality attribute / variation factor, add properties (e.g. subClassOf or annotations)
         for s1, p1, o1 in aqm.triples((s, None, None)):
@@ -185,7 +187,6 @@ def createAQMSubgraphForMeasurement(source):
                 
                 #Check if object property has range in measurement_purposes
                 if o2 in measurement_purposes:
-                    print(str(s2))
                     subgraph.add((s2, p2, o2))
                     subgraph.add((s1, p1, o1))
                     
diff --git a/application/__pycache__/AccessAQM.cpython-311.pyc b/application/__pycache__/AccessAQM.cpython-311.pyc
index 33694bfb99927ea74a742fcbbf464b172e21a5ac..89fcf562bf81401fdea63b2981e29b12bd5f1405 100644
GIT binary patch
delta 81
zcmZpVYlz`n&dbZi00fWcE2Yd<-N+{|#PpJJvc6F7=EK6bm>5Mi&l3ycX3XCFQPGEk
Yap`6|tqv9ub4G~|45&oe<Xd{W0P$ZL0ssI2

delta 341
zcmZ8bJxc>Y5X~JHav>>>2x8+@f{<t_*jWWZ3&Ao7d$)7BfxTJW4<#VPN^Pv}M`$be
zQ|xW*tb(PLn<F6c6*I$Q-pBpq@v8sQ>m{9l@9{uB?7j7O(|8frhw1bDvP6T~YzUHy
zBAo2NvqWQ^U`af+ATsS8TzjF&&7jf}RUi#QAf}8G3|g;T_yuARkZZQc*8fu;B(TD1
z0j@+ixj2V>uGtA<3sP5MLmMlMv~WwV4AxVxgri^ynp>GfOD3eQ3JqJb@TwrCs%3q>
zv?sf!%>_e-aD#>lLiyLFY0}R)+Npn%ar3d&?MB>u!P#c?+8pgaZ48d1?L}vO+|}=+
F(Jx5yb+`Zk

diff --git a/application/static/data/YOUR_ONTOLOGY.TTL b/application/static/data/YOUR_ONTOLOGY.TTL
index 3c5c689..978852c 100644
--- a/application/static/data/YOUR_ONTOLOGY.TTL
+++ b/application/static/data/YOUR_ONTOLOGY.TTL
@@ -1,5560 +1,1532 @@
-@prefix AQM: <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#> .
-@prefix ns1: <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#> .
+@prefix ns1: <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#> .
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM> a owl:Ontology .
-
-AQM:AggregationMethod a owl:AnnotationProperty .
-
-AQM:Citation a owl:AnnotationProperty .
-
-AQM:Context a owl:AnnotationProperty .
-
-AQM:Definition a owl:AnnotationProperty .
-
-AQM:Domain a owl:AnnotationProperty .
-
-AQM:E01_A a owl:ObjectProperty,
+ns1:E01_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
     rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> .
 
-AQM:E01_AA a owl:ObjectProperty,
+ns1:E01_AL a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q145_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> .
 
-AQM:E01_AD a owl:ObjectProperty,
+ns1:E01_AT a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q18_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> .
 
-AQM:E01_AG a owl:ObjectProperty,
+ns1:E01_BL a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q18_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q120_A> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> .
 
-AQM:E01_AJ a owl:ObjectProperty,
+ns1:E01_J a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q18_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q145_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> .
 
-AQM:E01_AK a owl:ObjectProperty,
+ns1:E01_M a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> .
 
-AQM:E01_AL a owl:ObjectProperty,
+ns1:E01_N a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> .
 
-AQM:E01_AN a owl:ObjectProperty,
+ns1:E01_P a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> .
 
-AQM:E01_AP a owl:ObjectProperty,
+ns1:E02_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> .
 
-AQM:E01_AS a owl:ObjectProperty,
+ns1:E02_AU a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> .
 
-AQM:E01_AT a owl:ObjectProperty,
+ns1:E02_BS a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> .
 
-AQM:E01_AW a owl:ObjectProperty,
+ns1:E02_CO a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> .
 
-AQM:E01_AY a owl:ObjectProperty,
+ns1:E02_DV a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> .
 
-AQM:E01_BD a owl:ObjectProperty,
+ns1:E02_E a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q120_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> .
 
-AQM:E01_BE a owl:ObjectProperty,
+ns1:E02_G a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q120_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q18_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> .
 
-AQM:E01_BJ a owl:ObjectProperty,
+ns1:E02_L a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q120_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q145_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> .
 
-AQM:E01_BK a owl:ObjectProperty,
+ns1:E02_O a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> .
 
-AQM:E01_BL a owl:ObjectProperty,
+ns1:E02_Q a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> .
 
-AQM:E01_BO a owl:ObjectProperty,
+ns1:E02_S a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> .
 
-AQM:E01_BP a owl:ObjectProperty,
+ns1:E02_V a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> .
 
-AQM:E01_BW a owl:ObjectProperty,
+ns1:E03_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q18_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> .
 
-AQM:E01_CE a owl:ObjectProperty,
+ns1:E03_AE a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q145_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> .
 
-AQM:E01_CF a owl:ObjectProperty,
+ns1:E03_AL a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q145_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q18_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> .
 
-AQM:E01_CI a owl:ObjectProperty,
+ns1:E03_AS a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q145_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q120_A> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> .
 
-AQM:E01_D a owl:ObjectProperty,
+ns1:E03_H a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> .
 
-AQM:E01_E a owl:ObjectProperty,
+ns1:E03_K a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> .
 
-AQM:E01_G a owl:ObjectProperty,
+ns1:E03_L a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> .
 
-AQM:E01_J a owl:ObjectProperty,
+ns1:E03_M a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> .
 
-AQM:E01_M a owl:ObjectProperty,
+ns1:E04_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> .
 
-AQM:E01_N a owl:ObjectProperty,
+ns1:E04_AD a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> .
 
-AQM:E01_P a owl:ObjectProperty,
+ns1:E04_AK a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> .
 
-AQM:E01_U a owl:ObjectProperty,
+ns1:E04_AR a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q18_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> .
 
-AQM:E01_X a owl:ObjectProperty,
+ns1:E04_H a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q120_A> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> .
 
-AQM:E02_A a owl:ObjectProperty,
+ns1:E04_I a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> .
 
-AQM:E02_AN a owl:ObjectProperty,
+ns1:E04_K a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q105_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q117_A> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> .
 
-AQM:E02_AQ a owl:ObjectProperty,
+ns1:E04_L a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q105_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q146_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> .
 
-AQM:E02_AT a owl:ObjectProperty,
+ns1:E04_M a owl:ObjectProperty,
+        owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> .
 
-AQM:E02_AU a owl:ObjectProperty,
+ns1:E04_P a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> .
 
-AQM:E02_B a owl:ObjectProperty,
+ns1:E05_AD a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> .
 
-AQM:E02_BA a owl:ObjectProperty,
+ns1:E05_AK a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> .
 
-AQM:E02_BC a owl:ObjectProperty,
+ns1:E05_AY a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> .
 
-AQM:E02_BF a owl:ObjectProperty,
+ns1:E05_I a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> .
 
-AQM:E02_BR a owl:ObjectProperty,
+ns1:E05_J a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> .
 
-AQM:E02_BS a owl:ObjectProperty,
+ns1:E05_K a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> .
 
-AQM:E02_BV a owl:ObjectProperty,
+ns1:E05_L a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> .
 
-AQM:E02_BY a owl:ObjectProperty,
+ns1:E05_N a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> .
 
-AQM:E02_C a owl:ObjectProperty,
+ns1:E05_P a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> .
 
-AQM:E02_CB a owl:ObjectProperty,
+ns1:E05_W a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> .
 
-AQM:E02_CF a owl:ObjectProperty,
+ns1:E07_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q117_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q105_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> .
 
-AQM:E02_CL a owl:ObjectProperty,
+ns1:E07_AE a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q117_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q146_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> .
 
-AQM:E02_CN a owl:ObjectProperty,
+ns1:E07_G a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> .
 
-AQM:E02_CO a owl:ObjectProperty,
+ns1:E07_J a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> .
 
-AQM:E02_CR a owl:ObjectProperty,
+ns1:E07_K a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> .
 
-AQM:E02_CT a owl:ObjectProperty,
+ns1:E07_Y a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> .
 
-AQM:E02_CX a owl:ObjectProperty,
+ns1:E09_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me> .
 
-AQM:E02_D a owl:ObjectProperty,
+ns1:E09_B a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me> .
 
-AQM:E02_DM a owl:ObjectProperty,
+ns1:E10_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q146_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q105_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me> .
 
-AQM:E02_DQ a owl:ObjectProperty,
+ns1:E10_B a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q146_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q117_A> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me> .
 
-AQM:E02_DU a owl:ObjectProperty,
+ns1:E11_AE a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> .
 
-AQM:E02_DV a owl:ObjectProperty,
+ns1:E11_AQ a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> .
 
-AQM:E02_DY a owl:ObjectProperty,
+ns1:E11_AW a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> .
 
-AQM:E02_E a owl:ObjectProperty,
+ns1:E11_BI a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> .
 
-AQM:E02_EA a owl:ObjectProperty,
+ns1:E11_C a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> .
 
-AQM:E02_EC a owl:ObjectProperty,
+ns1:E11_P a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> .
 
-AQM:E02_F a owl:ObjectProperty,
+ns1:E12_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q17_> .
 
-AQM:E02_G a owl:ObjectProperty,
+ns1:E12_B a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q17_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me> .
+
+ns1:E14_A a owl:AsymmetricProperty,
+        owl:ObjectProperty,
+        owl:SymmetricProperty ;
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> .
 
-AQM:E02_H a owl:ObjectProperty,
+ns1:E14_B a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> .
 
-AQM:E02_I a owl:ObjectProperty,
+ns1:E14_C a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> .
 
-AQM:E02_J a owl:ObjectProperty,
+ns1:E14_D a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> .
 
-AQM:E02_K a owl:ObjectProperty,
+ns1:E14_G a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> .
 
-AQM:E02_L a owl:ObjectProperty,
+ns1:E14_K a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> .
 
-AQM:E02_M a owl:ObjectProperty,
+ns1:E14_O a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> .
+
+ns1:E14_S a owl:AsymmetricProperty,
+        owl:ObjectProperty,
+        owl:SymmetricProperty ;
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> .
 
-AQM:E02_N a owl:ObjectProperty,
+ns1:E15_B a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> .
 
-AQM:E02_O a owl:ObjectProperty,
+ns1:E15_C a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> .
 
-AQM:E02_P a owl:ObjectProperty,
+ns1:E15_D a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_> .
 
-AQM:E02_Q a owl:ObjectProperty,
+ns1:E15_I a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:label "isEquivalent" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> .
 
-AQM:E02_R a owl:ObjectProperty,
+ns1:E15_M a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> .
 
-AQM:E02_S a owl:ObjectProperty,
+ns1:E15_Q a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E02_T a owl:ObjectProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> .
 
-AQM:E02_U a owl:ObjectProperty,
+ns1:E17_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q136_> .
 
-AQM:E02_V a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E03_A a owl:ObjectProperty,
+ns1:E17_B a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q136_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me> .
 
-AQM:E03_AC a owl:ObjectProperty,
+ns1:E19_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q109_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q143_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q27_> .
 
-AQM:E03_AD a owl:ObjectProperty,
+ns1:E19_B a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q27_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me> .
 
-AQM:E03_AE a owl:ObjectProperty,
+ns1:E20_B a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q150_> .
 
-AQM:E03_AH a owl:ObjectProperty,
+ns1:E20_E a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q150_> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me> .
 
-AQM:E03_AI a owl:ObjectProperty,
+ns1:E22_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me> .
 
-AQM:E03_AK a owl:ObjectProperty,
+ns1:E22_B a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me> .
 
-AQM:E03_AL a owl:ObjectProperty,
+ns1:E24_A a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me> .
 
-AQM:E03_AO a owl:ObjectProperty,
+ns1:E24_B a owl:ObjectProperty,
         owl:SymmetricProperty,
         owl:TransitiveProperty ;
     rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me> ;
+    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me> .
 
-AQM:E03_AP a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E03_AR a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me_A> rdfs:label ""@en,
+        "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E03_AS a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E03_AV a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E03_AW a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E03_BB a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q143_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q109_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E03_D a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_M_A> rdfs:label "hasPurpose" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> ;
+    rdfs:range ns1:Measure .
 
-AQM:E03_E a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_M_A> rdfs:label "hasPurpose" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
+    rdfs:range ns1:Measure .
 
-AQM:E03_F a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_M_A> rdfs:label "hasPurpose" ;
     rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+    rdfs:range ns1:Measure .
 
-AQM:E03_H a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_M_A> rdfs:label "hasPurpose" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
+    rdfs:range ns1:Measure .
 
-AQM:E03_K a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_M_A> rdfs:label "hasPurpose" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> ;
+    rdfs:range ns1:Measure .
 
-AQM:E03_L a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E03_M a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AB a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q19_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q147_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AC a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AD a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AE a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AG a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AH a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q85_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q85_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AJ a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AK a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AL a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q88_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q88_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AN a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AO a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AQ a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q91_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q91_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AR a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AS a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q93_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q93_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AU a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_AV a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q96_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q96_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_BA a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q147_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q19_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_BH a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q119_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q19_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q98_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q98_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_BL a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q119_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q147_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_BP a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q19_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q119_A> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
+    rdfs:range ns1:Control .
 
-AQM:E04_BT a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q147_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q119_A> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> ;
+    rdfs:range ns1:Control .
 
-AQM:E04_D a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
+    rdfs:range ns1:Assess .
 
-AQM:E04_E a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> ;
+    rdfs:range ns1:Assess .
 
-AQM:E04_F a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_H a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_I a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_K a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_L a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
+    rdfs:range ns1:Assess .
 
-AQM:E04_M a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me_A> rdfs:label "hasPurpose" ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_O a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_P a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_R a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_S a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me> ;
+    rdfs:range ns1:Measure .
 
-AQM:E04_T a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AB a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AD a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AE a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AF a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AG a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AI a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AK a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AL a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AM a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AN a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AP a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AY a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_AZ a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_BA a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_BB a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_BC a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_I a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_J a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_K a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_L a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_N a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_P a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_Q a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_R a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_S a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_U a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_W a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_X a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_Y a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E05_Z a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_AB a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_AD a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_AE a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_AH a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_AM a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q125_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q107_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_AN a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q125_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q107_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_D a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_E a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_G a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_J a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_K a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_X a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E07_Y a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E08_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q14_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q115_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E08_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q115_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q14_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E09_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E09_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E10_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E10_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AA a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q148_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AB a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q148_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q22_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AD a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q148_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q139_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AE a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AH a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AL a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AM a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q22_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AO a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q139_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AP a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q148_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AQ a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AU a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AW a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_AZ a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_BD a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_BE a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q22_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_BG a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q139_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_BH a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q148_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_BI a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_BL a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_C a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_G a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q22_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_I a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q139_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_J a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q148_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_L a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q22_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_N a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q22_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q139_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_O a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q22_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q148_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_P a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_V a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q139_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_W a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q139_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q22_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E11_Y a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q139_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q148_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E12_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q17_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E12_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q17_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_A a owl:AsymmetricProperty,
-        owl:ObjectProperty,
-        owl:SymmetricProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_C a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_D a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_E a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_F a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_G a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_H a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_I a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_J a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_K a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_L a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_M a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_N a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_O a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_P a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_Q a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_R a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E14_S a owl:AsymmetricProperty,
-        owl:ObjectProperty,
-        owl:SymmetricProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_C a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_D a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_I a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_K a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_L a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_M a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_O a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_P a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_Q a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_S a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E15_T a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E17_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q136_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E17_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q136_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E19_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q27_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E19_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q27_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E20_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q150_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E20_E a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q150_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E22_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E22_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E24_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E24_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E25_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q03_C> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q116_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E25_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q116_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q03_C> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E27_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q26_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E27_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q26_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q153_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E27_C a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q26_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E27_D a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q153_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E27_E a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q153_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q26_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E27_F a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q153_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E30_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q106_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q122_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E30_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q122_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q106_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E30_C a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q59_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q106_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E30_D a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q59_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q122_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E30_E a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q106_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q59_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E30_F a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q122_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q59_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_F a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_G a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q134_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_H a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q154_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_J a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_K a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q134_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_L a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q154_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_N a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q134_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_O a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q134_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_P a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q134_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q154_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_R a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q154_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_S a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q154_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E31_T a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q154_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q134_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E34_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q23_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q138_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E34_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q138_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q23_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E39_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q54_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E39_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q45_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E39_C a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q54_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E39_D a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q54_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q45_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E39_E a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q45_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E39_F a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q45_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q54_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E43_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q48_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q121_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E43_C a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q121_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q48_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E45_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q50_A> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q69_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E45_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q69_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q50_A> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E51_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E51_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E51_C a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q29_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E51_D a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q29_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E51_E a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q29_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E51_F a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q29_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E56_A a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q144_> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q102_Me> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:E56_B a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q102_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q144_> ;
-    rdfs:subPropertyOf AQM:E01 .
-
-AQM:EmpiricalEvidence a owl:AnnotationProperty .
-
-AQM:Estimate a owl:Class ;
-    rdfs:isDefinedBy "A concept of interest is not measured directly but estimated by measuring related concepts. [KHMT09]"@en ;
-    rdfs:subClassOf AQM:Purpose .
-
-AQM:ID a owl:AnnotationProperty .
-
-AQM:Improve a owl:Class ;
-    rdfs:isDefinedBy "Variation factors influencing the concept of internets are known. Therefore, the concept of interest can be improved by improving its influencing factors). [KHMT09]"@en ;
-    rdfs:subClassOf AQM:Purpose .
-
-AQM:LinguisticComplexity a owl:AnnotationProperty .
-
-AQM:Manage a owl:Class ;
-    rdfs:isDefinedBy "A concept is quantified, masured, and comapred periodically or at certain points against defined evaluation criteria to check the fulfillment of the criteria. If defined criteria are missed, possible reasons and reactions can be identified due to the understanding of the variation factors influencing the measured concept. [KHMT09]"@en ;
-    rdfs:subClassOf AQM:Purpose .
-
-AQM:Monitor a owl:Class ;
-    rdfs:isDefinedBy "A concept is quantified and measured periodically or at certain points in time to identidy trends. [KHMT09]"@en ;
-    rdfs:subClassOf AQM:Purpose .
-
-AQM:PractitionersInvolved a owl:AnnotationProperty .
-
-AQM:Predict a owl:Class ;
-    rdfs:isDefinedBy "The future value of a concept of interest is predicted by considering factors indicating ist future value. [KHMT09]"@en ;
-    rdfs:subClassOf AQM:Purpose .
-
-AQM:Scope a owl:AnnotationProperty .
-
-AQM:Viewpoint a owl:AnnotationProperty .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S_D> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me_A> a owl:ObjectProperty ;
-    rdfs:label ""@en,
-        "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_M_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_M_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_M_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_M_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q14_M_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q14_> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q15_M_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q15_> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_M_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q85_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q85_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q88_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q88_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q91_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q91_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q93_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q93_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q96_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q96_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q98_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q98_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q01_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q01_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q01_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q01_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q01_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q01_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q03_C> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> ;
-    rdfs:range AQM:Control ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q03_C_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q03_C> ;
-    rdfs:range AQM:Control ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q04_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q04_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q04_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q04_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q03_C> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q04_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q04_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q05_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q05_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q05_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q05_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q03_C> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q05_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q05_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q06_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q06_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q06_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q06_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q03_C> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> ;
-    rdfs:range AQM:Control ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q08_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q08_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q08_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q08_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q09_C> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q09_C_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q09_C> ;
-    rdfs:range AQM:Control ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q136_> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S_D> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q138_> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S_E> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q139_> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q140_> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me> ;
+    rdfs:range ns1:Measure .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S_D> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q116_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q116_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q117_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q117_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q119_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q119_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q120_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q120_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q121_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q121_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q122_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q122_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q125_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q125_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q102_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q102_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q103_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q103_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q105_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q105_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q106_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q106_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q107_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q107_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q109_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q109_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q109_Me_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q109_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q110_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q110_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me> ;
+    rdfs:range ns1:Measure .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q105_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q41_A> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> ;
+    rdfs:range ns1:Measure .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me_A> rdfs:label "hasPurpose"@en ;
+    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> ;
+    rdfs:range ns1:Measure .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q85_Me> a owl:Class ;
+    rdfs:label "Externally Consistent"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is externally consistent if and only if no requirement stated therein conflicts with any already baselined project documentation. These baselined documents include system-level requirements specifications (RS), statements of work (SOW), white papers, an earlier version of the SRS to which this new SRS must be upward compatible, and RSs for other systems to which this system must interface.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q88_Me> a owl:Class ;
+    rdfs:label "Design-Independent"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is design independent if and only if there exist more than one system design and implementation that correctly implements all requirements stated in the SRS. The purpose of the SRS is to express desired external behavior to a degree that user satisfaction is guaranteed and a maximum number of designs exist to satisfy those needs and behaviore.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q24_> a owl:Class ;
-    rdfs:label "Technical Aspects"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"Consits of the description of the design and interface constraints, validation rules, error messages or any other technical information for the operationalization of the requirements;\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q25_> a owl:Class ;
-    rdfs:label "Functional Requirements"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"It is the description of the functions or tasks to be performed by the wsystem. Requirements can be represented usiang a textual format, for example, by user stories, us cases, business rules and concrete examples; or using a visual representation, such as conceptual models and mockups, or other representations.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q28_> a owl:Class ;
-    rdfs:label "Automated Support"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"The activities of requirements specification and management are carried out with the support of a specialized tool.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q30__V_A> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    AQM:Definition "\"Process characteristics lead the company to choose making a late validation\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q30__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V_A> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    AQM:Definition "\"SRSs to validate requirements resulting in an SRS customer-oriented affecting the objectivity for the development\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q20_> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V_B> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q21_> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V_C> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q35__V> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q32__V_A> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    AQM:Definition "\"Contract characteristics lead the company to choose making a late validation\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q32__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q32__V_B> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q32__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q21_> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q33__V_A> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    AQM:Definition "\"Software characteristics lead the company to choose making a late validation\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q33__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q33__V_B> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q33__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q35__V> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q34__V_A> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    AQM:Definition "\"Low customer availability to detail requirements and clarify doubts often leads to excessive change requests in the partial versions.\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q34__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q35__V> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q34__V_B> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    AQM:Definition "\"When the customer's unavailability it to validate the partial versions, the main problem is that the sprint backlog is not homologated.\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q34__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q29_> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q35__V_A> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    AQM:Definition "\"Although ASD builds on the notion that changes are opportunities for the companies, excessive changes may impair the team productivity and contribute to SRS becoming outdated\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q35__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q36__V> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q37__V_A> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q37__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q36__V> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q37__V_B> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q37__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q17_> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q37__V_C> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q37__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q18_> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q38__V_A> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q38__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q20_> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q39__V_A> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q39__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q18_> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q39__V_B> a owl:ObjectProperty ;
-    rdfs:label "hasQualitativeRelationship"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q39__V> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q20_> ;
-    rdfs:subPropertyOf AQM:hasQualitativeRelationships .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q44_A> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q45_A> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q41_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q41_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q47_A> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S_D> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q48_A> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q49_A> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q50_A> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S_D> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q44_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q44_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q45_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q45_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q47_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q47_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q48_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q48_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q49_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q49_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q50_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q50_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> ;
-    rdfs:range AQM:Assess ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q91_Me> a owl:Class ;
+    rdfs:label "Executable / Interpretable / Prototypable"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is executable, interpretable, or prototypabk if and only if there exists a software tool capable of inputting the SRS and providing a dynamic behavioral model.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q53_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q53_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q53_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "add results of the inspection points"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q53_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q54_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q53_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "add results of the inspection points"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q53_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q55_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q54_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q54_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q55_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q55_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q93_Me> a owl:Class ;
+    rdfs:label "Annotated by Relative Stability"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is annotated by rehiw stability if a reader can easily determine which requirements are of most likely to change, which are next most likely, etc. Designers need this to help determine where to build in flexibility. Knowing the relative stability can help a team decide whether or not to build in that flexibility. [...] One way to achieve this is to suffix every requirement with (H), (M) and (L) to denote whether the probability of change is high, medium, or low.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Syntactic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:Definition "\"we combine unambiguous and verifiable and derive a new quality characteristic: Definiteness.\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q96_Me> a owl:Class ;
+    rdfs:label "At Right Level of Abstraction / Detail"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"The right level of detail is a function of how the SRS is being used. Generally, the SRS should be specific enough that any system built that satisfies the requirements in the SRS satisfies d user needs, and abstract enough that all systems that satisfy all user needs also satisfy all requirements. Thus, an SRS being used for a contract between customer and developer should be relatively specific to emure the customer knows what is being acquired, and them are a minimum of surprises.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q98_Me> a owl:Class ;
+    rdfs:label "Reusable"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is reusable if and only if its sentences, paragraphs and sections can be easily adopted or adapted for use in a subsequent SRS. Much research is underway conceming reuse of design and code. Little extends to the requirements domain.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:Definition "\"we combine unambiguous and verifiable and derive a new quality characteristic: Definiteness.\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q59_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q60_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_D> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_E> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_F> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q63_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_G> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q64_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q59_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q59_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> a owl:Class ;
+    rdfs:label "Understandability"@en ;
+    ns1:Citation "[BBG+06]"@en ;
+    ns1:Definition "\"the ease by which humans understand the meaning of the natural language requirements specification at hand\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q63_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q63_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q64_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q64_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> a owl:Class ;
+    rdfs:label "Consistent" ;
+    ns1:Citation "[GLSB20]"@en ;
+    ns1:Definition "Multiple requirements: \"no two requirements, recorded in a single work product or in different work products, contradict each other.\"" ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved true ;
+    ns1:Scope "Section" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:Definition "\"The first and second perspectives relate to completeness of requirements. On the other hand, the third perspective relates to completeness of description. Thirdparty inspector can evaluate only the completeness of descriptions. It is reasonable to assume that the completeness of requirements, as with correctness, can be evaluated during the second-stage inspection by the project if accountability is satisfied. Thus we define two new quality characteristics, namely: descriptive completeness and requirement completeness."@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q150_> a owl:Class ;
+    rdfs:label "Non-redundant" ;
+    ns1:Citation "[GLSB20]"@en ;
+    ns1:Definition "Multiple requirements: \"each requirement is documented only once and does not overlap with another requirement.\"" ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved true ;
+    ns1:Scope "Section" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:Definition "\"The first and second perspectives relate to completeness of requirements. On the other hand, the third perspective relates to completeness of description. Thirdparty inspector can evaluate only the completeness of descriptions. It is reasonable to assume that the completeness of requirements, as with correctness, can be evaluated during the second-stage inspection by the project if accountability is satisfied. Thus we define two new quality characteristics, namely: descriptive completeness and requirement completeness.\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q67_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q68_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q69_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S_D> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q67_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q67_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q68_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q68_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q69_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q69_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> a owl:Class ;
+    rdfs:label "Complete" ;
+    ns1:Citation "[GLSB20]"@en ;
+    ns1:Definition "Multiple requirements: \"the work product contains all relevant requirements (functional requirements, quality requirements, and constraints) that are known at this point in time and that are related to this work product.\"" ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Section" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_> a owl:Class ;
+    rdfs:label "Modifiable" ;
+    ns1:Citation "[GLSB20]"@en ;
+    ns1:Definition "Multiple requirements: \"the work product is set up in such a way that it can be modified without degrading its quality.\"" ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved true ;
+    ns1:Scope "Section" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> a owl:Class ;
+    rdfs:label "Consistency / Correctness"@en ;
+    ns1:Citation "[HZ18]"@en ;
+    ns1:Context "Agile Requirements Engineering" ;
+    ns1:Definition "\"Consistency and correctness (VC3) indicate those criteria that state something on the quality of an individual feature request (correctness), or on the quality of the link between two or more feature requests (consistency).\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Section" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q136_> a owl:Class ;
+    rdfs:label "Priority"@en ;
+    ns1:Citation "[HZ18]"@en ;
+    ns1:Context "Agile Requirements Engineering" ;
+    ns1:Definition "\"In agile development the priority of a requirement is very important to know, because the priority is used to plan iterations. In each iteration, the open requirements with the highest priority are detailed and subsequently developed. Priority is allowed to change as long as the requirement is open. In this way, agile development ensures that the customer receives what he needs most at any given moment. This also allows for the customer to change his/her mind and upgrade or downgrade requirements during the project by adjusting the priority attribute.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    ns1:Viewpoint "Developer and Customer" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> a owl:Class ;
+    rdfs:label "Unique identifier"@en ;
+    ns1:Citation "[HZ18]"@en ;
+    ns1:Definition "\"Note that an unique identifier is also useful in oral communication of agile requirements. In oral communication, we need an easy and unambiguous way to refer to requirements we are discussing, whereas in written communication we could use other means such as hyper-links or paragraph numbers.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Syntactic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S> ;
-    rdfs:range AQM:Specify ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    AQM:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> ;
-    rdfs:subPropertyOf AQM:hasRefinementStructureC .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> a owl:Class ;
+    rdfs:label "Understandability"@en ;
+    ns1:Citation "[HZ18]"@en ;
+    ns1:Definition "\"We have used the term Understandability to group several criteria related to the choice of wording for the requirements specification. Defining clear requirements can save a lot of time in discussion and question answering during the implementation. Two papers [DQ10, SS05] mention that this can be achieved with requirements written in the language of the customer. [PR09] states that story cards should ‘‘use language simply, consistently and concisely’’. Two more papers deem it is important to use a consistent and defined terminology throughout all requirements: [D14] and [HZ14]. [HZ14] advocates the use of a glossary for this purpose and also recommends the use of correct language (i.e., spelling- and grammar-wise). In total, five papers mention that it is important for the requirements to be unambiguous in general [D01, FM13, F04, SL09, PR09].\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> a owl:Class ;
+    rdfs:label "Forward traceable"@en ;
+    ns1:Citation "[HZ18]"@en ;
+    ns1:Definition "\"It is important to know to which source code and test cases the requirements trace (forward traceability) to be aware where things must be changed when requirements change, since agile development embraces change as a given factor (Beck et al. 2001).\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Syntactic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me_A> a owl:ObjectProperty ;
-    rdfs:label "hasPurpose"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> ;
-    rdfs:range AQM:Measure ;
-    rdfs:subPropertyOf AQM:hasPurpose .
-
-AQM:hasQuantitativeRelationships a owl:ObjectProperty ;
-    rdfs:domain AQM:VariationFactor ;
-    rdfs:range AQM:QualityAttribute,
-        AQM:VariationFactor ;
-    rdfs:subPropertyOf owl:topObjectProperty .
-
-AQM:integrate a owl:ObjectProperty ;
-    rdfs:label "integrate" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S>,
-        <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S> .
-
-ns1:E01_AN a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q56_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q62_Me> .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q17_> a owl:Class ;
+    rdfs:label "Simplicity"@en ;
+    ns1:Citation "[MVSG18]"@en ;
+    ns1:Definition "\"It is the art of maximizing the amount of work not done (Daneva et al., 2013). In the context of the requirements specification activity, simplicity is to describe the requirements as simpler as possible, with few representations, models, and structures;\""@en ;
+    ns1:EmpiricalEvidence true ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved true ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-ns1:E01_AW a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q62_Me> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q56_S> .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q27_> a owl:Class ;
+    rdfs:label "Change History"@en ;
+    ns1:Citation "[MVSG18]"@en ;
+    ns1:Definition "\"It is the history of changes made in the requirements;\""@en ;
+    ns1:EmpiricalEvidence true ;
+    ns1:PractitionersInvolved true ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q52_Me> a owl:Class ;
-    rdfs:label "Correct"@en ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> a owl:Class ;
+    rdfs:label "Unambiguous"@en ;
     ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"An SRS is correct if, and only if, every requirement stated therein is one that the software shall meet [7].\""@en ;
+    ns1:Definition "\"An SRS is unambiguous if, and only if, every requirement stated therein has only one interpretation [7]. It is impossible to completely remove the ambiguity from an SRS written in natural language.\""@en ;
     ns1:EmpiricalEvidence true ;
     ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
-    ns1:Viewpoint "Internal Inspector with Project and Domain Knowledge" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q53_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "add results of the inspection points"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q53_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q54_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q53_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "add results of the inspection points"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q53_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q55_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q56_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:Definition "\"we combine unambiguous and verifiable and derive a new quality characteristic: Definiteness.\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q56_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q57_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:Definition "\"we combine unambiguous and verifiable and derive a new quality characteristic: Definiteness.\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q57_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q59_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q60_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_D> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q61_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_E> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q62_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_F> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q63_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_G> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q64_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q65_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:Definition "\"The first and second perspectives relate to completeness of requirements. On the other hand, the third perspective relates to completeness of description. Thirdparty inspector can evaluate only the completeness of descriptions. It is reasonable to assume that the completeness of requirements, as with correctness, can be evaluated during the second-stage inspection by the project if accountability is satisfied. Thus we define two new quality characteristics, namely: descriptive completeness and requirement completeness."@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q65_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q65_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:Definition "\"The first and second perspectives relate to completeness of requirements. On the other hand, the third perspective relates to completeness of description. Thirdparty inspector can evaluate only the completeness of descriptions. It is reasonable to assume that the completeness of requirements, as with correctness, can be evaluated during the second-stage inspection by the project if accountability is satisfied. Thus we define two new quality characteristics, namely: descriptive completeness and requirement completeness.\""@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q65_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q67_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q68_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q69_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S_D> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q70_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q71_Me> a owl:Class ;
-    rdfs:label "Consistent"@en ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> a owl:Class ;
+    rdfs:label "Verifiable"@en ;
     ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"An SRS is internally consistent if, and only if, no subset of individual requirements described in it conflict [7]. It is virtually impossible for third-party inspectors without domain knowledge to find inconsistencies in an SRS written in a natural language. Therefore, we do not derive new quality characteristics from this quality characteristic. We simply assign this quality characteristic to the second-stage inspection by the project.\""@en ;
+    ns1:Definition "\"An SRS is verifiable if, and only if, every requirement stated therein is verifiable. A requirement is verifiable if, and only if, there exists some finite cost-effective process with which a person or machine can check that the software product meets the requirement. In general, any ambiguous requirement is not verifiable [7]. As IEEE Std. 830-1998 explains, requirements are not verifiable if they are ambiguous.\""@en ;
     ns1:EmpiricalEvidence true ;
-    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:LinguisticComplexity "pragmatic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
-    ns1:Viewpoint "Internal Inspector with Project and Domain Knowledge" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q72_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q72_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q73_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q72_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q72_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q74_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q75_S_B> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q75_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q76_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q75_S_C> a owl:ObjectProperty ;
-    rdfs:label "refines"@en ;
-    ns1:AggregationMethod "Add results of all inspection points of the sub-characteristics"@en ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q75_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q77_Me> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q78_Me> a owl:Class ;
-    rdfs:label "Achievable"@en ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> a owl:Class ;
+    rdfs:label "Complete"@en ;
     ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"An SRS is achievable if and only if there could exist at least one system design and implementation that correctly implements all the requirements stated in the SRS [3]. It is virtually impossible for third-party inspectors without domain knowledge to conclude if there could exist at least one possible system design.\""@en ;
+    ns1:Definition "\"An SRS is complete if, and only if, it includes the following elements [7]: All significant requirements, whether relating to functionality, performance, design constraints, attributes, or external interfaces; Definition of the responses of the software to all realizable classes of input data in all realizable situations; Full labels and references to all figures, tables, and diagrams in the SRS and definition of all terms and units of measure;\""@en ;
     ns1:EmpiricalEvidence true ;
     ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
-    ns1:Viewpoint "Internal Inspector with Project and Domain Knowledge" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-ns1:integrate a owl:ObjectProperty ;
-    rdfs:label "integrate" ;
-    rdfs:domain <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q56_S>,
-        <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q57_S> ;
-    rdfs:range <http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S> .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q15_> a owl:Class ;
-    rdfs:label "Consistency"@en ;
-    AQM:Citation "[Bel12]"@en ;
-    AQM:Definition "\"the content of a SRS should be consistent and non-contradictory. This attribute should be valid in the level of detail, style of requirement statements, and in the presentation of material [4]. Some authors use the concepts of internal and external consistency. On one hand, there is an internal consistency of a SRS if and only if no subset of individual requirements stated therein conflict. On the other hand, an external consistency exists if and only if there are no requirement conflicts with any other baseline project documentation [25]."@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "All people involved in the requirement specification process (on a people, organizational and technological dimension)" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q85_Me> a owl:Class ;
-    rdfs:label "Externally Consistent"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is externally consistent if and only if no requirement stated therein conflicts with any already baselined project documentation. These baselined documents include system-level requirements specifications (RS), statements of work (SOW), white papers, an earlier version of the SRS to which this new SRS must be upward compatible, and RSs for other systems to which this system must interface.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> a owl:Class ;
+    rdfs:label "Modifiable"@en ;
+    ns1:Citation "[TA15]"@en ;
+    ns1:Definition "\"An SRS is modifiable if, and only if, ist structure and style are such that any changes to the requirements can be made easily, completely, and consistently while retaining the structure and style [7].\""@en ;
+    ns1:EmpiricalEvidence true ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Dcoument" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q88_Me> a owl:Class ;
-    rdfs:label "Design-Independent"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is design independent if and only if there exist more than one system design and implementation that correctly implements all requirements stated in the SRS. The purpose of the SRS is to express desired external behavior to a degree that user satisfaction is guaranteed and a maximum number of designs exist to satisfy those needs and behaviore.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> a owl:Class ;
+    rdfs:label "Readability"@en ;
+    ns1:Citation "[BBG+06]"@en ;
+    ns1:Definition "\"the ability for a human being to read the natural language requirements specification at hand\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q91_Me> a owl:Class ;
-    rdfs:label "Executable / Interpretable / Prototypable"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is executable, interpretable, or prototypabk if and only if there exists a software tool capable of inputting the SRS and providing a dynamic behavioral model.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> a owl:Class ;
+    rdfs:label "Uniguity"@en ;
+    ns1:Citation "[BBG+06]"@en ;
+    ns1:Definition "\"the lack of ambiguity in the natural language requirements specification at hand. (We have invented the word “uniguity”, i.e., one meaning, to not have to use the heavy mouthful “nonambiguity”)\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q93_Me> a owl:Class ;
-    rdfs:label "Annotated by Relative Stability"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is annotated by rehiw stability if a reader can easily determine which requirements are of most likely to change, which are next most likely, etc. Designers need this to help determine where to build in flexibility. Knowing the relative stability can help a team decide whether or not to build in that flexibility. [...] One way to achieve this is to suffix every requirement with (H), (M) and (L) to denote whether the probability of change is high, medium, or low.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> a owl:Class ;
+    rdfs:label "Testability"@en ;
+    ns1:Citation "[BBG+06]"@en ;
+    ns1:Definition "\"the ability to test that a CBS implements what is specified in the natural language requirements specification at hand\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q96_Me> a owl:Class ;
-    rdfs:label "At Right Level of Abstraction / Detail"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"The right level of detail is a function of how the SRS is being used. Generally, the SRS should be specific enough that any system built that satisfies the requirements in the SRS satisfies d user needs, and abstract enough that all systems that satisfy all user needs also satisfy all requirements. Thus, an SRS being used for a contract between customer and developer should be relatively specific to emure the customer knows what is being acquired, and them are a minimum of surprises.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> a owl:Class ;
+    rdfs:label "Consistency"@en ;
+    ns1:Citation "[BBG+06]"@en ;
+    ns1:Definition "\"the lack of contradictions and incongruities in the natural language requirements specification at hand\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q98_Me> a owl:Class ;
-    rdfs:label "Reusable"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is reusable if and only if its sentences, paragraphs and sections can be easily adopted or adapted for use in a subsequent SRS. Much research is underway conceming reuse of design and code. Little extends to the requirements domain.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q140_> a owl:Class ;
-    rdfs:label "INVEST"@en ;
-    AQM:Citation "[HZ18]"@en ;
-    AQM:Context "Agile Requirements Engineering" ;
-    AQM:Definition "\"An acronym introduced specifically for agile requirements quality is INVEST: user stories should be Independent, Negotiable, Valuable, Estimable, Small and Testable (Wake 2003).\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q103_Me> a owl:Class ;
-    rdfs:label "Appropriate"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The specific intent and amount of detail of the requirement is appropriate to the level of the entity to which it refers (level of abstraction appropriate to the level of entity). This includes avoiding unnecessary constraints on the architecture or design while allowing implementation independence to the extent possible. While additional detailed information could still be important, the information is documented and communicated in some other form of documentation, such as the requirements attributes in 5.2.8 (e.g., rationale) in order to aid in design and implementation. Additionally, including design solutions in the requirements creates the risk that potential design solutions could be overlooked or eliminated. Examples include stating requirements that express an exact commercial system set or a system that can be bought rather than made, stating tolerances for items deep within the conceptual system, or establishing constraints that are not necessarily reflective of the parent requirement.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Structural" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q110_Me> a owl:Class ;
-    rdfs:label "Conforming"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The individual items conform to an approved standard template and style for writing requirements, when applicable.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q30__V> a owl:Class ;
-    rdfs:label "Process Characteristics"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"Bureaucratic practices applied to release, validate or certificate practical versions of the softwarem as wekk as to control changes in the requirements require an additional effort from the team.\""@en ;
-    AQM:Domain "Organizational"@en ;
-    rdfs:subClassOf AQM:VariationFactor .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q38__V> a owl:Class ;
-    rdfs:label "Inadequate team experience with agile software development"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"The development team has little experience with the ASD values, principles, and practices;\""@en ;
-    AQM:Domain "Stakeholders"@en ;
-    rdfs:subClassOf AQM:VariationFactor .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q60_Me> a owl:Class ;
-    rdfs:label "Non-equivocal"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved false ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q54_Me> a owl:Class ;
-    rdfs:label "Project objective"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
-    ns1:LinguisticComplexity "Semantic" ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> a owl:Class ;
+    rdfs:label "Completeness"@en ;
+    ns1:Citation "[BBG+06]"@en ;
+    ns1:Definition "\"the lack of missing information in the natural language requirements specification at hand\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Scope "Section" ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
+    ns1:Scope "Document" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q55_Me> a owl:Class ;
-    rdfs:label "Purpose of feature"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> a owl:Class ;
+    rdfs:label "Correctness"@en ;
+    ns1:Citation "[BBG+06]"@en ;
+    ns1:Definition "\"(1) the lack of factual errors about the domain of the computer-based system under construction and (2) matching what the customer wants\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
+    ns1:Scope "Document" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q59_Me> a owl:Class ;
-    rdfs:label "Non-redundant"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> a owl:Class ;
+    rdfs:label "Clearness / Unambiguously"@en ;
+    ns1:Citation "[Bel12]"@en ;
+    ns1:Definition "\"If a requirement can only be interpreted in only one way, it may classified as unambiguous [4]. A SRS can be defined as clear or unambiguous if each of its requirements is unambiguous [25]. Yet, this definition doesn´t totally take into account the complexity of the real-world, because the interpretation is a subjective process and because there is a very different range of people involved in the requirement specification process.\""@en ;
+    ns1:EmpiricalEvidence false ;
     ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Scope "Requirement" ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
+    ns1:Scope "Document" ;
+    ns1:Viewpoint "All people involved in the requirement specification process (on a people, organizational and technological dimension)" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q60_Me> a owl:Class ;
-    rdfs:label "Non-equivocal"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> a owl:Class ;
+    rdfs:label "Completeness"@en ;
+    ns1:Citation "[Bel12]"@en ;
+    ns1:Definition "\"When everything that the software is assumed to carry out is considered it may be said that we are facing a complete SRS [25]. The Institute of Electrical and Electronics Engineers (IEEE) standard 1233 states that a completed SRS should include all customer requirements, as well as those needed for the definition of the system. Moreover, it should have all pages, tables and figures numbered, all terms defined, all units provided and all referenced material present. Finally, it should not have any to be determined (TBD) sections [4].\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
+    ns1:Scope "Document" ;
+    ns1:Viewpoint "All people involved in the requirement specification process (on a people, organizational and technological dimension" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q61_Me> a owl:Class ;
-    rdfs:label "Quantative"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
-    ns1:LinguisticComplexity "Semantic" ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> a owl:Class ;
+    rdfs:label "Correctness"@en ;
+    ns1:Citation "[Bel12]"@en ;
+    ns1:Definition "\"Correctness is typically one of the most referenced attributes of a good SRS. A SRS is normally classified as correct when every requirement contributes to the satisfaction of some need[25]. Despite knowing that perfection is a goal that is usually not fully attainable, it does not mean that it should not be attempted. Whenever things are detected as incorrect, the specification should be kept updated [27]. Although IEEE standard 1233 do not explicitly talk about a correctness attribute, it underlines the importance of repeating the process of correcting the initial requirements errors or to add new requirements to enhance the systems features [4].\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:Scope "Document" ;
+    ns1:Viewpoint "All people involved in the requirement specification process (on a people, organizational and technological dimension)" ;
+    rdfs:comment false ;
+    rdfs:subClassOf ns1:QualityAttribute .
+
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> a owl:Class ;
+    rdfs:label "Understandability"@en ;
+    ns1:Citation "[Bel12]"@en ;
+    ns1:Definition "\"The understandability of a SRS occurs if all types of SRS readers can easily comprehend the meaning of all requirements with a minimum of explanation [25]. Since SRS readers may be so diverse as customers, users, project managers, programmers, testers or business managers, must be taken a particular attention to the writing of the requirements. The natural language assumes a special importance because the majority of requirements specification are written in that way. The assurance of the readability of requirements includes the usage of simple words/phrases/concepts, the uniform arrangement and relationship, the definition of unique words/symbols/notations and the use of grammatically correct language and symbology [4].\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
+    ns1:Viewpoint "All people involved in the requirement specification process (on a people, organizational and technological dimension)" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q63_Me> a owl:Class ;
-    rdfs:label "Voice"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> a owl:Class ;
+    rdfs:label "Feasibility"@en ;
+    ns1:Citation "[Bel12]"@en ;
+    ns1:Definition "\"feasibility is usually considered an extremely important requirement attribute as well. A SRS is consider feasible if all its requirements can be implemented with the available technology, human resources and budget. On the other hand, when including a requirement in the system project, it means the requirement is worthy to be included because it contributes positively to the return of that investment [20]. Feasibility evaluation depends on the present state of technology (e.g., commercially available components or new development), the customers environment (e.g., readiness or acceptance to change), and the risk or cost associated with each requirement [4].\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
+    ns1:Scope "Document" ;
+    ns1:Viewpoint "All people involved in the requirement specification process (on a people, organizational and technological dimension)" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q64_Me> a owl:Class ;
-    rdfs:label "Reference"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me> a owl:Class ;
+    rdfs:label "Organized"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is organized if and only if its contents are arranged so that readers can easily locate information and logical relationships among adjacent sections is apparent. One way is to follow any of the many SRS standards [DOR90]. Certainly boiler plate sections of all SRS standards are rou~hly equivalent. Primary differences concern organization of detailed requirements. There are many ways to organize these.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
+    ns1:Scope "Document" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q67_Me> a owl:Class ;
-    rdfs:label "Requirement Completeness"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"All significant requirements, whether relating to functionality, performance, design constraints, attributes, or external interfaces; Definition of the responses of the software to all realizable classes of input data in all realizable situations.\"" ;
-    ns1:EmpiricalEvidence true ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me> a owl:Class ;
+    rdfs:label "Cross-Referenced"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is cross referenced if and only if cross-references are used in the SRS to relate Sections containing requirements to other sections\""@en ;
+    ns1:EmpiricalEvidence "fasle" ;
     ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
-    ns1:Viewpoint "Internal Inspector with Project and Domain Knowledge" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q68_Me> a owl:Class ;
-    rdfs:label "TBD"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me> a owl:Class ;
+    rdfs:label "Concise"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is concise if it is as short as possible without adversely affecting any other quality of the SRS.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
+    ns1:Scope "Document" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q69_Me> a owl:Class ;
-    rdfs:label "Label"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"A unique number is assigned to Figures and tables?\"" ;
-    ns1:EmpiricalEvidence true ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me> a owl:Class ;
+    rdfs:label "Annotated by Relative Importance"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is annotated by relative importance if a reader can easily determine which requirements are of most importance to customers, which are next most important, etc. […] One way to achieve this is to suffix every requirement with (M), (D) and (0) to denote that this requirement is mandatory, desirable, or optional.\""@en ;
+    ns1:EmpiricalEvidence false ;
     ns1:LinguisticComplexity "Syntactic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q70_Me> a owl:Class ;
-    rdfs:label "Template"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me> a owl:Class ;
+    rdfs:label "Annotated by Version"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is annotazed by version if a reader can easily determine which requimamts will be satisfied in which versions of the product. Both customers and designers obviously need to larow this.\""@en ;
+    ns1:EmpiricalEvidence false ;
     ns1:LinguisticComplexity "Syntactic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
+    ns1:Viewpoint "Customer and designer" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q73_Me> a owl:Class ;
-    rdfs:label "Cross reference"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
-    ns1:LinguisticComplexity "Pragmatic" ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me> a owl:Class ;
+    rdfs:label "Not Redundant"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is redundant if the same requirement is stated more than once. […] Often redundancy can be used to increase readability of the SRS significantly. The only problem that redundancy causes is when an SRS is revised. If all occurrences of a redundant requirement are not changed then the SRS becomes inconsistent.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Semantic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q74_Me> a owl:Class ;
-    rdfs:label "Searchable"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"Table of contents and index are created?\"" ;
-    ns1:EmpiricalEvidence true ;
-    ns1:LinguisticComplexity "Syntactic" ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me> a owl:Class ;
+    rdfs:label "Precise"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is precise if and only if (a) numeric quantities are used whenever possible, and (b) the appropriate levels of precision are used for all numeric quantities.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Semantic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q76_Me> a owl:Class ;
-    rdfs:label "Backward traceability"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me> a owl:Class ;
+    rdfs:label "Traced"@en ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is traced if and only if the origin of each of ist requirements is clear DAV931. This implies that every requirement that has a basis is cross-reference to that basis.\""@en ;
+    ns1:EmpiricalEvidence false ;
     ns1:PractitionersInvolved false ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
+    ns1:Scope "Document" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q77_Me> a owl:Class ;
-    rdfs:label "Forward traceability"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> a owl:Class ;
+    rdfs:label "Completeness"@en ;
+    ns1:Citation "[ECSS-Q-HB-80-04C]"@en ;
+    ns1:Definition "\"The capability of the software to provide full implementation of the functions required.\" Taken from SPEC."@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:PractitionersInvolved true ;
+    ns1:Viewpoint "Development team, SW Product Assurance manager, V&V team." ;
+    rdfs:subClassOf ns1:QualityAttribute .
+
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> a owl:Class ;
+    rdfs:label "Testability"@en ;
+    ns1:Citation "[ECSS-Q-HB-80-04C]"@en ;
+    ns1:Context "SW V&V Process" ;
+    ns1:Definition "\"Extent to which an objective and feasible test can be designed to determine whether a requirement is met.\" Taken from ISO 24765."@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved true ;
+    ns1:Scope "Document" ;
+    ns1:Viewpoint "Development team, SW Product Assurance manager, V&V team." ;
+    rdfs:subClassOf ns1:QualityAttribute .
+
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> a owl:Class ;
+    rdfs:label "Consistency"@en ;
+    ns1:Citation "[Hal93]"@en ;
+    ns1:Definition "\"Consistency requires that the requirement not be in conflict with any other requirement, nor with any element of its own structure.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
+    ns1:Scope "Section" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q06_S> a owl:Class ;
-    rdfs:label "Suitability for Safety"@en ;
-    AQM:Citation "[ECSS-Q-HB-80-04C]"@en ;
-    AQM:Definition "\"System state where an acceptable level of risk with respect to fatality, injury or occupational illness, damage to launcher hardware or launch site facilities, damage to an element of an interfacing manned flight system, the main functions of a flight system itself, pollution of the environment, atmosphere or outer space, and damage to public or private property.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved true ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q08_S> a owl:Class ;
-    rdfs:label "Software Development Effectiveness"@en ;
-    AQM:Citation "[ECSS-Q-HB-80-04C]"@en ;
-    AQM:Definition "\"Extent to which planned activities are realized and planned results achieved.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Global" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q09_C> a owl:Class ;
-    rdfs:label "Project Management Effectiveness"@en ;
-    AQM:Citation "[ECSS-Q-HB-80-04C]"@en ;
-    AQM:Context "All development phases" ;
-    AQM:Definition "\"The capability of the software development process to asses the quality in the management of the process in a specified context of use.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Global" ;
-    AQM:Viewpoint "Development team and SW Product Assurance manager" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q143_> a owl:Class ;
-    rdfs:label "Adequate" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Single requirement: \"the requirement describes true and agreed stakeholder needs. Some people use correctness instead of adequacy. However, the notion of correctness implies that there is a formal procedure for deciding whether something is correct or not. As there is no formal procedure for validating a documented requirement against the desires and needs that stakeholders have in mind, we prefer the term adequacy over correctness.\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q144_> a owl:Class ;
-    rdfs:label "Necessary" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Single requirement: \"the requirement is part of the relevant system scope, meaning that it will contribute to the achievement of at least one stakeholder goal or need.\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Prgamatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> a owl:Class ;
+    rdfs:label "Modifiability"@en ;
+    ns1:Citation "[Hal93]"@en ;
+    ns1:Definition "\"Modifiability requires that: (a) necessary changes to a requirement can be made completely and consistently; and (b) the same requirement is specified only once.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q150_> a owl:Class ;
-    rdfs:label "Non-redundant" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Multiple requirements: \"each requirement is documented only once and does not overlap with another requirement.\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q115_Me> a owl:Class ;
-    rdfs:label "Able to be validated" ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"It is practicable that satisfaction of the requirement set will lead to the achievement of the entity needs within constraints (e.g., cost, schedule, technical, legal and regulatory compliance).\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q21_> a owl:Class ;
-    rdfs:label "Team-Oriented"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"The requirements are described using a language directed to the developer. Technical terms and jargon are used, if needed;\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q23_> a owl:Class ;
-    rdfs:label "Non-functional Requirements"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"Consist of the description of the constraints in the system's operation, such as security, performance, multilingual support, among others.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> a owl:Class ;
+    rdfs:label "Complete"@en ;
+    ns1:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
+    ns1:Definition """"The set of requirements stands alone such that it sufficiently describes the necessary capabilities, characteristics, constraints or quality factors to meet entity needs without needing further information. In addition, the set does not contain any To Be Defined (TBD), To Be Specified (TBS), or To Be Resolved (TBR) clauses. Resolution of the TBx designations may be iterative and there is an acceptable timeframe for TBx items, determined by risks and dependencies. To improve completeness, the following practices can be adopted:
+i) include all requirements types relevant to the system under consideration;
+ii) account for requirements in all stages of the life cycle; and
+iii) involve all stakeholders in the requirements elicitation, capture, and analysis activity.\""""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved true ;
+    ns1:Scope "Section" ;
+    ns1:Viewpoint "All stakeholders" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q27_> a owl:Class ;
-    rdfs:label "Change History"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"It is the history of changes made in the requirements;\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q32__V> a owl:Class ;
-    rdfs:label "Contract agreements"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"Contractual clauses establish that the SRSs must be made available to the customer who must validate and approve it;\""@en ;
-    AQM:Domain "External"@en ;
-    rdfs:subClassOf AQM:VariationFactor .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q33__V> a owl:Class ;
-    rdfs:label "Software Characteristics"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"Characteristics itrinsic to the tyoe of software developed or the application domain require an additional effort from the team;\""@en ;
-    AQM:Domain "External"@en ;
-    rdfs:subClassOf AQM:VariationFactor .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q34__V> a owl:Class ;
-    rdfs:label "Inadequate Customer Availability"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"The availability of the customer to collaborate with the development team or to validate the software is not adequate;\""@en ;
-    AQM:Domain "Stakeholders"@en ;
-    rdfs:subClassOf AQM:VariationFactor .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q36__V> a owl:Class ;
-    rdfs:label "Outdated"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"The description of the requirements is outdated, no longer corresponds to the needs requested by the customer;\", \"An outdated SRS jeopardizes the quality and entails more rework for the team.\""@en ;
-    AQM:Domain "Content"@en ;
-    rdfs:subClassOf AQM:VariationFactor .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q39__V> a owl:Class ;
-    rdfs:label "Inadequate team experience with specification"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"The development team has little experience with the requirements specirfication activity.\""@en ;
-    AQM:Domain "Stakeholders"@en ;
-    rdfs:subClassOf AQM:VariationFactor .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q41_A> a owl:Class ;
-    rdfs:label "Coverability"@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:Definition "\"Coverability is derived from “Complete” of IEEE Std. 830. It is a pragmatic completeness of a SRS from the perspective of developers. Coverability is evaluated with whether a SRS is completely described in accordance with all the contents of our SRS guideline.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q44_A> a owl:Class ;
-    rdfs:label "Clarity of project goals"@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved true ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q47_A> a owl:Class ;
-    rdfs:label "Standard description usage"@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved true ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q49_A> a owl:Class ;
-    rdfs:label "Presence of listed artifacts"@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved true ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q55_Me> a owl:Class ;
-    rdfs:label "Purpose of feature"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved false ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q63_Me> a owl:Class ;
-    rdfs:label "Voice"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved false ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q64_Me> a owl:Class ;
-    rdfs:label "Reference"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved false ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q67_Me> a owl:Class ;
-    rdfs:label "Requirement Completeness"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"All significant requirements, whether relating to functionality, performance, design constraints, attributes, or external interfaces; Definition of the responses of the software to all realizable classes of input data in all realizable situations.\"" ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Internal Inspector with Project and Domain Knowledge" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q68_Me> a owl:Class ;
-    rdfs:label "TBD"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved false ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q53_S> a owl:Class ;
-    rdfs:label "Accountable"@en ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> a owl:Class ;
+    rdfs:label "Consistent"@en ;
+    ns1:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
+    ns1:Definition "\"The set of requirements contains individual requirements that are unique, do not conflict with or overlap with other requirements in the set, and the units and measurement systems are homogeneous. The terminology used within the set of requirements is consistent, i.e. the same term is used throughout the set to mean the same thing.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved true ;
+    ns1:Scope "Section" ;
+    rdfs:subClassOf ns1:QualityAttribute .
+
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> a owl:Class ;
+    rdfs:label "Feasible"@en ;
+    ns1:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
+    ns1:Definition "\"The complete set of requirements can be realized within entity constraints (e.g., cost, schedule, technical) with acceptable risk.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Prgamatic" ;
+    ns1:PractitionersInvolved true ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
+
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> a owl:Class ;
+    rdfs:label "Comprehensible"@en ;
+    ns1:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
+    ns1:Definition "\"The set of requirements is written such that it is clear as to what is expected by the entity and its relation to the system of which it is a part.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved true ;
+    ns1:Scope "Section" ;
+    rdfs:subClassOf ns1:QualityAttribute .
+
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> a owl:Class ;
+    rdfs:label "Identifiability"@en ;
+    ns1:Citation "[STH+13]"@en ;
+    ns1:Definition "\"All artifacts and certain elements of the artifact are identifiable using identifier.\"" ;
+    ns1:EmpiricalEvidence true ;
+    ns1:LinguisticComplexity "Syntactic" ;
+    ns1:PractitionersInvolved true ;
+    ns1:Scope "Document" ;
+    ns1:Viewpoint "Developer" ;
+    rdfs:subClassOf ns1:QualityAttribute .
+
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> a owl:Class ;
+    rdfs:label "Correct"@en ;
     ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"An SRS is accountable if and only if, the objective of developing the software system and the purpose of software features are clearly stated.\""@en ;
+    ns1:Definition "\"An SRS is correct if, and only if, every requirement stated therein is one that the software shall meet [7].\""@en ;
     ns1:EmpiricalEvidence true ;
     ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
+    ns1:Viewpoint "Internal Inspector with Project and Domain Knowledge" ;
+    rdfs:subClassOf ns1:QualityAttribute .
+
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me> a owl:Class ;
+    rdfs:label "Quantative"@en ;
+    ns1:Citation "[TA15]"@en ;
+    ns1:EmpiricalEvidence true ;
+    ns1:LinguisticComplexity "Semantic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q57_S> a owl:Class ;
-    rdfs:label "Verifiable"@en ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> a owl:Class ;
+    rdfs:label "Freedom from ambiguity"@en ;
     ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"An SRS is verifiable if, and only if, every requirement stated therein is verifiable. A requirement is verifiable if, and only if, there exists some finite cost-effective process with which a person or machine can check that the software product meets the requirement. In general, any ambiguous requirement is not verifiable [7]. As IEEE Std. 830-1998 explains, requirements are not verifiable if they are ambiguous.\""@en ;
     ns1:EmpiricalEvidence true ;
-    ns1:LinguisticComplexity "pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Scope "Document" ;
+    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q65_S> a owl:Class ;
-    rdfs:label "Complete"@en ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> a owl:Class ;
+    rdfs:label "Consistent"@en ;
     ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"An SRS is complete if, and only if, it includes the following elements [7]: All significant requirements, whether relating to functionality, performance, design constraints, attributes, or external interfaces; Definition of the responses of the software to all realizable classes of input data in all realizable situations; Full labels and references to all figures, tables, and diagrams in the SRS and definition of all terms and units of measure;\""@en ;
+    ns1:Definition "\"An SRS is internally consistent if, and only if, no subset of individual requirements described in it conflict [7]. It is virtually impossible for third-party inspectors without domain knowledge to find inconsistencies in an SRS written in a natural language. Therefore, we do not derive new quality characteristics from this quality characteristic. We simply assign this quality characteristic to the second-stage inspection by the project.\""@en ;
     ns1:EmpiricalEvidence true ;
     ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
+    ns1:Viewpoint "Internal Inspector with Project and Domain Knowledge" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q72_S> a owl:Class ;
-    rdfs:label "Modifiable"@en ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me> a owl:Class ;
+    rdfs:label "Cross reference"@en ;
     ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"An SRS is modifiable if, and only if, ist structure and style are such that any changes to the requirements can be made easily, completely, and consistently while retaining the structure and style [7].\""@en ;
     ns1:EmpiricalEvidence true ;
+    ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Scope "Dcoument" ;
+    ns1:Scope "Document" ;
+    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q75_S> a owl:Class ;
-    rdfs:label "Traceable"@en ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me> a owl:Class ;
+    rdfs:label "Searchable"@en ;
     ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"An SRS is traceable if the origin of each of ist requirements is clear and if it facilitates the referencing of each requirement in future development or enhancement documentation [7].\""@en ;
+    ns1:Definition "\"Table of contents and index are created?\"" ;
     ns1:EmpiricalEvidence true ;
+    ns1:LinguisticComplexity "Syntactic" ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
+    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q14_> a owl:Class ;
-    rdfs:label "Verifiability and Validity"@en ;
-    AQM:Citation "[Bel12]"@en ;
-    AQM:Definition "\"A verifiable SRS must have available techniques, at an acceptable cost, used to verify that every specified requirement are satisfied by the system when built [25]. IEEE 1233 standard uses the attribute \"validatable\" to characterize requirements that have the means to prove that the system satisfies it [4]. Usually these two concepts are closely linked. Verifiability wants to ensure that system \"do the thing right” while validity wants to ensure that system \"do the right thing”.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "All people involved in the V&V process (on a people, organizational and technological dimension)" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me> a owl:Class ;
-    rdfs:label "Organized"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is organized if and only if its contents are arranged so that readers can easily locate information and logical relationships among adjacent sections is apparent. One way is to follow any of the many SRS standards [DOR90]. Certainly boiler plate sections of all SRS standards are rou~hly equivalent. Primary differences concern organization of detailed requirements. There are many ways to organize these.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me> a owl:Class ;
-    rdfs:label "Cross-Referenced"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is cross referenced if and only if cross-references are used in the SRS to relate Sections containing requirements to other sections\""@en ;
-    AQM:EmpiricalEvidence "fasle" ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me> a owl:Class ;
-    rdfs:label "Concise"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is concise if it is as short as possible without adversely affecting any other quality of the SRS.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me> a owl:Class ;
-    rdfs:label "Annotated by Relative Importance"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is annotated by relative importance if a reader can easily determine which requirements are of most importance to customers, which are next most important, etc. […] One way to achieve this is to suffix every requirement with (M), (D) and (0) to denote that this requirement is mandatory, desirable, or optional.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me> a owl:Class ;
-    rdfs:label "Annotated by Version"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is annotazed by version if a reader can easily determine which requimamts will be satisfied in which versions of the product. Both customers and designers obviously need to larow this.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Customer and designer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me> a owl:Class ;
-    rdfs:label "Not Redundant"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is redundant if the same requirement is stated more than once. […] Often redundancy can be used to increase readability of the SRS significantly. The only problem that redundancy causes is when an SRS is revised. If all occurrences of a redundant requirement are not changed then the SRS becomes inconsistent.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Semantic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me> a owl:Class ;
-    rdfs:label "Precise"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is precise if and only if (a) numeric quantities are used whenever possible, and (b) the appropriate levels of precision are used for all numeric quantities.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Semantic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me> a owl:Class ;
-    rdfs:label "Traced"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is traced if and only if the origin of each of ist requirements is clear DAV931. This implies that every requirement that has a basis is cross-reference to that basis.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q01_S> a owl:Class ;
-    rdfs:label "Functionality"@en ;
-    AQM:Citation "[ECSS-Q-HB-80-04C]"@en ;
-    AQM:Definition "\"The capability of the software product to provide functions which meet stated and implied needs when the software is used under specified conditions.\" Taken from ISO 9126, SPEC."@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved true ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q04_S> a owl:Class ;
-    rdfs:label "Maintainability"@en ;
-    AQM:Citation "[ECSS-Q-HB-80-04C]"@en ;
-    AQM:Definition "\"The ability of an item under given conditions of use, to be retained in, or restored to, a state in which it can perform a required function, when maintenance is performed under given conditions and using stated procedures and resources.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved true ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q05_S> a owl:Class ;
-    rdfs:label "Reliability"@en ;
-    AQM:Citation "[ECSS-Q-HB-80-04C]"@en ;
-    AQM:Definition "\"The capability of the software product to maintain a specified level of performance when used under specified conditions.\" Taken from ISO 9126, SPEC."@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved true ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q136_> a owl:Class ;
-    rdfs:label "Priority"@en ;
-    AQM:Citation "[HZ18]"@en ;
-    AQM:Context "Agile Requirements Engineering" ;
-    AQM:Definition "\"In agile development the priority of a requirement is very important to know, because the priority is used to plan iterations. In each iteration, the open requirements with the highest priority are detailed and subsequently developed. Priority is allowed to change as long as the requirement is open. In this way, agile development ensures that the customer receives what he needs most at any given moment. This also allows for the customer to change his/her mind and upgrade or downgrade requirements during the project by adjusting the priority attribute.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Developer and Customer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q138_> a owl:Class ;
-    rdfs:label "Non-functional Requirements"@en ;
-    AQM:Citation "[HZ18]"@en ;
-    AQM:Definition "\"Five papers ([DQ10], [FM13], [P14], [SS05], [PR09]) indicate that non-functional requirements should not be overlooked in agile development. [P14] states that ‘‘architecture criteria (performance, security, etc.)’’ should be identified for a User Story to be considered Ready.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q116_A> a owl:Class ;
-    rdfs:label "Correctness"@en ;
-    AQM:Citation "[Hal93]"@en ;
-    AQM:Definition "\"Correctness refers to an absence of errors of fact in the statement of requirement.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q121_A> a owl:Class ;
-    rdfs:label "Connectivity"@en ;
-    AQM:Citation "[Hal93]"@en ;
-    AQM:Definition "\"Connectivity refers to the property whereby all of the terms within the requirements and to word and term definitions, so causing the individual requirement to properly relate to the other requirements as a set.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Semantic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q125_A> a owl:Class ;
-    rdfs:label "Feasibility"@en ;
-    AQM:Citation "[Hal93]"@en ;
-    AQM:Definition "\"Feasibility requires that a requirement be able to be satisfied: (a) within natural physical constraints; (b) within the state-of-the-art as it applies to the project; and (c) within all other absolute constraints applying to the project.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q102_Me> a owl:Class ;
-    rdfs:label "Necessary"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The requirement defines an essential capability, characteristic, constraint and/or quality factor. If it is not included in the set of requirements, a deficiency in capability or characteristic will exist, which cannot be fulfilled by implementing other requirements. The requirement is currently applicable and has not been made obsolete by the passage of time. Requirements with planned expiration dates or applicability dates are clearly identified.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q107_Me> a owl:Class ;
-    rdfs:label "Feasible"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The requirement can be realized within system constraints (e.g., cost, schedule, technical) with acceptable risk.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q17_> a owl:Class ;
-    rdfs:label "Simplicity"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"It is the art of maximizing the amount of work not done (Daneva et al., 2013). In the context of the requirements specification activity, simplicity is to describe the requirements as simpler as possible, with few representations, models, and structures;\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q20_> a owl:Class ;
-    rdfs:label "Objectivity"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"The requirements are described in an objective manner, without long, prolix, redundant and unnecessary details to developer;\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Semantic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q37__V> a owl:Class ;
-    rdfs:label "Fragmented Information"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"The requirements are described in a fragmented manner in various artefacts that have different and complementary views;\""@en ;
-    AQM:Domain "Structure"@en ;
-    rdfs:subClassOf AQM:VariationFactor .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q53_S> a owl:Class ;
-    rdfs:label "Accountable"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"An SRS is accountable if and only if, the objective of developing the software system and the purpose of software features are clearly stated.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q62_Me> a owl:Class ;
-    rdfs:label "Freedom from ambiguity"@en ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me> a owl:Class ;
+    rdfs:label "Backward traceability"@en ;
     ns1:Citation "[TA15]"@en ;
     ns1:EmpiricalEvidence true ;
     ns1:PractitionersInvolved false ;
     ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-AQM:Control a owl:Class ;
-    rdfs:isDefinedBy "A concept is quantified, measured, and compared periodically or at certain points against defined evaluation criteria to check the fulfillment of the criteria. [KHMT09]"@en ;
-    rdfs:subClassOf AQM:Purpose .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q146_> a owl:Class ;
-    rdfs:label "Complete" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Single requirement: \"the requirement is self-contained, meaning that no parts necessary for understanding it are missing.\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q147_> a owl:Class ;
-    rdfs:label "Understandable" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Single requirement: \"the requirement is comprehensible to the target audience, meaning that the target audience can fully understand the requirement.\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q153_> a owl:Class ;
-    rdfs:label "Traceable" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Multiple requirements: \"the requirements in the work product can be traced back to their origins, forward to their implementation (in design, code, and test), and to other requirements they depend on.\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q109_Me> a owl:Class ;
-    rdfs:label "Correct"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The requirement is an accurate representation of the entity need from which it was transformed.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q19_> a owl:Class ;
-    rdfs:label "Understandability"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"The description of each requirement is easy to understand;\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q26_> a owl:Class ;
-    rdfs:label "Traceability"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"Concists of the description of the source of each requirement, as well as, the dependency relationships between requirements.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q35__V> a owl:Class ;
-    rdfs:label "Excessive Changes"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"The development team receives many requests for changes in partial versions of the application;\""@en ;
-    AQM:Domain "External"@en ;
-    rdfs:subClassOf AQM:VariationFactor .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q48_A> a owl:Class ;
-    rdfs:label "Preparation of glossary"@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved true ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q50_A> a owl:Class ;
-    rdfs:label "Precence of Identifier"@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me> a owl:Class ;
-    rdfs:label "Quantative"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Semantic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q69_Me> a owl:Class ;
-    rdfs:label "Label"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"A unique number is assigned to Figures and tables?\"" ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me> a owl:Class ;
-    rdfs:label "Cross reference"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me> a owl:Class ;
-    rdfs:label "Searchable"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"Table of contents and index are created?\"" ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me> a owl:Class ;
-    rdfs:label "Backward traceability"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved false ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q56_S> a owl:Class ;
-    rdfs:label "Unambiguous"@en ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> a owl:Class ;
+    rdfs:label "Forward traceability"@en ;
     ns1:Citation "[TA15]"@en ;
-    ns1:Definition "\"An SRS is unambiguous if, and only if, every requirement stated therein has only one interpretation [7]. It is impossible to completely remove the ambiguity from an SRS written in natural language.\""@en ;
     ns1:EmpiricalEvidence true ;
-    ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Scope "Document" ;
+    ns1:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S> a owl:Class ;
-    rdfs:label "Descriptive Completeness"@en ;
+<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> a owl:Class ;
+    rdfs:label "Achievable"@en ;
     ns1:Citation "[TA15]"@en ;
-    ns1:Definition "See related lower-level quality attributes." ;
+    ns1:Definition "\"An SRS is achievable if and only if there could exist at least one system design and implementation that correctly implements all the requirements stated in the SRS [3]. It is virtually impossible for third-party inspectors without domain knowledge to conclude if there could exist at least one possible system design.\""@en ;
     ns1:EmpiricalEvidence true ;
-    ns1:LinguisticComplexity "Syntactic" ;
+    ns1:LinguisticComplexity "Pragmatic" ;
     ns1:PractitionersInvolved false ;
-    ns1:Scope "Requirement" ;
+    ns1:Scope "Document" ;
+    ns1:Viewpoint "Internal Inspector with Project and Domain Knowledge" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q117_A> a owl:Class ;
-    rdfs:label "Completeness"@en ;
-    AQM:Citation "[Hal93]"@en ;
-    AQM:Definition "\"Completeness requires that the requirement contain all of the information necessary, including constraints and conditions, to enable the requirement to be implemented such that the need will be satisfied.\" Comprehensive dicussion on measuring completeness in the appendum of the paper."@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q119_A> a owl:Class ;
-    rdfs:label "Clarity"@en ;
-    AQM:Citation "[Hal93]"@en ;
-    AQM:Definition "\"Clarity requires that the requirement be readily understandable without semantic analysis.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q122_A> a owl:Class ;
-    rdfs:label "Singularity"@en ;
-    AQM:Citation "[Hal93]"@en ;
-    AQM:Definition "\"Singularity refers to the attribute whereby a requirement cannot sensibly be expressed as two or more requirements having different subjects, verbs and/or objects.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q106_Me> a owl:Class ;
-    rdfs:label "Singular"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The requirement states a single capability, characteristic, constraint or quality factor.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q29_> a owl:Class ;
-    rdfs:label "Completeness \"agile\""@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Context "Agile Requirements Engineering" ;
-    AQM:Definition "\"The description of a requirement is enough to be coded without the need to consult complementary sources. The completeness should be evaluated under the perception of the developer in the scope of each sprint, and not in the whole project;\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S> a owl:Class ;
-    rdfs:label "Internal Traceability"@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:Definition "\"Internal traceability is derived from “Consistent”, “Traceable”, and “Modifiable” in IEEE Std. 830. From the perspective of developer, we reorganize the three characteristics into “internal traceability”. The internal traceability requires that the items and relationship between them should be clearly identified in a SRS.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Dcoument" ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q145_> a owl:Class ;
-    rdfs:label "Unambiguous" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Single requirement: \"there is a true shared understanding of the requirement, meaning that everybody involved interprets it in the same way.\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_> a owl:Class ;
-    rdfs:label "Modifiable" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Multiple requirements: \"the work product is set up in such a way that it can be modified without degrading its quality.\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q154_> a owl:Class ;
-    rdfs:label "Conformant" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Multiple requirements: \"if there are mandatory structuring or formatting instructions, the work product must conform to them.\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q134_S> a owl:Class ;
-    rdfs:label "Uniformity"@en ;
-    AQM:Citation "[HZ18]"@en ;
-    AQM:Definition "\"criteria that pertain to a standardized style or format of the agile requirements specification\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q105_Me> a owl:Class ;
-    rdfs:label "Complete"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The requirement sufficiently describes the necessary capability, characteristic, constraint or quality factor to meet the entity need without needing other information to understand the requirement.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V> a owl:Class ;
-    rdfs:label "Late Software Validations"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"Partial software versions are nor released at the end of each development sprint, which delays the software validation;\""@en ;
-    AQM:Domain "Organizational"@en ;
-    rdfs:subClassOf AQM:VariationFactor .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S> a owl:Class ;
-    rdfs:label "Comprehensiveness"@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:Definition "\"Comprehensiveness is derived from “Unambiguous” and “Verifiable” of IEEE Std. 830. From the perspective of developers, use of standard description method, templates and terms lead to “Unambiguous” and “Verifiable”.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q45_A> a owl:Class ;
-    rdfs:label "Correspondence to project goals"@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved true ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q54_Me> a owl:Class ;
-    rdfs:label "Project objective"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Semantic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Section" ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q59_Me> a owl:Class ;
-    rdfs:label "Non-redundant"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Requirement" ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-AQM:Construct a owl:Class .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_> a owl:Class ;
-    rdfs:label "Feasibility"@en ;
-    AQM:Citation "[Bel12]"@en ;
-    AQM:Definition "\"feasibility is usually considered an extremely important requirement attribute as well. A SRS is consider feasible if all its requirements can be implemented with the available technology, human resources and budget. On the other hand, when including a requirement in the system project, it means the requirement is worthy to be included because it contributes positively to the return of that investment [20]. Feasibility evaluation depends on the present state of technology (e.g., commercially available components or new development), the customers environment (e.g., readiness or acceptance to change), and the risk or cost associated with each requirement [4].\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "All people involved in the requirement specification process (on a people, organizational and technological dimension)" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
 <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me> a owl:Class ;
     rdfs:label "Verifiable"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is verifiable if there exist finite, cost effective techniques that can be used to verify that every requirement stated therein is satisfied by the system as built.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is verifiable if there exist finite, cost effective techniques that can be used to verify that every requirement stated therein is satisfied by the system as built.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
 <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me> a owl:Class ;
     rdfs:label "Achievable"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is uchicvable if and only if there could exist at least one system design and implementation that correctly implements all the requirements stated in the SRS.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is uchicvable if and only if there could exist at least one system design and implementation that correctly implements all the requirements stated in the SRS.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
 <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me> a owl:Class ;
     rdfs:label "Modifiable"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is modifiable if its structure and style are such that any changes can be made easily, completely, and consistently [IEE84]. There are two primary reasons for modifiability: (1) needs always evolve, aud (2) the SRS, like all complex softwarerelated documents, will contain errors.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q03_C> a owl:Class ;
-    rdfs:label "Correctness"@en ;
-    AQM:Citation "[ECSS-Q-HB-80-04C]"@en ;
-    AQM:Definition "\"The degree to which a system or component is free of faults in ist specification, design and implementation\". Taken from ISO 24765, SPEC."@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q120_A> a owl:Class ;
-    rdfs:label "Non-Ambiguity"@en ;
-    AQM:Citation "[Hal93]"@en ;
-    AQM:Definition "\"Non-Ambiguity requires that there be only one semantic interpretation of the requirement.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Semantic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A> a owl:Class ;
-    rdfs:label "Modifiability"@en ;
-    AQM:Citation "[Hal93]"@en ;
-    AQM:Definition "\"Modifiability requires that: (a) necessary changes to a requirement can be made completely and consistently; and (b) the same requirement is specified only once.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me> a owl:Class ;
-    rdfs:label "Feasible"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The complete set of requirements can be realized within entity constraints (e.g., cost, schedule, technical) with acceptable risk.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Prgamatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S> a owl:Class ;
-    rdfs:label "Traceable"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"An SRS is traceable if the origin of each of ist requirements is clear and if it facilitates the referencing of each requirement in future development or enhancement documentation [7].\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me> a owl:Class ;
-    rdfs:label "Achievable"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"An SRS is achievable if and only if there could exist at least one system design and implementation that correctly implements all the requirements stated in the SRS [3]. It is virtually impossible for third-party inspectors without domain knowledge to conclude if there could exist at least one possible system design.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Internal Inspector with Project and Domain Knowledge" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me> a owl:Class ;
-    rdfs:label "Testability"@en ;
-    AQM:Citation "[BBG+06]"@en ;
-    AQM:Definition "\"the ability to test that a CBS implements what is specified in the natural language requirements specification at hand\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q148_> a owl:Class ;
-    rdfs:label "Verifiable" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Single requirement: \"the fulfillment of the requirement by an implemented system can be checked indisputably (so that stakeholders or customers can decide whether or not a requirement is fulfilled by the implemented system).\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_> a owl:Class ;
-    rdfs:label "Unique identifier"@en ;
-    AQM:Citation "[HZ18]"@en ;
-    AQM:Definition "\"Note that an unique identifier is also useful in oral communication of agile requirements. In oral communication, we need an easy and unambiguous way to refer to requirements we are discussing, whereas in written communication we could use other means such as hyper-links or paragraph numbers.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me> a owl:Class ;
-    rdfs:label "Unambiguous"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The requirement is stated in such a way so that it can be interpreted in only one way. The requirement is stated simply and is easy to understand.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q22_> a owl:Class ;
-    rdfs:label "Acceptance Criteria"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"It is the description of a criteria that supports the acceptance, or not, of a requirement;\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S> a owl:Class ;
-    rdfs:label "Confirm to Goal"@en ;
-    AQM:AggregationMethod "Sum up the measured total quality scores."@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:Definition "\"CTG is derived from “Correct” and “Ranked for importance and/or stability” in IEEE Std. 830. CTG evaluates the degree of conformance of the descriptions of a SRS to the system goals. We assume if the goals are clearly described, the developers can judge the “correctness” and “rank for importance” of the descriptions of SRS.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A> a owl:Class ;
-    rdfs:label "Templates usage"@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me> a owl:Class ;
-    rdfs:label "Template"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me> a owl:Class ;
-    rdfs:label "Correctness"@en ;
-    AQM:Citation "[BBG+06]"@en ;
-    AQM:Definition "\"(1) the lack of factual errors about the domain of the computer-based system under construction and (2) matching what the customer wants\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_> a owl:Class ;
-    rdfs:label "Clearness / Unambiguously"@en ;
-    AQM:Citation "[Bel12]"@en ;
-    AQM:Definition "\"If a requirement can only be interpreted in only one way, it may classified as unambiguous [4]. A SRS can be defined as clear or unambiguous if each of its requirements is unambiguous [25]. Yet, this definition doesn´t totally take into account the complexity of the real-world, because the interpretation is a subjective process and because there is a very different range of people involved in the requirement specification process.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "All people involved in the requirement specification process (on a people, organizational and technological dimension)" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_> a owl:Class ;
-    rdfs:label "Correctness"@en ;
-    AQM:Citation "[Bel12]"@en ;
-    AQM:Definition "\"Correctness is typically one of the most referenced attributes of a good SRS. A SRS is normally classified as correct when every requirement contributes to the satisfaction of some need[25]. Despite knowing that perfection is a goal that is usually not fully attainable, it does not mean that it should not be attempted. Whenever things are detected as incorrect, the specification should be kept updated [27]. Although IEEE standard 1233 do not explicitly talk about a correctness attribute, it underlines the importance of repeating the process of correcting the initial requirements errors or to add new requirements to enhance the systems features [4].\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "All people involved in the requirement specification process (on a people, organizational and technological dimension)" ;
-    rdfs:comment false ;
-    rdfs:subClassOf AQM:QualityAttribute .
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is modifiable if its structure and style are such that any changes can be made easily, completely, and consistently [IEE84]. There are two primary reasons for modifiability: (1) needs always evolve, aud (2) the SRS, like all complex softwarerelated documents, will contain errors.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
 <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me> a owl:Class ;
     rdfs:label "Unambiguous"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is unambiguous if and only if every requirement stated therein has only one possible interpretation [IEE84].\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is unambiguous if and only if every requirement stated therein has only one possible interpretation [IEE84].\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
 <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me> a owl:Class ;
     rdfs:label "Correct"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is correct if and only if every requirement represents something required of the system to be built [DAV93], i.e., every requirement in the SRS contributes to the satisfaction of some need.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is correct if and only if every requirement represents something required of the system to be built [DAV93], i.e., every requirement in the SRS contributes to the satisfaction of some need.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
 <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me> a owl:Class ;
     rdfs:label "Traceable"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is traceable if and only if it is written in a manner that facilitates the referencing of each individual requirement [DAV93]. During design and test it is essential to know which requirements are being supported by the component or verified by the test. Without this, it is impossible to design or test in a quality manner.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C> a owl:Class ;
-    rdfs:label "Testability"@en ;
-    AQM:Citation "[ECSS-Q-HB-80-04C]"@en ;
-    AQM:Context "SW V&V Process" ;
-    AQM:Definition "\"Extent to which an objective and feasible test can be designed to determine whether a requirement is met.\" Taken from ISO 24765."@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Development team, SW Product Assurance manager, V&V team." ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S> a owl:Class ;
-    rdfs:label "Completeness"@en ;
-    AQM:Citation "[HZ18]"@en ;
-    AQM:Context "Agile Requirements Engineering" ;
-    AQM:Definition "\"all structure elements of a single requirement should be there. Completeness In this category, we place criteria that specify elements that should be present in (the description of) the agile requirements. An example would be the rule that each requirement should have a unique identifier. Note that our definition of completeness (all structure elements of a single requirement should be there) is different from the notion of completeness as in specifying all user needs.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q139_> a owl:Class ;
-    rdfs:label "Acceptance Criteria"@en ;
-    AQM:Citation "[HZ18]"@en ;
-    AQM:Definition "\"In traditional requirements, engineering acceptance tests are often developed together with the upfront requirements specification. Agile development does not recommend writing such elaborate test documentation upfront since there is a good chance that certain requirements do not get implemented or will change, and thus, the test cases will be obsolete. To replace comprehensive upfront test documentation, agile requirements should be elaborated with acceptance criteria (in Behavior-Driven Development these acceptance criteria are even formalized according to a template).\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_> a owl:Class ;
-    rdfs:label "Understandability"@en ;
-    AQM:Citation "[HZ18]"@en ;
-    AQM:Definition "\"We have used the term Understandability to group several criteria related to the choice of wording for the requirements specification. Defining clear requirements can save a lot of time in discussion and question answering during the implementation. Two papers [DQ10, SS05] mention that this can be achieved with requirements written in the language of the customer. [PR09] states that story cards should ‘‘use language simply, consistently and concisely’’. Two more papers deem it is important to use a consistent and defined terminology throughout all requirements: [D14] and [HZ14]. [HZ14] advocates the use of a glossary for this purpose and also recommends the use of correct language (i.e., spelling- and grammar-wise). In total, five papers mention that it is important for the requirements to be unambiguous in general [D01, FM13, F04, SL09, PR09].\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_> a owl:Class ;
-    rdfs:label "Forward traceable"@en ;
-    AQM:Citation "[HZ18]"@en ;
-    AQM:Definition "\"It is important to know to which source code and test cases the requirements trace (forward traceability) to be aware where things must be changed when requirements change, since agile development embraces change as a given factor (Beck et al. 2001).\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A> a owl:Class ;
-    rdfs:label "Testability"@en ;
-    AQM:Citation "[Hal93]"@en ;
-    AQM:Definition "\"Testability refers to the existence of a finite and objective process with which to verify that the requirement has bee satisfied.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q18_> a owl:Class ;
-    rdfs:label "Clarity"@en ;
-    AQM:Citation "[MVSG18]"@en ;
-    AQM:Definition "\"The requirements are described in a clear way, without ambiguties. Each requirement can only has a single interpretation.;\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Semantic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me> a owl:Class ;
-    rdfs:label "Correct"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"An SRS is correct if, and only if, every requirement stated therein is one that the software shall meet [7].\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Internal Inspector with Project and Domain Knowledge" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S> a owl:Class ;
-    rdfs:label "Verifiable"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"An SRS is verifiable if, and only if, every requirement stated therein is verifiable. A requirement is verifiable if, and only if, there exists some finite cost-effective process with which a person or machine can check that the software product meets the requirement. In general, any ambiguous requirement is not verifiable [7]. As IEEE Std. 830-1998 explains, requirements are not verifiable if they are ambiguous.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S> a owl:Class ;
-    rdfs:label "Descriptive Completeness"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "See related lower-level quality attributes." ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S> a owl:Class ;
-    rdfs:label "Modifiable"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"An SRS is modifiable if, and only if, ist structure and style are such that any changes to the requirements can be made easily, completely, and consistently while retaining the structure and style [7].\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Dcoument" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me> a owl:Class ;
-    rdfs:label "Forward traceability"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved false ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S> a owl:Class ;
-    rdfs:label "Definiteness"@en ;
-    ns1:Citation "[TA15]"@en ;
-    ns1:EmpiricalEvidence true ;
-    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is traceable if and only if it is written in a manner that facilitates the referencing of each individual requirement [DAV93]. During design and test it is essential to know which requirements are being supported by the component or verified by the test. Without this, it is impossible to design or test in a quality manner.\""@en ;
+    ns1:EmpiricalEvidence false ;
     ns1:PractitionersInvolved false ;
     ns1:Scope "Document" ;
     rdfs:subClassOf ns1:QualityAttribute .
 
-AQM:Purpose a owl:Class ;
-    rdfs:comment "From the practical point of view, it would thus be useful to know how specific constructs map to the purposes a model can be resonably applied for. The set of the GQM Scheme is not applied here. A more practitioner-oriented classification should be used [KHMT09]."@en .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me> a owl:Class ;
-    rdfs:label "Uniguity"@en ;
-    AQM:Citation "[BBG+06]"@en ;
-    AQM:Definition "\"the lack of ambiguity in the natural language requirements specification at hand. (We have invented the word “uniguity”, i.e., one meaning, to not have to use the heavy mouthful “nonambiguity”)\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_> a owl:Class ;
-    rdfs:label "Consistent" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Multiple requirements: \"no two requirements, recorded in a single work product or in different work products, contradict each other.\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me> a owl:Class ;
-    rdfs:label "Verifiable"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The requirement is structured and worded such that its realization can be proven (verified) to the customer’s satisfaction at the level the requirements exists. Verifiability is enhanced when the requirement is measurable.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Requirement" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A> a owl:Class ;
-    rdfs:label "Identifiability"@en ;
-    AQM:Citation "[STH+13]"@en ;
-    AQM:Definition "\"All artifacts and certain elements of the artifact are identifiable using identifier.\"" ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Syntactic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Developer" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S> a owl:Class ;
-    rdfs:label "Definiteness"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me> a owl:Class ;
-    rdfs:label "Freedom from ambiguity"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:PractitionersInvolved false ;
-    AQM:Viewpoint "Defined Viewpoints in the SRS / Thrid-Party Inspector" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me> a owl:Class ;
-    rdfs:label "Consistency"@en ;
-    AQM:Citation "[BBG+06]"@en ;
-    AQM:Definition "\"the lack of contradictions and incongruities in the natural language requirements specification at hand\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_> a owl:Class ;
-    rdfs:label "Understandability"@en ;
-    AQM:Citation "[Bel12]"@en ;
-    AQM:Definition "\"The understandability of a SRS occurs if all types of SRS readers can easily comprehend the meaning of all requirements with a minimum of explanation [25]. Since SRS readers may be so diverse as customers, users, project managers, programmers, testers or business managers, must be taken a particular attention to the writing of the requirements. The natural language assumes a special importance because the majority of requirements specification are written in that way. The assurance of the readability of requirements includes the usage of simple words/phrases/concepts, the uniform arrangement and relationship, the definition of unique words/symbols/notations and the use of grammatically correct language and symbology [4].\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "All people involved in the requirement specification process (on a people, organizational and technological dimension)" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
 <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me> a owl:Class ;
     rdfs:label "Understandable"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"SRS is u ~ s t u n d a b l eif all classes of SRS readers can easily comprehend the meaning of all requirements with a minimum of explanation. Readers include customers, users, project managers (PM), software developers, and testers. In general, the first three desire ease of reading, and thus natural language is ideal. Obviously, if users and customers cannot understand the SRS, they cannot intelligently approve it, leaving success of the product outcome to chance. In general, the last two desire to ascertain precisely what the system is expected to do, and thus formal language is ideal. Obviously, if designers and testers cannot understand the SRS, it is impossible to build or test the system. The burden of creating an understandable SRS falls on the shoulders of the writers; it is not the readers' responsibility to learn everything writers know in order to digest the SRS.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Customers, users, project managers (PM), software developers, and testers" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"SRS is u ~ s t u n d a b l eif all classes of SRS readers can easily comprehend the meaning of all requirements with a minimum of explanation. Readers include customers, users, project managers (PM), software developers, and testers. In general, the first three desire ease of reading, and thus natural language is ideal. Obviously, if users and customers cannot understand the SRS, they cannot intelligently approve it, leaving success of the product outcome to chance. In general, the last two desire to ascertain precisely what the system is expected to do, and thus formal language is ideal. Obviously, if designers and testers cannot understand the SRS, it is impossible to build or test the system. The burden of creating an understandable SRS falls on the shoulders of the writers; it is not the readers' responsibility to learn everything writers know in order to digest the SRS.\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    ns1:Viewpoint "Customers, users, project managers (PM), software developers, and testers" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
 <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me> a owl:Class ;
     rdfs:label "Internally Consistent"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is internally consistent if and only if no subset of individual requirements stated therein conflict [IEE84].\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Document" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A> a owl:Class ;
-    rdfs:label "Consistency"@en ;
-    AQM:Citation "[Hal93]"@en ;
-    AQM:Definition "\"Consistency requires that the requirement not be in conflict with any other requirement, nor with any element of its own structure.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S> a owl:Class ;
-    rdfs:label "Unambiguous"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"An SRS is unambiguous if, and only if, every requirement stated therein has only one interpretation [7]. It is impossible to completely remove the ambiguity from an SRS written in natural language.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me> a owl:Class ;
-    rdfs:label "Consistent"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"An SRS is internally consistent if, and only if, no subset of individual requirements described in it conflict [7]. It is virtually impossible for third-party inspectors without domain knowledge to find inconsistencies in an SRS written in a natural language. Therefore, we do not derive new quality characteristics from this quality characteristic. We simply assign this quality characteristic to the second-stage inspection by the project.\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "Internal Inspector with Project and Domain Knowledge" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me> a owl:Class ;
-    rdfs:label "Readability"@en ;
-    AQM:Citation "[BBG+06]"@en ;
-    AQM:Definition "\"the ability for a human being to read the natural language requirements specification at hand\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_> a owl:Class ;
-    rdfs:label "Complete" ;
-    AQM:Citation "[GLSB20]"@en ;
-    AQM:Definition "Multiple requirements: \"the work product contains all relevant requirements (functional requirements, quality requirements, and constraints) that are known at this point in time and that are related to this work product.\"" ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S> a owl:Class ;
-    rdfs:label "Consistency / Correctness"@en ;
-    AQM:Citation "[HZ18]"@en ;
-    AQM:Context "Agile Requirements Engineering" ;
-    AQM:Definition "\"Consistency and correctness (VC3) indicate those criteria that state something on the quality of an individual feature request (correctness), or on the quality of the link between two or more feature requests (consistency).\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me> a owl:Class ;
-    rdfs:label "Consistent"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The set of requirements contains individual requirements that are unique, do not conflict with or overlap with other requirements in the set, and the units and measurement systems are homogeneous. The terminology used within the set of requirements is consistent, i.e. the same term is used throughout the set to mean the same thing.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me> a owl:Class ;
-    rdfs:label "Completeness"@en ;
-    AQM:Citation "[BBG+06]"@en ;
-    AQM:Definition "\"the lack of missing information in the natural language requirements specification at hand\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_> a owl:Class ;
-    rdfs:label "Completeness"@en ;
-    AQM:Citation "[Bel12]"@en ;
-    AQM:Definition "\"When everything that the software is assumed to carry out is considered it may be said that we are facing a complete SRS [25]. The Institute of Electrical and Electronics Engineers (IEEE) standard 1233 states that a completed SRS should include all customer requirements, as well as those needed for the definition of the system. Moreover, it should have all pages, tables and figures numbered, all terms defined, all units provided and all referenced material present. Finally, it should not have any to be determined (TBD) sections [4].\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    AQM:Viewpoint "All people involved in the requirement specification process (on a people, organizational and technological dimension" ;
-    rdfs:subClassOf AQM:QualityAttribute .
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is internally consistent if and only if no subset of individual requirements stated therein conflict [IEE84].\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Document" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
 <http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me> a owl:Class ;
     rdfs:label "Complete"@en ;
-    AQM:Citation "[DOJ+93]"@en ;
-    AQM:Definition "\"An SRS is complete if: Everything that the software is supposed to do is included in the SRS [DAV93]; Responses of the software to all realizable classes of input data in all realizable classes of situations is included [IEE84]; All pages numbered; all figures and tables numbered, named, and referenced, all terms defined, all units of measure provided, and all referenced material present [IEE84]; No sections marked \"To Be Determined\" [DAV93].\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me> a owl:Class ;
-    rdfs:label "Complete"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition """"The set of requirements stands alone such that it sufficiently describes the necessary capabilities, characteristics, constraints or quality factors to meet entity needs without needing further information. In addition, the set does not contain any To Be Defined (TBD), To Be Specified (TBS), or To Be Resolved (TBR) clauses. Resolution of the TBx designations may be iterative and there is an acceptable timeframe for TBx items, determined by risks and dependencies. To improve completeness, the following practices can be adopted:
-i) include all requirements types relevant to the system under consideration;
-ii) account for requirements in all stages of the life cycle; and
-iii) involve all stakeholders in the requirements elicitation, capture, and analysis activity.\""""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Section" ;
-    AQM:Viewpoint "All stakeholders" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me> a owl:Class ;
-    rdfs:label "Comprehensible"@en ;
-    AQM:Citation "[ISO/IEC/IEEE29148:2018]"@en ;
-    AQM:Definition "\"The set of requirements is written such that it is clear as to what is expected by the entity and its relation to the system of which it is a part.\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved true ;
-    AQM:Scope "Section" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-AQM:VariationFactor a owl:Class ;
-    rdfs:comment "Influence constructs with a quality focus. For example, the development effort […] is part of the quality focus of the model and the domain or developers' experiences is a variation factor that influences this concept of interest. [KHMT09]."@en ;
-    rdfs:subClassOf AQM:Construct .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S> a owl:Class ;
-    rdfs:label "Understandability"@en ;
-    AQM:Citation "[BBG+06]"@en ;
-    AQM:Definition "\"the ease by which humans understand the meaning of the natural language requirements specification at hand\""@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C> a owl:Class ;
-    rdfs:label "Completeness"@en ;
-    AQM:Citation "[ECSS-Q-HB-80-04C]"@en ;
-    AQM:Definition "\"The capability of the software to provide full implementation of the functions required.\" Taken from SPEC."@en ;
-    AQM:EmpiricalEvidence false ;
-    AQM:PractitionersInvolved true ;
-    AQM:Viewpoint "Development team, SW Product Assurance manager, V&V team." ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-<http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S> a owl:Class ;
-    rdfs:label "Complete"@en ;
-    AQM:Citation "[TA15]"@en ;
-    AQM:Definition "\"An SRS is complete if, and only if, it includes the following elements [7]: All significant requirements, whether relating to functionality, performance, design constraints, attributes, or external interfaces; Definition of the responses of the software to all realizable classes of input data in all realizable situations; Full labels and references to all figures, tables, and diagrams in the SRS and definition of all terms and units of measure;\""@en ;
-    AQM:EmpiricalEvidence true ;
-    AQM:LinguisticComplexity "Pragmatic" ;
-    AQM:PractitionersInvolved false ;
-    AQM:Scope "Document" ;
-    rdfs:subClassOf AQM:QualityAttribute .
-
-AQM:hasQualitativeRelationships a owl:ObjectProperty ;
-    rdfs:domain AQM:VariationFactor ;
-    rdfs:range AQM:QualityAttribute,
-        AQM:VariationFactor ;
-    rdfs:subPropertyOf owl:topObjectProperty .
-
-AQM:Assess a owl:Class ;
-    rdfs:isDefinedBy "A concept is quantified, measured and compared to defined evaluation criteria to check the fulfillment of the criteria. [KHMT09]"@en ;
-    rdfs:subClassOf AQM:Purpose .
-
-AQM:Specify a owl:Class ;
-    rdfs:isDefinedBy "A concept is described more precisely by refining it into sub-concepts. [KHMT09]"@en ;
-    rdfs:subClassOf AQM:Purpose .
-
-AQM:hasRefinementStructureC a owl:ObjectProperty ;
-    rdfs:domain AQM:Construct ;
-    rdfs:range AQM:Construct ;
-    rdfs:subPropertyOf owl:topObjectProperty .
-
-AQM:Measure a owl:Class ;
-    rdfs:isDefinedBy "A concept is quantified and measured to determine the actual value. [KHMT09]."@en ;
-    rdfs:subClassOf AQM:Purpose .
-
-AQM:hasPurpose a owl:ObjectProperty ;
-    rdfs:domain AQM:Construct ;
-    rdfs:range AQM:Purpose ;
-    rdfs:subPropertyOf owl:topObjectProperty .
-
-AQM:QualityAttribute a owl:Class ;
-    rdfs:subClassOf AQM:Construct .
-
-AQM:E01 a owl:ObjectProperty,
-        owl:SymmetricProperty,
-        owl:TransitiveProperty ;
-    rdfs:label "isEquivalent" ;
-    rdfs:domain AQM:Construct ;
-    rdfs:range AQM:Construct .
+    ns1:Citation "[DOJ+93]"@en ;
+    ns1:Definition "\"An SRS is complete if: Everything that the software is supposed to do is included in the SRS [DAV93]; Responses of the software to all realizable classes of input data in all realizable classes of situations is included [IEE84]; All pages numbered; all figures and tables numbered, named, and referenced, all terms defined, all units of measure provided, and all referenced material present [IEE84]; No sections marked \"To Be Determined\" [DAV93].\""@en ;
+    ns1:EmpiricalEvidence false ;
+    ns1:LinguisticComplexity "Pragmatic" ;
+    ns1:PractitionersInvolved false ;
+    ns1:Scope "Document" ;
+    rdfs:subClassOf ns1:QualityAttribute .
 
diff --git a/application/static/data/YOUR_ONTOLOGY.json b/application/static/data/YOUR_ONTOLOGY.json
index 511a1e0..6b8f1bd 100644
--- a/application/static/data/YOUR_ONTOLOGY.json
+++ b/application/static/data/YOUR_ONTOLOGY.json
@@ -2,633 +2,257 @@
   "_comment" : "Created with OWL2VOWL (version 0.3.7), http://vowl.visualdataweb.org",
   "header" : {
     "languages" : [ "en", "undefined" ],
-    "baseIris" : [ "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph", "http://www.w3.org/1999/02/22-rdf-syntax-ns", "http://www.w3.org/2002/07/owl", "http://www.w3.org/2000/01/rdf-schema", "http://www.w3.org/2001/XMLSchema", "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM" ],
+    "baseIris" : [ "http://www.w3.org/1999/02/22-rdf-syntax-ns", "http://www.w3.org/2000/01/rdf-schema", "http://www.w3.org/2001/XMLSchema", "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM" ],
     "prefixList" : {
       "owl" : "http://www.w3.org/2002/07/owl#",
-      "AQM" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#",
       "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
       "xsd" : "http://www.w3.org/2001/XMLSchema#",
       "" : "http://www.semanticweb.org/owl/owlapi/turtle#",
       "xml" : "http://www.w3.org/XML/1998/namespace",
-      "ns1" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#",
+      "ns1" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#",
       "rdfs" : "http://www.w3.org/2000/01/rdf-schema#"
     },
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM"
+    "iri" : "No IRI set"
   },
   "namespace" : [ ],
   "class" : [ {
-    "id" : "7",
-    "type" : "owl:Class"
-  }, {
-    "id" : "10",
-    "type" : "owl:Class"
-  }, {
-    "id" : "24",
-    "type" : "owl:Class"
-  }, {
-    "id" : "31",
-    "type" : "owl:Class"
-  }, {
-    "id" : "26",
-    "type" : "owl:Class"
-  }, {
-    "id" : "60",
-    "type" : "owl:Class"
-  }, {
-    "id" : "61",
-    "type" : "owl:Class"
-  }, {
-    "id" : "62",
-    "type" : "owl:Class"
-  }, {
-    "id" : "63",
-    "type" : "owl:Class"
-  }, {
-    "id" : "65",
+    "id" : "3",
     "type" : "owl:Class"
   }, {
     "id" : "4",
     "type" : "owl:Class"
-  }, {
-    "id" : "99",
-    "type" : "owl:Class"
   }, {
     "id" : "17",
     "type" : "owl:Class"
   }, {
-    "id" : "106",
-    "type" : "owl:Class"
-  }, {
-    "id" : "131",
-    "type" : "owl:Class"
-  }, {
-    "id" : "135",
-    "type" : "owl:Class"
-  }, {
-    "id" : "137",
-    "type" : "owl:Class"
-  }, {
-    "id" : "141",
-    "type" : "owl:Class"
-  }, {
-    "id" : "156",
-    "type" : "owl:Class"
-  }, {
-    "id" : "169",
-    "type" : "owl:Class"
-  }, {
-    "id" : "126",
-    "type" : "owl:Class"
-  }, {
-    "id" : "200",
-    "type" : "owl:Class"
-  }, {
-    "id" : "205",
-    "type" : "owl:Class"
-  }, {
-    "id" : "209",
-    "type" : "owl:Class"
-  }, {
-    "id" : "202",
-    "type" : "owl:Class"
-  }, {
-    "id" : "229",
-    "type" : "owl:Class"
-  }, {
-    "id" : "233",
-    "type" : "owl:Class"
-  }, {
-    "id" : "240",
-    "type" : "owl:Class"
-  }, {
-    "id" : "243",
+    "id" : "77",
     "type" : "owl:Class"
   }, {
-    "id" : "174",
+    "id" : "20",
     "type" : "owl:Class"
   }, {
-    "id" : "285",
+    "id" : "23",
     "type" : "owl:Class"
   }, {
-    "id" : "286",
+    "id" : "25",
     "type" : "owl:Class"
   }, {
-    "id" : "78",
+    "id" : "28",
     "type" : "owl:Class"
   }, {
-    "id" : "309",
+    "id" : "30",
     "type" : "owl:Class"
   }, {
-    "id" : "310",
+    "id" : "35",
     "type" : "owl:Class"
   }, {
-    "id" : "44",
+    "id" : "38",
     "type" : "owl:Class"
   }, {
-    "id" : "27",
+    "id" : "41",
     "type" : "owl:Class"
   }, {
-    "id" : "312",
+    "id" : "45",
     "type" : "owl:Class"
   }, {
     "id" : "55",
     "type" : "owl:Class"
   }, {
-    "id" : "6",
-    "type" : "owl:Class"
-  }, {
-    "id" : "228",
-    "type" : "owl:Class"
-  }, {
-    "id" : "19",
-    "type" : "owl:Class"
-  }, {
-    "id" : "218",
-    "type" : "owl:Class"
-  }, {
-    "id" : "222",
-    "type" : "owl:Class"
-  }, {
-    "id" : "208",
-    "type" : "owl:Class"
-  }, {
-    "id" : "155",
-    "type" : "owl:Class"
-  }, {
-    "id" : "254",
-    "type" : "owl:Class"
-  }, {
-    "id" : "33",
-    "type" : "owl:Class"
-  }, {
-    "id" : "119",
-    "type" : "owl:Class"
-  }, {
-    "id" : "425",
-    "type" : "owl:Class"
-  }, {
-    "id" : "176",
-    "type" : "owl:Class"
-  }, {
-    "id" : "466",
-    "type" : "owl:Class"
-  }, {
-    "id" : "283",
-    "type" : "owl:Class"
-  }, {
-    "id" : "373",
-    "type" : "owl:Class"
-  }, {
-    "id" : "308",
-    "type" : "owl:Class"
-  }, {
-    "id" : "76",
-    "type" : "owl:Class"
-  }, {
-    "id" : "454",
-    "type" : "owl:Class"
-  }, {
-    "id" : "418",
-    "type" : "owl:Class"
-  }, {
-    "id" : "49",
+    "id" : "56",
     "type" : "owl:Class"
   }, {
-    "id" : "101",
+    "id" : "58",
     "type" : "owl:Class"
   }, {
-    "id" : "57",
+    "id" : "64",
     "type" : "owl:Class"
   }, {
-    "id" : "269",
+    "id" : "66",
     "type" : "owl:Class"
   }, {
     "id" : "9",
     "type" : "owl:Class"
   }, {
-    "id" : "175",
-    "type" : "owl:Class"
-  }, {
-    "id" : "165",
-    "type" : "owl:Class"
-  }, {
-    "id" : "67",
-    "type" : "owl:Class"
-  }, {
-    "id" : "211",
-    "type" : "owl:Class"
-  }, {
-    "id" : "197",
-    "type" : "owl:Class"
-  }, {
-    "id" : "292",
-    "type" : "owl:Class"
-  }, {
-    "id" : "146",
-    "type" : "owl:Class"
-  }, {
-    "id" : "128",
+    "id" : "15",
     "type" : "owl:Class"
   }, {
-    "id" : "554",
+    "id" : "22",
     "type" : "owl:Class"
   }, {
-    "id" : "320",
+    "id" : "29",
     "type" : "owl:Class"
   }, {
-    "id" : "506",
+    "id" : "36",
     "type" : "owl:Class"
   }, {
-    "id" : "637",
+    "id" : "37",
     "type" : "owl:Class"
   }, {
-    "id" : "639",
+    "id" : "43",
     "type" : "owl:Class"
   }, {
-    "id" : "133",
+    "id" : "44",
     "type" : "owl:Class"
   }, {
-    "id" : "375",
+    "id" : "49",
     "type" : "owl:Class"
   }, {
-    "id" : "82",
+    "id" : "51",
     "type" : "owl:Class"
   }, {
-    "id" : "485",
+    "id" : "53",
     "type" : "owl:Class"
   }, {
-    "id" : "396",
+    "id" : "62",
     "type" : "owl:Class"
   }, {
-    "id" : "74",
+    "id" : "63",
     "type" : "owl:Class"
   }, {
-    "id" : "235",
+    "id" : "65",
     "type" : "owl:Class"
   }, {
-    "id" : "474",
+    "id" : "69",
     "type" : "owl:Class"
   }, {
-    "id" : "445",
+    "id" : "71",
     "type" : "owl:Class"
   }, {
-    "id" : "237",
+    "id" : "7",
     "type" : "owl:Class"
   }, {
-    "id" : "173",
+    "id" : "10",
     "type" : "owl:Class"
   }, {
-    "id" : "120",
+    "id" : "11",
     "type" : "owl:Class"
   }, {
     "id" : "13",
     "type" : "owl:Class"
   }, {
-    "id" : "30",
-    "type" : "owl:Class"
-  }, {
-    "id" : "189",
-    "type" : "owl:Class"
-  }, {
-    "id" : "300",
-    "type" : "owl:Class"
-  }, {
-    "id" : "183",
+    "id" : "1",
     "type" : "owl:Class"
   }, {
-    "id" : "185",
+    "id" : "14",
     "type" : "owl:Class"
   }, {
-    "id" : "158",
+    "id" : "16",
     "type" : "owl:Class"
   }, {
-    "id" : "140",
+    "id" : "18",
     "type" : "owl:Class"
   }, {
-    "id" : "322",
+    "id" : "31",
     "type" : "owl:Class"
   }, {
-    "id" : "645",
+    "id" : "32",
     "type" : "owl:Class"
   }, {
-    "id" : "646",
+    "id" : "33",
     "type" : "owl:Class"
   }, {
-    "id" : "341",
+    "id" : "34",
     "type" : "owl:Class"
   }, {
-    "id" : "647",
+    "id" : "40",
     "type" : "owl:Class"
   }, {
-    "id" : "654",
-    "type" : "owl:Thing"
-  }, {
-    "id" : "655",
-    "type" : "owl:Thing"
-  }, {
-    "id" : "326",
+    "id" : "46",
     "type" : "owl:Class"
   }, {
-    "id" : "239",
+    "id" : "48",
     "type" : "owl:Class"
   }, {
-    "id" : "640",
+    "id" : "50",
     "type" : "owl:Class"
   }, {
-    "id" : "352",
+    "id" : "52",
     "type" : "owl:Class"
   }, {
-    "id" : "666",
+    "id" : "80",
     "type" : "owl:Class"
   }, {
-    "id" : "653",
+    "id" : "54",
     "type" : "owl:Class"
   }, {
-    "id" : "403",
+    "id" : "6",
     "type" : "owl:Class"
   }, {
-    "id" : "80",
+    "id" : "57",
     "type" : "owl:Class"
   }, {
-    "id" : "345",
+    "id" : "59",
     "type" : "owl:Class"
   }, {
-    "id" : "461",
+    "id" : "60",
     "type" : "owl:Class"
   }, {
-    "id" : "11",
+    "id" : "68",
     "type" : "owl:Class"
   }, {
-    "id" : "442",
+    "id" : "8",
     "type" : "owl:Class"
   }, {
-    "id" : "407",
+    "id" : "12",
     "type" : "owl:Class"
   }, {
-    "id" : "411",
+    "id" : "19",
     "type" : "owl:Class"
   }, {
-    "id" : "59",
+    "id" : "21",
     "type" : "owl:Class"
   }, {
-    "id" : "261",
+    "id" : "24",
     "type" : "owl:Class"
   }, {
-    "id" : "232",
+    "id" : "26",
     "type" : "owl:Class"
   }, {
-    "id" : "318",
+    "id" : "27",
     "type" : "owl:Class"
   }, {
-    "id" : "163",
+    "id" : "39",
     "type" : "owl:Class"
   }, {
-    "id" : "203",
+    "id" : "2",
     "type" : "owl:Class"
   }, {
-    "id" : "86",
+    "id" : "42",
     "type" : "owl:Class"
   }, {
-    "id" : "199",
+    "id" : "47",
     "type" : "owl:Class"
   }, {
-    "id" : "181",
+    "id" : "61",
     "type" : "owl:Class"
   }, {
-    "id" : "148",
+    "id" : "67",
     "type" : "owl:Class"
   }, {
-    "id" : "656",
-    "type" : "owl:Class"
-  }, {
-    "id" : "747",
-    "type" : "owl:Class"
-  }, {
-    "id" : "134",
-    "type" : "owl:Class"
-  }, {
-    "id" : "749",
-    "type" : "owl:Class"
-  }, {
-    "id" : "731",
-    "type" : "owl:Class"
-  }, {
-    "id" : "306",
-    "type" : "owl:Class"
-  }, {
-    "id" : "85",
-    "type" : "owl:Class"
-  }, {
-    "id" : "70",
-    "type" : "owl:Class"
-  }, {
-    "id" : "294",
-    "type" : "owl:Class"
-  }, {
-    "id" : "289",
-    "type" : "owl:Class"
-  }, {
-    "id" : "272",
-    "type" : "owl:Class"
-  }, {
-    "id" : "246",
-    "type" : "owl:Class"
-  }, {
-    "id" : "438",
-    "type" : "owl:Class"
-  }, {
-    "id" : "167",
-    "type" : "owl:Class"
-  }, {
-    "id" : "493",
-    "type" : "owl:Class"
-  }, {
-    "id" : "53",
-    "type" : "owl:Class"
-  }, {
-    "id" : "40",
-    "type" : "owl:Class"
-  }, {
-    "id" : "21",
-    "type" : "owl:Class"
-  }, {
-    "id" : "275",
-    "type" : "owl:Class"
-  }, {
-    "id" : "302",
-    "type" : "owl:Class"
-  }, {
-    "id" : "143",
-    "type" : "owl:Class"
-  }, {
-    "id" : "124",
-    "type" : "owl:Class"
-  }, {
-    "id" : "150",
-    "type" : "owl:Class"
-  }, {
-    "id" : "138",
-    "type" : "owl:Class"
-  }, {
-    "id" : "500",
-    "type" : "owl:Class"
-  }, {
-    "id" : "836",
-    "type" : "owl:Class"
-  }, {
-    "id" : "304",
-    "type" : "owl:Class"
-  }, {
-    "id" : "325",
-    "type" : "owl:Class"
-  }, {
-    "id" : "2",
-    "type" : "owl:Class"
-  }, {
-    "id" : "519",
-    "type" : "owl:Class"
-  }, {
-    "id" : "194",
-    "type" : "owl:Class"
-  }, {
-    "id" : "171",
-    "type" : "owl:Class"
-  }, {
-    "id" : "102",
-    "type" : "owl:Class"
-  }, {
-    "id" : "281",
-    "type" : "owl:Class"
-  }, {
-    "id" : "414",
-    "type" : "owl:Class"
-  }, {
-    "id" : "416",
-    "type" : "owl:Class"
-  }, {
-    "id" : "35",
-    "type" : "owl:Class"
-  }, {
-    "id" : "651",
-    "type" : "owl:Class"
-  }, {
-    "id" : "192",
-    "type" : "owl:Class"
-  }, {
-    "id" : "152",
-    "type" : "owl:Class"
-  }, {
-    "id" : "328",
-    "type" : "owl:Class"
-  }, {
-    "id" : "72",
-    "type" : "owl:Class"
-  }, {
-    "id" : "130",
-    "type" : "owl:Class"
-  }, {
-    "id" : "748",
-    "type" : "owl:Class"
-  }, {
-    "id" : "424",
-    "type" : "owl:Class"
-  }, {
-    "id" : "680",
-    "type" : "owl:Class"
-  }, {
-    "id" : "476",
-    "type" : "owl:Class"
-  }, {
-    "id" : "248",
-    "type" : "owl:Class"
-  }, {
-    "id" : "172",
-    "type" : "owl:Class"
-  }, {
-    "id" : "354",
-    "type" : "owl:Class"
-  }, {
-    "id" : "338",
-    "type" : "owl:Class"
-  }, {
-    "id" : "330",
-    "type" : "owl:Class"
-  }, {
-    "id" : "363",
-    "type" : "owl:Class"
-  }, {
-    "id" : "358",
-    "type" : "owl:Class"
-  }, {
-    "id" : "451",
-    "type" : "owl:Class"
-  }, {
-    "id" : "498",
-    "type" : "owl:Class"
-  }, {
-    "id" : "47",
-    "type" : "owl:Class"
-  }, {
-    "id" : "51",
-    "type" : "owl:Class"
-  }, {
-    "id" : "1",
-    "type" : "owl:Class"
-  }, {
-    "id" : "264",
-    "type" : "owl:Class"
-  }, {
-    "id" : "15",
-    "type" : "owl:Class"
-  }, {
-    "id" : "162",
-    "type" : "owl:Class"
-  }, {
-    "id" : "179",
-    "type" : "owl:Class"
-  }, {
-    "id" : "296",
-    "type" : "owl:Class"
-  }, {
-    "id" : "187",
-    "type" : "owl:Class"
-  }, {
-    "id" : "277",
-    "type" : "owl:Class"
-  }, {
-    "id" : "160",
-    "type" : "owl:Class"
-  }, {
-    "id" : "22",
-    "type" : "owl:Class"
-  }, {
-    "id" : "644",
-    "type" : "owl:Class"
-  }, {
-    "id" : "315",
-    "type" : "owl:Class"
-  }, {
-    "id" : "170",
-    "type" : "owl:Class"
-  }, {
-    "id" : "638",
-    "type" : "owl:Class"
-  }, {
-    "id" : "68",
-    "type" : "owl:Class"
-  }, {
-    "id" : "478",
+    "id" : "70",
     "type" : "owl:Class"
   } ],
   "classAttribute" : [ {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q49_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
+      "Context" : [ {
+        "identifier" : "Context",
+        "language" : "undefined",
+        "value" : "SW V&V Process",
+        "type" : "label"
+      } ],
+      "Scope" : [ {
+        "identifier" : "Scope",
+        "language" : "undefined",
+        "value" : "Document",
+        "type" : "label"
+      } ],
       "Viewpoint" : [ {
         "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "Developer",
+        "value" : "Development team, SW Product Assurance manager, V&V team.",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -637,30 +261,59 @@
         "value" : "true",
         "type" : "label"
       } ],
+      "Definition" : [ {
+        "identifier" : "Definition",
+        "language" : "en",
+        "value" : "\"Extent to which an objective and feasible test can be designed to determine whether a requirement is met.\" Taken from ISO 24765.",
+        "type" : "label"
+      } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[STH+13]",
+        "value" : "[ECSS-Q-HB-80-04C]",
+        "type" : "label"
+      } ],
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[STH+13]_Q49_A",
-      "en" : "Presence of listed artifacts"
+      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q07_C",
+      "en" : "Testability"
     },
-    "id" : "7",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "3",
+    "superClasses" : [ "4" ]
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#QualityAttribute",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "instances" : 0,
+    "label" : {
+      "IRI-based" : "QualityAttribute"
+    },
+    "subClasses" : [ "7", "8", "9", "3", "10", "11", "12", "13", "1", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "6", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71" ],
+    "attributes" : [ "external" ],
+    "id" : "4"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q55_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
+      "Scope" : [ {
+        "identifier" : "Scope",
+        "language" : "undefined",
+        "value" : "Document",
+        "type" : "label"
+      } ],
       "Viewpoint" : [ {
         "identifier" : "Viewpoint",
         "language" : "undefined",
@@ -673,12 +326,24 @@
         "value" : "false",
         "type" : "label"
       } ],
+      "Definition" : [ {
+        "identifier" : "Definition",
+        "language" : "undefined",
+        "value" : "\"Table of contents and index are created?\"",
+        "type" : "label"
+      } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
         "value" : "[TA15]",
         "type" : "label"
       } ],
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Syntactic",
+        "type" : "label"
+      } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
@@ -687,87 +352,103 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q55_Me",
-      "en" : "Purpose of feature"
+      "IRI-based" : "[TA15]_Q74_Me",
+      "en" : "Searchable"
     },
     "attributes" : [ "external" ],
-    "id" : "10",
-    "superClasses" : [ "11" ]
+    "id" : "17",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q18_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Control",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
+    "label" : {
+      "IRI-based" : "Control"
+    },
+    "attributes" : [ "external" ],
+    "id" : "77"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "instances" : 0,
+    "annotations" : {
+      "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"The requirements are described in a clear way, without ambiguties. Each requirement can only has a single interpretation.;\"",
+        "value" : "\"Note that an unique identifier is also useful in oral communication of agile requirements. In oral communication, we need an easy and unambiguous way to refer to requirements we are discussing, whereas in written communication we could use other means such as hyper-links or paragraph numbers.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[MVSG18]",
+        "value" : "[HZ18]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Semantic",
+        "value" : "Syntactic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[MVSG18]_Q18_",
-      "en" : "Clarity"
+      "IRI-based" : "[HZ18]_Q137_",
+      "en" : "Unique identifier"
     },
-    "id" : "24",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "20",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Document",
+        "type" : "label"
+      } ],
+      "Viewpoint" : [ {
+        "identifier" : "Viewpoint",
+        "language" : "undefined",
+        "value" : "All people involved in the requirement specification process (on a people, organizational and technological dimension)",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"The requirement is stated in such a way so that it can be interpreted in only one way. The requirement is stated simply and is easy to understand.\"",
+        "value" : "\"If a requirement can only be interpreted in only one way, it may classified as unambiguous [4]. A SRS can be defined as clear or unambiguous if each of its requirements is unambiguous [25]. Yet, this definition doesn´t totally take into account the complexity of the real-world, because the interpretation is a subjective process and because there is a very different range of people involved in the requirement specification process.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
+        "value" : "[Bel12]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -784,13 +465,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q104_Me",
-      "en" : "Unambiguous"
+      "IRI-based" : "[Bel12]_Q10_",
+      "en" : "Clearness / Unambiguously"
     },
-    "id" : "31",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "23",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -800,12 +482,6 @@
         "value" : "Document",
         "type" : "label"
       } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "All people involved in the requirement specification process (on a people, organizational and technological dimension)",
-        "type" : "label"
-      } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
@@ -815,19 +491,13 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"If a requirement can only be interpreted in only one way, it may classified as unambiguous [4]. A SRS can be defined as clear or unambiguous if each of its requirements is unambiguous [25]. Yet, this definition doesn´t totally take into account the complexity of the real-world, because the interpretation is a subjective process and because there is a very different range of people involved in the requirement specification process.\"",
+        "value" : "\"An SRS is traceable if and only if it is written in a manner that facilitates the referencing of each individual requirement [DAV93]. During design and test it is essential to know which requirements are being supported by the component or verified by the test. Without this, it is impossible to design or test in a quality manner.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[Bel12]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -838,11 +508,12 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Bel12]_Q10_",
-      "en" : "Clearness / Unambiguously"
+      "IRI-based" : "[DOJ+93]_Q89_Me",
+      "en" : "Traceable"
     },
-    "id" : "26",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "25",
+    "superClasses" : [ "4" ]
   }, {
     "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
@@ -889,8 +560,9 @@
       "IRI-based" : "[BBG+06]_Q132_Me",
       "en" : "Correctness"
     },
-    "id" : "60",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "28",
+    "superClasses" : [ "4" ]
   }, {
     "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q17_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
@@ -937,13 +609,20 @@
       "IRI-based" : "[MVSG18]_Q17_",
       "en" : "Simplicity"
     },
-    "id" : "61",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "30",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q67_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q136_",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
+      "Context" : [ {
+        "identifier" : "Context",
+        "language" : "undefined",
+        "value" : "Agile Requirements Engineering",
+        "type" : "label"
+      } ],
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
@@ -953,7 +632,7 @@
       "Viewpoint" : [ {
         "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "Internal Inspector with Project and Domain Knowledge",
+        "value" : "Developer and Customer",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -964,14 +643,14 @@
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "\"All significant requirements, whether relating to functionality, performance, design constraints, attributes, or external interfaces; Definition of the responses of the software to all realizable classes of input data in all realizable situations.\"",
+        "language" : "en",
+        "value" : "\"In agile development the priority of a requirement is very important to know, because the priority is used to plan iterations. In each iteration, the open requirements with the highest priority are detailed and subsequently developed. Priority is allowed to change as long as the requirement is open. In this way, agile development ensures that the customer receives what he needs most at any given moment. This also allows for the customer to change his/her mind and upgrade or downgrade requirements during the project by adjusting the priority attribute.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[TA15]",
+        "value" : "[HZ18]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -983,26 +662,26 @@
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q67_Me",
-      "en" : "Requirement Completeness"
+      "IRI-based" : "[HZ18]_Q136_",
+      "en" : "Priority"
     },
     "attributes" : [ "external" ],
-    "id" : "62",
-    "superClasses" : [ "11" ]
+    "id" : "35",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q68_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
+      "Scope" : [ {
+        "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -1011,34 +690,47 @@
         "value" : "false",
         "type" : "label"
       } ],
+      "Definition" : [ {
+        "identifier" : "Definition",
+        "language" : "en",
+        "value" : "\"An SRS is redundant if the same requirement is stated more than once. […] Often redundancy can be used to increase readability of the SRS significantly. The only problem that redundancy causes is when an SRS is revised. If all occurrences of a redundant requirement are not changed then the SRS becomes inconsistent.\"",
+        "type" : "label"
+      } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[TA15]",
+        "value" : "[DOJ+93]",
+        "type" : "label"
+      } ],
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Semantic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q68_Me",
-      "en" : "TBD"
+      "IRI-based" : "[DOJ+93]_Q95_Me",
+      "en" : "Not Redundant"
     },
-    "id" : "63",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "38",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
+      "Viewpoint" : [ {
+        "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "Document",
+        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -1047,39 +739,28 @@
         "value" : "false",
         "type" : "label"
       } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is internally consistent if and only if no subset of individual requirements stated therein conflict [IEE84].\"",
-        "type" : "label"
-      } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Document",
+        "value" : "[TA15]",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q84_Me",
-      "en" : "Internally Consistent"
+      "IRI-based" : "[TA15]_Q62_Me",
+      "en" : "Freedom from ambiguity"
     },
-    "id" : "65",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "41",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -1098,19 +779,19 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"Modifiability requires that: (a) necessary changes to a requirement can be made completely and consistently; and (b) the same requirement is specified only once.\"",
+        "value" : "\"An SRS is internally consistent if and only if no subset of individual requirements stated therein conflict [IEE84].\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[Hal93]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Pragmatic",
+        "value" : "Document",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -1121,20 +802,21 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Hal93]_Q124_A",
-      "en" : "Modifiability"
+      "IRI-based" : "[DOJ+93]_Q84_Me",
+      "en" : "Internally Consistent"
     },
-    "id" : "4",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "45",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q72_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Dcoument",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -1146,56 +828,56 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An SRS is modifiable if, and only if, ist structure and style are such that any changes to the requirements can be made easily, completely, and consistently while retaining the structure and style [7].\"",
+        "value" : "\"An SRS is modifiable if its structure and style are such that any changes can be made easily, completely, and consistently [IEE84]. There are two primary reasons for modifiability: (1) needs always evolve, aud (2) the SRS, like all complex softwarerelated documents, will contain errors.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[TA15]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q72_S",
+      "IRI-based" : "[DOJ+93]_Q90_Me",
       "en" : "Modifiable"
     },
     "attributes" : [ "external" ],
-    "id" : "99",
-    "superClasses" : [ "11" ]
+    "id" : "55",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q19_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"The description of each requirement is easy to understand;\"",
+        "value" : "\"Modifiability requires that: (a) necessary changes to a requirement can be made completely and consistently; and (b) the same requirement is specified only once.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[MVSG18]",
+        "value" : "[Hal93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -1207,73 +889,99 @@
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[MVSG18]_Q19_",
-      "en" : "Understandability"
+      "IRI-based" : "[Hal93]_Q124_A",
+      "en" : "Modifiability"
     },
-    "id" : "17",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "56",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q06_S",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
+      "Scope" : [ {
+        "identifier" : "Scope",
+        "language" : "undefined",
+        "value" : "Document",
+        "type" : "label"
+      } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"System state where an acceptable level of risk with respect to fatality, injury or occupational illness, damage to launcher hardware or launch site facilities, damage to an element of an interfacing manned flight system, the main functions of a flight system itself, pollution of the environment, atmosphere or outer space, and damage to public or private property.\"",
+        "value" : "\"An SRS is complete if, and only if, it includes the following elements [7]: All significant requirements, whether relating to functionality, performance, design constraints, attributes, or external interfaces; Definition of the responses of the software to all realizable classes of input data in all realizable situations; Full labels and references to all figures, tables, and diagrams in the SRS and definition of all terms and units of measure;\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[ECSS-Q-HB-80-04C]",
+        "value" : "[TA15]",
+        "type" : "label"
+      } ],
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q06_S",
-      "en" : "Suitability for Safety"
+      "IRI-based" : "[TA15]_Q65_S",
+      "en" : "Complete"
     },
-    "id" : "106",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "58",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q47_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
+      "Scope" : [ {
+        "identifier" : "Scope",
+        "language" : "undefined",
+        "value" : "Document",
+        "type" : "label"
+      } ],
       "Viewpoint" : [ {
         "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "Developer",
+        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[STH+13]",
+        "value" : "[TA15]",
+        "type" : "label"
+      } ],
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -1284,44 +992,39 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[STH+13]_Q47_A",
-      "en" : "Standard description usage"
+      "IRI-based" : "[TA15]_Q73_Me",
+      "en" : "Cross reference"
     },
-    "id" : "131",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "64",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Customers, users, project managers (PM), software developers, and testers",
+        "value" : "Section",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"SRS is u ~ s t u n d a b l eif all classes of SRS readers can easily comprehend the meaning of all requirements with a minimum of explanation. Readers include customers, users, project managers (PM), software developers, and testers. In general, the first three desire ease of reading, and thus natural language is ideal. Obviously, if users and customers cannot understand the SRS, they cannot intelligently approve it, leaving success of the product outcome to chance. In general, the last two desire to ascertain precisely what the system is expected to do, and thus formal language is ideal. Obviously, if designers and testers cannot understand the SRS, it is impossible to build or test the system. The burden of creating an understandable SRS falls on the shoulders of the writers; it is not the readers' responsibility to learn everything writers know in order to digest the SRS.\"",
+        "language" : "undefined",
+        "value" : "Multiple requirements: \"no two requirements, recorded in a single work product or in different work products, contradict each other.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[DOJ+93]",
+        "value" : "[GLSB20]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -1338,56 +1041,27 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q82_Me",
-      "en" : "Understandable"
+      "IRI-based" : "[Gli20]_Q149_",
+      "undefined" : "Consistent"
     },
-    "id" : "135",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "66",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q36__V",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The description of the requirements is outdated, no longer corresponds to the needs requested by the customer;\", \"An outdated SRS jeopardizes the quality and entails more rework for the team.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
+      "Context" : [ {
+        "identifier" : "Context",
+        "language" : "undefined",
+        "value" : "Agile Requirements Engineering",
         "type" : "label"
       } ],
-      "Domain" : [ {
-        "identifier" : "Domain",
-        "language" : "en",
-        "value" : "Content",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q36__V",
-      "en" : "Outdated"
-    },
-    "id" : "137",
-    "superClasses" : [ "138" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q14_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "All people involved in the V&V process (on a people, organizational and technological dimension)",
+        "value" : "Section",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -1399,13 +1073,13 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"A verifiable SRS must have available techniques, at an acceptable cost, used to verify that every specified requirement are satisfied by the system when built [25]. IEEE 1233 standard uses the attribute \"validatable\" to characterize requirements that have the means to prove that the system satisfies it [4]. Usually these two concepts are closely linked. Verifiability wants to ensure that system \"do the thing right” while validity wants to ensure that system \"do the right thing”.\"",
+        "value" : "\"Consistency and correctness (VC3) indicate those criteria that state something on the quality of an individual feature request (correctness), or on the quality of the link between two or more feature requests (consistency).\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[Bel12]",
+        "value" : "[HZ18]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -1422,62 +1096,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Bel12]_Q14_",
-      "en" : "Verifiability and Validity"
-    },
-    "id" : "141",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q77_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q77_Me",
-      "en" : "Forward traceability"
+      "IRI-based" : "[HZ18]_Q135_S",
+      "en" : "Consistency / Correctness"
     },
     "attributes" : [ "external" ],
-    "id" : "156",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Purpose",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "label" : {
-      "IRI-based" : "Purpose"
-    },
-    "subClasses" : [ "22", "170", "171", "172", "173", "174", "175", "120", "176" ],
-    "comment" : {
-      "en" : "From the practical point of view, it would thus be useful to know how specific constructs map to the purposes a model can be resonably applied for. The set of the GQM Scheme is not applied here. A more practitioner-oriented classification should be used [KHMT09]."
-    },
-    "id" : "169"
+    "id" : "9",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -1490,7 +1116,7 @@
       "Viewpoint" : [ {
         "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "All people involved in the requirement specification process (on a people, organizational and technological dimension)",
+        "value" : "Customers, users, project managers (PM), software developers, and testers",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -1502,13 +1128,13 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"The understandability of a SRS occurs if all types of SRS readers can easily comprehend the meaning of all requirements with a minimum of explanation [25]. Since SRS readers may be so diverse as customers, users, project managers, programmers, testers or business managers, must be taken a particular attention to the writing of the requirements. The natural language assumes a special importance because the majority of requirements specification are written in that way. The assurance of the readability of requirements includes the usage of simple words/phrases/concepts, the uniform arrangement and relationship, the definition of unique words/symbols/notations and the use of grammatically correct language and symbology [4].\"",
+        "value" : "\"SRS is u ~ s t u n d a b l eif all classes of SRS readers can easily comprehend the meaning of all requirements with a minimum of explanation. Readers include customers, users, project managers (PM), software developers, and testers. In general, the first three desire ease of reading, and thus natural language is ideal. Obviously, if users and customers cannot understand the SRS, they cannot intelligently approve it, leaving success of the product outcome to chance. In general, the last two desire to ascertain precisely what the system is expected to do, and thus formal language is ideal. Obviously, if designers and testers cannot understand the SRS, it is impossible to build or test the system. The burden of creating an understandable SRS falls on the shoulders of the writers; it is not the readers' responsibility to learn everything writers know in order to digest the SRS.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[Bel12]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -1525,20 +1151,27 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Bel12]_Q13_",
-      "en" : "Understandability"
+      "IRI-based" : "[DOJ+93]_Q82_Me",
+      "en" : "Understandable"
     },
-    "id" : "126",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "15",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q106_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Section",
+        "type" : "label"
+      } ],
+      "Viewpoint" : [ {
+        "identifier" : "Viewpoint",
+        "language" : "undefined",
+        "value" : "All stakeholders",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -1550,7 +1183,7 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"The requirement states a single capability, characteristic, constraint or quality factor.\"",
+        "value" : "\"The set of requirements stands alone such that it sufficiently describes the necessary capabilities, characteristics, constraints or quality factors to meet entity needs without needing further information. In addition, the set does not contain any To Be Defined (TBD), To Be Specified (TBS), or To Be Resolved (TBR) clauses. Resolution of the TBx designations may be iterative and there is an acceptable timeframe for TBx items, determined by risks and dependencies. To improve completeness, the following practices can be adopted:\ni) include all requirements types relevant to the system under consideration;\nii) account for requirements in all stages of the life cycle; and\niii) involve all stakeholders in the requirements elicitation, capture, and analysis activity.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
@@ -1573,13 +1206,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q106_Me",
-      "en" : "Singular"
+      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q111_Me",
+      "en" : "Complete"
     },
-    "id" : "200",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "22",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -1592,45 +1226,49 @@
       "Viewpoint" : [ {
         "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "All people involved in the requirement specification process (on a people, organizational and technological dimension)",
+        "value" : "Developer",
+        "type" : "label"
+      } ],
+      "PractitionersInvolved" : [ {
+        "identifier" : "PractitionersInvolved",
+        "language" : "undefined",
+        "value" : "true",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Correctness is typically one of the most referenced attributes of a good SRS. A SRS is normally classified as correct when every requirement contributes to the satisfaction of some need[25]. Despite knowing that perfection is a goal that is usually not fully attainable, it does not mean that it should not be attempted. Whenever things are detected as incorrect, the specification should be kept updated [27]. Although IEEE standard 1233 do not explicitly talk about a correctness attribute, it underlines the importance of repeating the process of correcting the initial requirements errors or to add new requirements to enhance the systems features [4].\"",
+        "language" : "undefined",
+        "value" : "\"All artifacts and certain elements of the artifact are identifiable using identifier.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[Bel12]",
+        "value" : "[STH+13]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Pragmatic",
+        "value" : "Syntactic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[Bel12]_Q12_",
-      "en" : "Correctness"
-    },
-    "comment" : {
-      "undefined" : "false"
+      "IRI-based" : "[STH+13]_Q51_A",
+      "en" : "Identifiability"
     },
-    "id" : "205",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "29",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -1643,7 +1281,7 @@
       "Viewpoint" : [ {
         "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "Customer and designer",
+        "value" : "All people involved in the requirement specification process (on a people, organizational and technological dimension)",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -1655,19 +1293,19 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An SRS is annotazed by version if a reader can easily determine which requimamts will be satisfied in which versions of the product. Both customers and designers obviously need to larow this.\"",
+        "value" : "\"The understandability of a SRS occurs if all types of SRS readers can easily comprehend the meaning of all requirements with a minimum of explanation [25]. Since SRS readers may be so diverse as customers, users, project managers, programmers, testers or business managers, must be taken a particular attention to the writing of the requirements. The natural language assumes a special importance because the majority of requirements specification are written in that way. The assurance of the readability of requirements includes the usage of simple words/phrases/concepts, the uniform arrangement and relationship, the definition of unique words/symbols/notations and the use of grammatically correct language and symbology [4].\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[DOJ+93]",
+        "value" : "[Bel12]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Syntactic",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -1678,38 +1316,39 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q94_Me",
-      "en" : "Annotated by Version"
+      "IRI-based" : "[Bel12]_Q13_",
+      "en" : "Understandability"
     },
-    "id" : "209",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "36",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q08_S",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Global",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"Extent to which planned activities are realized and planned results achieved.\"",
+        "value" : "\"An SRS is traced if and only if the origin of each of ist requirements is clear DAV931. This implies that every requirement that has a basis is cross-reference to that basis.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[ECSS-Q-HB-80-04C]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -1720,13 +1359,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q08_S",
-      "en" : "Software Development Effectiveness"
+      "IRI-based" : "[DOJ+93]_Q99_Me",
+      "en" : "Traced"
     },
-    "id" : "202",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "37",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q88_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -1736,12 +1376,6 @@
         "value" : "Document",
         "type" : "label"
       } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "All people involved in the requirement specification process (on a people, organizational and technological dimension",
-        "type" : "label"
-      } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
@@ -1751,13 +1385,13 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"When everything that the software is assumed to carry out is considered it may be said that we are facing a complete SRS [25]. The Institute of Electrical and Electronics Engineers (IEEE) standard 1233 states that a completed SRS should include all customer requirements, as well as those needed for the definition of the system. Moreover, it should have all pages, tables and figures numbered, all terms defined, all units provided and all referenced material present. Finally, it should not have any to be determined (TBD) sections [4].\"",
+        "value" : "\"An SRS is design independent if and only if there exist more than one system design and implementation that correctly implements all requirements stated in the SRS. The purpose of the SRS is to express desired external behavior to a degree that user satisfaction is guaranteed and a maximum number of designs exist to satisfy those needs and behaviore.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[Bel12]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -1774,13 +1408,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Bel12]_Q11_",
-      "en" : "Completeness"
+      "IRI-based" : "[DOJ+93]_Q88_Me",
+      "en" : "Design-Independent"
     },
-    "id" : "229",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "43",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -1799,19 +1434,19 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An SRS is annotated by relative importance if a reader can easily determine which requirements are of most importance to customers, which are next most important, etc. […] One way to achieve this is to suffix every requirement with (M), (D) and (0) to denote that this requirement is mandatory, desirable, or optional.\"",
+        "value" : "\"the ease by which humans understand the meaning of the natural language requirements specification at hand\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[DOJ+93]",
+        "value" : "[BBG+06]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Syntactic",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -1822,13 +1457,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q92_Me",
-      "en" : "Annotated by Relative Importance"
+      "IRI-based" : "[BBG+06]_Q126_S",
+      "en" : "Understandability"
     },
-    "id" : "233",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "44",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -1847,13 +1483,13 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"We have used the term Understandability to group several criteria related to the choice of wording for the requirements specification. Defining clear requirements can save a lot of time in discussion and question answering during the implementation. Two papers [DQ10, SS05] mention that this can be achieved with requirements written in the language of the customer. [PR09] states that story cards should ‘‘use language simply, consistently and concisely’’. Two more papers deem it is important to use a consistent and defined terminology throughout all requirements: [D14] and [HZ14]. [HZ14] advocates the use of a glossary for this purpose and also recommends the use of correct language (i.e., spelling- and grammar-wise). In total, five papers mention that it is important for the requirements to be unambiguous in general [D01, FM13, F04, SL09, PR09].\"",
+        "value" : "\"the ability for a human being to read the natural language requirements specification at hand\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[HZ18]",
+        "value" : "[BBG+06]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -1870,38 +1506,39 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[HZ18]_Q141_",
-      "en" : "Understandability"
+      "IRI-based" : "[BBG+06]_Q127_Me",
+      "en" : "Readability"
     },
-    "id" : "240",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "49",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q150_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Section",
+        "value" : "Document",
         "type" : "label"
       } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
+      "Viewpoint" : [ {
+        "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "All people involved in the requirement specification process (on a people, organizational and technological dimension)",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Multiple requirements: \"each requirement is documented only once and does not overlap with another requirement.\"",
+        "language" : "en",
+        "value" : "\"Correctness is typically one of the most referenced attributes of a good SRS. A SRS is normally classified as correct when every requirement contributes to the satisfaction of some need[25]. Despite knowing that perfection is a goal that is usually not fully attainable, it does not mean that it should not be attempted. Whenever things are detected as incorrect, the specification should be kept updated [27]. Although IEEE standard 1233 do not explicitly talk about a correctness attribute, it underlines the importance of repeating the process of correcting the initial requirements errors or to add new requirements to enhance the systems features [4].\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[GLSB20]",
+        "value" : "[Bel12]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -1918,43 +1555,30 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Gli20]_Q150_",
-      "undefined" : "Non-redundant"
+      "IRI-based" : "[Bel12]_Q12_",
+      "en" : "Correctness"
     },
-    "id" : "243",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Monitor",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "isDefinedBy" : [ {
-        "identifier" : "isDefinedBy",
-        "language" : "en",
-        "value" : "A concept is quantified and measured periodically or at certain points in time to identidy trends. [KHMT09]",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "Monitor"
+    "comment" : {
+      "undefined" : "false"
     },
-    "id" : "174",
-    "superClasses" : [ "169" ]
+    "attributes" : [ "external" ],
+    "id" : "51",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q140_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
-      "Context" : [ {
-        "identifier" : "Context",
+      "Scope" : [ {
+        "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Agile Requirements Engineering",
+        "value" : "Document",
         "type" : "label"
       } ],
-      "Scope" : [ {
-        "identifier" : "Scope",
+      "Viewpoint" : [ {
+        "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "Section",
+        "value" : "Customer and designer",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -1966,19 +1590,19 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An acronym introduced specifically for agile requirements quality is INVEST: user stories should be Independent, Negotiable, Valuable, Estimable, Small and Testable (Wake 2003).\"",
+        "value" : "\"An SRS is annotazed by version if a reader can easily determine which requimamts will be satisfied in which versions of the product. Both customers and designers obviously need to larow this.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[HZ18]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Pragmatic",
+        "value" : "Syntactic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -1989,20 +1613,21 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[HZ18]_Q140_",
-      "en" : "INVEST"
+      "IRI-based" : "[DOJ+93]_Q94_Me",
+      "en" : "Annotated by Version"
     },
-    "id" : "285",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "53",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Section",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -2013,14 +1638,14 @@
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Multiple requirements: \"the work product contains all relevant requirements (functional requirements, quality requirements, and constraints) that are known at this point in time and that are related to this work product.\"",
+        "language" : "en",
+        "value" : "\"An SRS is verifiable if there exist finite, cost effective techniques that can be used to verify that every requirement stated therein is satisfied by the system as built.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[GLSB20]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -2037,13 +1662,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Gli20]_Q151_",
-      "undefined" : "Complete"
+      "IRI-based" : "[DOJ+93]_Q83_Me",
+      "en" : "Verifiable"
     },
-    "id" : "286",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "62",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q27_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -2053,34 +1679,22 @@
         "value" : "Document",
         "type" : "label"
       } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Internal Inspector with Project and Domain Knowledge",
-        "type" : "label"
-      } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An SRS is internally consistent if, and only if, no subset of individual requirements described in it conflict [7]. It is virtually impossible for third-party inspectors without domain knowledge to find inconsistencies in an SRS written in a natural language. Therefore, we do not derive new quality characteristics from this quality characteristic. We simply assign this quality characteristic to the second-stage inspection by the project.\"",
+        "value" : "\"It is the history of changes made in the requirements;\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
+        "value" : "[MVSG18]",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -2091,13 +1705,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q71_Me",
-      "en" : "Consistent"
+      "IRI-based" : "[MVSG18]_Q27_",
+      "en" : "Change History"
     },
-    "id" : "78",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "63",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -2110,7 +1725,7 @@
       "Viewpoint" : [ {
         "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "All people involved in the requirement specification process (on a people, organizational and technological dimension)",
+        "value" : "Internal Inspector with Project and Domain Knowledge",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -2122,13 +1737,13 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"feasibility is usually considered an extremely important requirement attribute as well. A SRS is consider feasible if all its requirements can be implemented with the available technology, human resources and budget. On the other hand, when including a requirement in the system project, it means the requirement is worthy to be included because it contributes positively to the return of that investment [20]. Feasibility evaluation depends on the present state of technology (e.g., commercially available components or new development), the customers environment (e.g., readiness or acceptance to change), and the risk or cost associated with each requirement [4].\"",
+        "value" : "\"An SRS is correct if, and only if, every requirement stated therein is one that the software shall meet [7].\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[Bel12]",
+        "value" : "[TA15]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -2140,43 +1755,44 @@
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[Bel12]_Q16_",
-      "en" : "Feasibility"
+      "IRI-based" : "[TA15]_Q52_Me",
+      "en" : "Correct"
     },
-    "id" : "309",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "65",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q117_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Section",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"Completeness requires that the requirement contain all of the information necessary, including constraints and conditions, to enable the requirement to be implemented such that the need will be satisfied.\" Comprehensive dicussion on measuring completeness in the appendum of the paper.",
+        "value" : "\"The set of requirements contains individual requirements that are unique, do not conflict with or overlap with other requirements in the set, and the units and measurement systems are homogeneous. The terminology used within the set of requirements is consistent, i.e. the same term is used throughout the set to mean the same thing.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[Hal93]",
+        "value" : "[ISO/IEC/IEEE29148:2018]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -2193,38 +1809,45 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Hal93]_Q117_A",
-      "en" : "Completeness"
+      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q112_Me",
+      "en" : "Consistent"
     },
-    "id" : "310",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "69",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Section",
+        "value" : "Document",
+        "type" : "label"
+      } ],
+      "Viewpoint" : [ {
+        "identifier" : "Viewpoint",
+        "language" : "undefined",
+        "value" : "All people involved in the requirement specification process (on a people, organizational and technological dimension",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Multiple requirements: \"the work product is set up in such a way that it can be modified without degrading its quality.\"",
+        "language" : "en",
+        "value" : "\"When everything that the software is assumed to carry out is considered it may be said that we are facing a complete SRS [25]. The Institute of Electrical and Electronics Engineers (IEEE) standard 1233 states that a completed SRS should include all customer requirements, as well as those needed for the definition of the system. Moreover, it should have all pages, tables and figures numbered, all terms defined, all units provided and all referenced material present. Finally, it should not have any to be determined (TBD) sections [4].\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[GLSB20]",
+        "value" : "[Bel12]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -2241,13 +1864,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Gli20]_Q152_",
-      "undefined" : "Modifiable"
+      "IRI-based" : "[Bel12]_Q11_",
+      "en" : "Completeness"
     },
-    "id" : "44",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "71",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -2266,7 +1890,7 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An SRS is unambiguous if and only if every requirement stated therein has only one possible interpretation [IEE84].\"",
+        "value" : "\"An SRS is annotated by relative importance if a reader can easily determine which requirements are of most importance to customers, which are next most important, etc. […] One way to achieve this is to suffix every requirement with (M), (D) and (0) to denote that this requirement is mandatory, desirable, or optional.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
@@ -2278,7 +1902,7 @@
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Pragmatic",
+        "value" : "Syntactic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -2289,68 +1913,94 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q79_Me",
-      "en" : "Unambiguous"
+      "IRI-based" : "[DOJ+93]_Q92_Me",
+      "en" : "Annotated by Relative Importance"
     },
-    "id" : "27",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "7",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q34__V",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q141_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
+      "Scope" : [ {
+        "identifier" : "Scope",
+        "language" : "undefined",
+        "value" : "Document",
+        "type" : "label"
+      } ],
+      "PractitionersInvolved" : [ {
+        "identifier" : "PractitionersInvolved",
+        "language" : "undefined",
+        "value" : "false",
+        "type" : "label"
+      } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"The availability of the customer to collaborate with the development team or to validate the software is not adequate;\"",
+        "value" : "\"We have used the term Understandability to group several criteria related to the choice of wording for the requirements specification. Defining clear requirements can save a lot of time in discussion and question answering during the implementation. Two papers [DQ10, SS05] mention that this can be achieved with requirements written in the language of the customer. [PR09] states that story cards should ‘‘use language simply, consistently and concisely’’. Two more papers deem it is important to use a consistent and defined terminology throughout all requirements: [D14] and [HZ14]. [HZ14] advocates the use of a glossary for this purpose and also recommends the use of correct language (i.e., spelling- and grammar-wise). In total, five papers mention that it is important for the requirements to be unambiguous in general [D01, FM13, F04, SL09, PR09].\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[MVSG18]",
+        "value" : "[HZ18]",
         "type" : "label"
       } ],
-      "Domain" : [ {
-        "identifier" : "Domain",
-        "language" : "en",
-        "value" : "Stakeholders",
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Pragmatic",
+        "type" : "label"
+      } ],
+      "EmpiricalEvidence" : [ {
+        "identifier" : "EmpiricalEvidence",
+        "language" : "undefined",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[MVSG18]_Q34__V",
-      "en" : "Inadequate Customer Availability"
+      "IRI-based" : "[HZ18]_Q141_",
+      "en" : "Understandability"
     },
-    "id" : "312",
-    "superClasses" : [ "138" ]
+    "attributes" : [ "external" ],
+    "id" : "10",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
+      "Scope" : [ {
+        "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Development team, SW Product Assurance manager, V&V team.",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"The capability of the software to provide full implementation of the functions required.\" Taken from SPEC.",
+        "value" : "\"An SRS is uchicvable if and only if there could exist at least one system design and implementation that correctly implements all the requirements stated in the SRS.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[ECSS-Q-HB-80-04C]",
+        "value" : "[DOJ+93]",
+        "type" : "label"
+      } ],
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -2361,44 +2011,45 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q02_C",
-      "en" : "Completeness"
+      "IRI-based" : "[DOJ+93]_Q86_Me",
+      "en" : "Achievable"
     },
-    "id" : "55",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "11",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q150_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Document",
+        "value" : "Section",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"It is important to know to which source code and test cases the requirements trace (forward traceability) to be aware where things must be changed when requirements change, since agile development embraces change as a given factor (Beck et al. 2001).\"",
+        "language" : "undefined",
+        "value" : "Multiple requirements: \"each requirement is documented only once and does not overlap with another requirement.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[HZ18]",
+        "value" : "[GLSB20]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Syntactic",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -2409,80 +2060,76 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[HZ18]_Q142_",
-      "en" : "Forward traceable"
+      "IRI-based" : "[Gli20]_Q150_",
+      "undefined" : "Non-redundant"
     },
-    "id" : "6",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "13",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q153_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
+      "Viewpoint" : [ {
+        "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "Section",
+        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Multiple requirements: \"the requirements in the work product can be traced back to their origins, forward to their implementation (in design, code, and test), and to other requirements they depend on.\"",
+        "value" : "false",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[GLSB20]",
+        "value" : "[TA15]",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[Gli20]_Q153_",
-      "undefined" : "Traceable"
+      "IRI-based" : "[TA15]_Q77_Me",
+      "en" : "Forward traceability"
     },
-    "id" : "228",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "1",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q102_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Section",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"The requirement defines an essential capability, characteristic, constraint and/or quality factor. If it is not included in the set of requirements, a deficiency in capability or characteristic will exist, which cannot be fulfilled by implementing other requirements. The requirement is currently applicable and has not been made obsolete by the passage of time. Requirements with planned expiration dates or applicability dates are clearly identified.\"",
+        "value" : "\"Consistency requires that the requirement not be in conflict with any other requirement, nor with any element of its own structure.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
+        "value" : "[Hal93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -2499,20 +2146,21 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q102_Me",
-      "en" : "Necessary"
+      "IRI-based" : "[Hal93]_Q118_A",
+      "en" : "Consistency"
     },
-    "id" : "19",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S",
+    "attributes" : [ "external" ],
+    "id" : "14",
+    "superClasses" : [ "4" ]
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Document",
+        "value" : "Dcoument",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -2521,18 +2169,18 @@
         "value" : "false",
         "type" : "label"
       } ],
+      "Definition" : [ {
+        "identifier" : "Definition",
+        "language" : "en",
+        "value" : "\"An SRS is modifiable if, and only if, ist structure and style are such that any changes to the requirements can be made easily, completely, and consistently while retaining the structure and style [7].\"",
+        "type" : "label"
+      } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
         "value" : "[TA15]",
         "type" : "label"
       } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
@@ -2541,13 +2189,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q58_S",
-      "en" : "Definiteness"
+      "IRI-based" : "[TA15]_Q72_S",
+      "en" : "Modifiable"
     },
-    "id" : "218",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "16",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q15_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -2557,12 +2206,6 @@
         "value" : "Document",
         "type" : "label"
       } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "All people involved in the requirement specification process (on a people, organizational and technological dimension)",
-        "type" : "label"
-      } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
@@ -2572,13 +2215,13 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"the content of a SRS should be consistent and non-contradictory. This attribute should be valid in the level of detail, style of requirement statements, and in the presentation of material [4]. Some authors use the concepts of internal and external consistency. On one hand, there is an internal consistency of a SRS if and only if no subset of individual requirements stated therein conflict. On the other hand, an external consistency exists if and only if there are no requirement conflicts with any other baseline project documentation [25].",
+        "value" : "\"the ability to test that a CBS implements what is specified in the natural language requirements specification at hand\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[Bel12]",
+        "value" : "[BBG+06]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -2595,13 +2238,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Bel12]_Q15_",
-      "en" : "Consistency"
+      "IRI-based" : "[BBG+06]_Q129_Me",
+      "en" : "Testability"
     },
-    "id" : "222",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "18",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q151_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -2614,19 +2258,19 @@
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The set of requirements is written such that it is clear as to what is expected by the entity and its relation to the system of which it is a part.\"",
+        "language" : "undefined",
+        "value" : "Multiple requirements: \"the work product contains all relevant requirements (functional requirements, quality requirements, and constraints) that are known at this point in time and that are related to this work product.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
+        "value" : "[GLSB20]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -2643,13 +2287,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q114_Me",
-      "en" : "Comprehensible"
+      "IRI-based" : "[Gli20]_Q151_",
+      "undefined" : "Complete"
     },
-    "id" : "208",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "31",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -2659,52 +2304,59 @@
         "value" : "Document",
         "type" : "label"
       } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
         "value" : "false",
         "type" : "label"
       } ],
+      "Definition" : [ {
+        "identifier" : "Definition",
+        "language" : "en",
+        "value" : "\"An SRS is correct if and only if every requirement represents something required of the system to be built [DAV93], i.e., every requirement in the SRS contributes to the satisfaction of some need.\"",
+        "type" : "label"
+      } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[TA15]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Semantic",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q61_Me",
-      "en" : "Quantative"
+      "IRI-based" : "[DOJ+93]_Q81_Me",
+      "en" : "Correct"
     },
-    "id" : "155",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "32",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q63_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
+      "Scope" : [ {
+        "identifier" : "Scope",
+        "language" : "undefined",
+        "value" : "Document",
+        "type" : "label"
+      } ],
       "Viewpoint" : [ {
         "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
+        "value" : "Internal Inspector with Project and Domain Knowledge",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -2713,12 +2365,24 @@
         "value" : "false",
         "type" : "label"
       } ],
+      "Definition" : [ {
+        "identifier" : "Definition",
+        "language" : "en",
+        "value" : "\"An SRS is internally consistent if, and only if, no subset of individual requirements described in it conflict [7]. It is virtually impossible for third-party inspectors without domain knowledge to find inconsistencies in an SRS written in a natural language. Therefore, we do not derive new quality characteristics from this quality characteristic. We simply assign this quality characteristic to the second-stage inspection by the project.\"",
+        "type" : "label"
+      } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
         "value" : "[TA15]",
         "type" : "label"
       } ],
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Pragmatic",
+        "type" : "label"
+      } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
@@ -2727,14 +2391,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q63_Me",
-      "en" : "Voice"
+      "IRI-based" : "[TA15]_Q71_Me",
+      "en" : "Consistent"
     },
     "attributes" : [ "external" ],
-    "id" : "254",
-    "superClasses" : [ "11" ]
+    "id" : "33",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -2753,7 +2417,7 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An SRS is unambiguous if, and only if, every requirement stated therein has only one interpretation [7]. It is impossible to completely remove the ambiguity from an SRS written in natural language.\"",
+        "value" : "\"An SRS is verifiable if, and only if, every requirement stated therein is verifiable. A requirement is verifiable if, and only if, there exists some finite cost-effective process with which a person or machine can check that the software product meets the requirement. In general, any ambiguous requirement is not verifiable [7]. As IEEE Std. 830-1998 explains, requirements are not verifiable if they are ambiguous.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
@@ -2765,7 +2429,7 @@
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Pragmatic",
+        "value" : "pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -2776,20 +2440,27 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q56_S",
-      "en" : "Unambiguous"
+      "IRI-based" : "[TA15]_Q57_S",
+      "en" : "Verifiable"
     },
-    "id" : "33",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "34",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q119_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Document",
+        "type" : "label"
+      } ],
+      "Viewpoint" : [ {
+        "identifier" : "Viewpoint",
+        "language" : "undefined",
+        "value" : "All people involved in the requirement specification process (on a people, organizational and technological dimension)",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -2801,13 +2472,13 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"Clarity requires that the requirement be readily understandable without semantic analysis.\"",
+        "value" : "\"feasibility is usually considered an extremely important requirement attribute as well. A SRS is consider feasible if all its requirements can be implemented with the available technology, human resources and budget. On the other hand, when including a requirement in the system project, it means the requirement is worthy to be included because it contributes positively to the return of that investment [20]. Feasibility evaluation depends on the present state of technology (e.g., commercially available components or new development), the customers environment (e.g., readiness or acceptance to change), and the risk or cost associated with each requirement [4].\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[Hal93]",
+        "value" : "[Bel12]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -2824,38 +2495,39 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Hal93]_Q119_A",
-      "en" : "Clarity"
+      "IRI-based" : "[Bel12]_Q16_",
+      "en" : "Feasibility"
     },
-    "id" : "119",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "40",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q152_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Document",
+        "value" : "Section",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is complete if: Everything that the software is supposed to do is included in the SRS [DAV93]; Responses of the software to all realizable classes of input data in all realizable classes of situations is included [IEE84]; All pages numbered; all figures and tables numbered, named, and referenced, all terms defined, all units of measure provided, and all referenced material present [IEE84]; No sections marked \"To Be Determined\" [DAV93].\"",
+        "language" : "undefined",
+        "value" : "Multiple requirements: \"the work product is set up in such a way that it can be modified without degrading its quality.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[DOJ+93]",
+        "value" : "[GLSB20]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -2872,49 +2544,45 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q80_Me",
-      "en" : "Complete"
+      "IRI-based" : "[Gli20]_Q152_",
+      "undefined" : "Modifiable"
     },
-    "id" : "425",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "46",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Manage",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
-      "isDefinedBy" : [ {
-        "identifier" : "isDefinedBy",
-        "language" : "en",
-        "value" : "A concept is quantified, masured, and comapred periodically or at certain points against defined evaluation criteria to check the fulfillment of the criteria. If defined criteria are missed, possible reasons and reactions can be identified due to the understanding of the variation factors influencing the measured concept. [KHMT09]",
+      "Scope" : [ {
+        "identifier" : "Scope",
+        "language" : "undefined",
+        "value" : "Document",
         "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "Manage"
-    },
-    "id" : "176",
-    "superClasses" : [ "169" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q04_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
+      } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"The ability of an item under given conditions of use, to be retained in, or restored to, a state in which it can perform a required function, when maintenance is performed under given conditions and using stated procedures and resources.\"",
+        "value" : "\"An SRS is unambiguous if and only if every requirement stated therein has only one possible interpretation [IEE84].\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[ECSS-Q-HB-80-04C]",
+        "value" : "[DOJ+93]",
+        "type" : "label"
+      } ],
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -2925,13 +2593,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q04_S",
-      "en" : "Maintainability"
+      "IRI-based" : "[DOJ+93]_Q79_Me",
+      "en" : "Unambiguous"
     },
-    "id" : "466",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "48",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q41_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q98_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -2941,28 +2610,22 @@
         "value" : "Document",
         "type" : "label"
       } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"Coverability is derived from “Complete” of IEEE Std. 830. It is a pragmatic completeness of a SRS from the perspective of developers. Coverability is evaluated with whether a SRS is completely described in accordance with all the contents of our SRS guideline.\"",
+        "value" : "\"An SRS is reusable if and only if its sentences, paragraphs and sections can be easily adopted or adapted for use in a subsequent SRS. Much research is underway conceming reuse of design and code. Little extends to the requirements domain.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[STH+13]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -2974,25 +2637,26 @@
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[STH+13]_Q41_A",
-      "en" : "Coverability"
+      "IRI-based" : "[DOJ+93]_Q98_Me",
+      "en" : "Reusable"
     },
-    "id" : "283",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "50",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q146_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -3003,20 +2667,20 @@
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Single requirement: \"the requirement is self-contained, meaning that no parts necessary for understanding it are missing.\"",
+        "language" : "en",
+        "value" : "\"The complete set of requirements can be realized within entity constraints (e.g., cost, schedule, technical) with acceptable risk.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[GLSB20]",
+        "value" : "[ISO/IEC/IEEE29148:2018]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Pragmatic",
+        "value" : "Prgamatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -3027,43 +2691,66 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Gli20]_Q146_",
-      "undefined" : "Complete"
+      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q113_Me",
+      "en" : "Feasible"
+    },
+    "attributes" : [ "external" ],
+    "id" : "52",
+    "superClasses" : [ "4" ]
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Assess",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "instances" : 0,
+    "label" : {
+      "IRI-based" : "Assess"
     },
-    "id" : "373",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "80"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q32__V",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
+      "Viewpoint" : [ {
+        "identifier" : "Viewpoint",
+        "language" : "undefined",
+        "value" : "Development team, SW Product Assurance manager, V&V team.",
+        "type" : "label"
+      } ],
+      "PractitionersInvolved" : [ {
+        "identifier" : "PractitionersInvolved",
+        "language" : "undefined",
+        "value" : "true",
+        "type" : "label"
+      } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"Contractual clauses establish that the SRSs must be made available to the customer who must validate and approve it;\"",
+        "value" : "\"The capability of the software to provide full implementation of the functions required.\" Taken from SPEC.",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[MVSG18]",
+        "value" : "[ECSS-Q-HB-80-04C]",
         "type" : "label"
       } ],
-      "Domain" : [ {
-        "identifier" : "Domain",
-        "language" : "en",
-        "value" : "External",
+      "EmpiricalEvidence" : [ {
+        "identifier" : "EmpiricalEvidence",
+        "language" : "undefined",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[MVSG18]_Q32__V",
-      "en" : "Contract agreements"
+      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q02_C",
+      "en" : "Completeness"
     },
-    "id" : "308",
-    "superClasses" : [ "138" ]
+    "attributes" : [ "external" ],
+    "id" : "54",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q93_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -3082,7 +2769,7 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An SRS is traceable if and only if it is written in a manner that facilitates the referencing of each individual requirement [DAV93]. During design and test it is essential to know which requirements are being supported by the component or verified by the test. Without this, it is impossible to design or test in a quality manner.\"",
+        "value" : "\"An SRS is annotated by rehiw stability if a reader can easily determine which requirements are of most likely to change, which are next most likely, etc. Designers need this to help determine where to build in flexibility. Knowing the relative stability can help a team decide whether or not to build in that flexibility. [...] One way to achieve this is to suffix every requirement with (H), (M) and (L) to denote whether the probability of change is high, medium, or low.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
@@ -3091,6 +2778,12 @@
         "value" : "[DOJ+93]",
         "type" : "label"
       } ],
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Syntactic",
+        "type" : "label"
+      } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
@@ -3099,44 +2792,45 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q89_Me",
-      "en" : "Traceable"
+      "IRI-based" : "[DOJ+93]_Q93_Me",
+      "en" : "Annotated by Relative Stability"
     },
-    "id" : "76",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "6",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q147_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q142_",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Single requirement: \"the requirement is comprehensible to the target audience, meaning that the target audience can fully understand the requirement.\"",
+        "language" : "en",
+        "value" : "\"It is important to know to which source code and test cases the requirements trace (forward traceability) to be aware where things must be changed when requirements change, since agile development embraces change as a given factor (Beck et al. 2001).\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[GLSB20]",
+        "value" : "[HZ18]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Pragmatic",
+        "value" : "Syntactic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -3147,44 +2841,45 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Gli20]_Q147_",
-      "undefined" : "Understandable"
+      "IRI-based" : "[HZ18]_Q142_",
+      "en" : "Forward traceable"
     },
-    "id" : "454",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "57",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q110_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"The individual items conform to an approved standard template and style for writing requirements, when applicable.\"",
+        "value" : "\"An SRS is concise if it is as short as possible without adversely affecting any other quality of the SRS.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Syntactic",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -3195,38 +2890,76 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q110_Me",
-      "en" : "Conforming"
+      "IRI-based" : "[DOJ+93]_Q87_Me",
+      "en" : "Concise"
+    },
+    "attributes" : [ "external" ],
+    "id" : "59",
+    "superClasses" : [ "4" ]
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "instances" : 0,
+    "annotations" : {
+      "Viewpoint" : [ {
+        "identifier" : "Viewpoint",
+        "language" : "undefined",
+        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
+        "type" : "label"
+      } ],
+      "PractitionersInvolved" : [ {
+        "identifier" : "PractitionersInvolved",
+        "language" : "undefined",
+        "value" : "false",
+        "type" : "label"
+      } ],
+      "Citation" : [ {
+        "identifier" : "Citation",
+        "language" : "en",
+        "value" : "[TA15]",
+        "type" : "label"
+      } ],
+      "EmpiricalEvidence" : [ {
+        "identifier" : "EmpiricalEvidence",
+        "language" : "undefined",
+        "value" : "true",
+        "type" : "label"
+      } ]
+    },
+    "label" : {
+      "IRI-based" : "[TA15]_Q76_Me",
+      "en" : "Backward traceability"
     },
-    "id" : "418",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "60",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q148_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Single requirement: \"the fulfillment of the requirement by an implemented system can be checked indisputably (so that stakeholders or customers can decide whether or not a requirement is fulfilled by the implemented system).\"",
+        "language" : "en",
+        "value" : "\"the lack of ambiguity in the natural language requirements specification at hand. (We have invented the word “uniguity”, i.e., one meaning, to not have to use the heavy mouthful “nonambiguity”)\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[GLSB20]",
+        "value" : "[BBG+06]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -3243,50 +2976,63 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Gli20]_Q148_",
-      "undefined" : "Verifiable"
+      "IRI-based" : "[BBG+06]_Q128_Me",
+      "en" : "Uniguity"
     },
-    "id" : "49",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "68",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q62_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
+      "Scope" : [ {
+        "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
+        "value" : "Section",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
+        "type" : "label"
+      } ],
+      "Definition" : [ {
+        "identifier" : "Definition",
+        "language" : "en",
+        "value" : "\"The set of requirements is written such that it is clear as to what is expected by the entity and its relation to the system of which it is a part.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[TA15]",
+        "value" : "[ISO/IEC/IEEE29148:2018]",
+        "type" : "label"
+      } ],
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q62_Me",
-      "en" : "Freedom from ambiguity"
+      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q114_Me",
+      "en" : "Comprehensible"
     },
     "attributes" : [ "external" ],
-    "id" : "101",
-    "superClasses" : [ "11" ]
+    "id" : "8",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -3305,13 +3051,19 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An SRS is modifiable if its structure and style are such that any changes can be made easily, completely, and consistently [IEE84]. There are two primary reasons for modifiability: (1) needs always evolve, aud (2) the SRS, like all complex softwarerelated documents, will contain errors.\"",
+        "value" : "\"the lack of missing information in the natural language requirements specification at hand\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[DOJ+93]",
+        "value" : "[BBG+06]",
+        "type" : "label"
+      } ],
+      "LinguisticComplexity" : [ {
+        "identifier" : "LinguisticComplexity",
+        "language" : "undefined",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -3322,14 +3074,15 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q90_Me",
-      "en" : "Modifiable"
+      "IRI-based" : "[BBG+06]_Q131_Me",
+      "en" : "Completeness"
     },
-    "id" : "57",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "12",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q57_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
@@ -3347,37 +3100,37 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An SRS is verifiable if, and only if, every requirement stated therein is verifiable. A requirement is verifiable if, and only if, there exists some finite cost-effective process with which a person or machine can check that the software product meets the requirement. In general, any ambiguous requirement is not verifiable [7]. As IEEE Std. 830-1998 explains, requirements are not verifiable if they are ambiguous.\"",
+        "value" : "\"An SRS is cross referenced if and only if cross-references are used in the SRS to relate Sections containing requirements to other sections\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[TA15]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "pragmatic",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "fasle",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q57_S",
-      "en" : "Verifiable"
+      "IRI-based" : "[DOJ+93]_Q101_Me",
+      "en" : "Cross-Referenced"
     },
     "attributes" : [ "external" ],
-    "id" : "269",
-    "superClasses" : [ "11" ]
+    "id" : "19",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q96_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -3396,13 +3149,13 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An SRS is complete if, and only if, it includes the following elements [7]: All significant requirements, whether relating to functionality, performance, design constraints, attributes, or external interfaces; Definition of the responses of the software to all realizable classes of input data in all realizable situations; Full labels and references to all figures, tables, and diagrams in the SRS and definition of all terms and units of measure;\"",
+        "value" : "\"The right level of detail is a function of how the SRS is being used. Generally, the SRS should be specific enough that any system built that satisfies the requirements in the SRS satisfies d user needs, and abstract enough that all systems that satisfy all user needs also satisfy all requirements. Thus, an SRS being used for a contract between customer and developer should be relatively specific to emure the customer knows what is being acquired, and them are a minimum of surprises.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[TA15]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -3414,35 +3167,19 @@
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q65_S",
-      "en" : "Complete"
-    },
-    "id" : "9",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Specify",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "isDefinedBy" : [ {
-        "identifier" : "isDefinedBy",
-        "language" : "en",
-        "value" : "A concept is described more precisely by refining it into sub-concepts. [KHMT09]",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "Specify"
+      "IRI-based" : "[DOJ+93]_Q96_Me",
+      "en" : "At Right Level of Abstraction / Detail"
     },
-    "id" : "175",
-    "superClasses" : [ "169" ]
+    "attributes" : [ "external" ],
+    "id" : "21",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -3473,7 +3210,7 @@
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Pragmatic",
+        "value" : "Semantic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -3484,38 +3221,39 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q73_Me",
-      "en" : "Cross reference"
+      "IRI-based" : "[TA15]_Q61_Me",
+      "en" : "Quantative"
     },
-    "id" : "165",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "24",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q149_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q85_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Section",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Multiple requirements: \"no two requirements, recorded in a single work product or in different work products, contradict each other.\"",
+        "language" : "en",
+        "value" : "\"An SRS is externally consistent if and only if no requirement stated therein conflicts with any already baselined project documentation. These baselined documents include system-level requirements specifications (RS), statements of work (SOW), white papers, an earlier version of the SRS to which this new SRS must be upward compatible, and RSs for other systems to which this system must interface.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[GLSB20]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -3532,26 +3270,27 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Gli20]_Q149_",
-      "undefined" : "Consistent"
+      "IRI-based" : "[DOJ+93]_Q85_Me",
+      "en" : "Externally Consistent"
     },
-    "id" : "67",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "26",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
-      "Context" : [ {
-        "identifier" : "Context",
+      "Scope" : [ {
+        "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Agile Requirements Engineering",
+        "value" : "Document",
         "type" : "label"
       } ],
-      "Scope" : [ {
-        "identifier" : "Scope",
+      "Viewpoint" : [ {
+        "identifier" : "Viewpoint",
         "language" : "undefined",
-        "value" : "Section",
+        "value" : "Internal Inspector with Project and Domain Knowledge",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
@@ -3563,13 +3302,13 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"Consistency and correctness (VC3) indicate those criteria that state something on the quality of an individual feature request (correctness), or on the quality of the link between two or more feature requests (consistency).\"",
+        "value" : "\"An SRS is achievable if and only if there could exist at least one system design and implementation that correctly implements all the requirements stated in the SRS [3]. It is virtually impossible for third-party inspectors without domain knowledge to conclude if there could exist at least one possible system design.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[HZ18]",
+        "value" : "[TA15]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -3581,37 +3320,44 @@
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[HZ18]_Q135_S",
-      "en" : "Consistency / Correctness"
+      "IRI-based" : "[TA15]_Q78_Me",
+      "en" : "Achievable"
     },
-    "id" : "211",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "27",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q01_S",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q91_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
+      "Scope" : [ {
+        "identifier" : "Scope",
+        "language" : "undefined",
+        "value" : "Document",
+        "type" : "label"
+      } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"The capability of the software product to provide functions which meet stated and implied needs when the software is used under specified conditions.\" Taken from ISO 9126, SPEC.",
+        "value" : "\"An SRS is executable, interpretable, or prototypabk if and only if there exists a software tool capable of inputting the SRS and providing a dynamic behavioral model.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[ECSS-Q-HB-80-04C]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -3622,75 +3368,48 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q01_S",
-      "en" : "Functionality"
+      "IRI-based" : "[DOJ+93]_Q91_Me",
+      "en" : "Executable / Interpretable / Prototypable"
     },
-    "id" : "197",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "39",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q60_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Measure",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
     "label" : {
-      "IRI-based" : "[TA15]_Q60_Me",
-      "en" : "Non-equivocal"
+      "IRI-based" : "Measure"
     },
     "attributes" : [ "external" ],
-    "id" : "292",
-    "superClasses" : [ "11" ]
+    "id" : "2"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q143_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Single requirement: \"the requirement describes true and agreed stakeholder needs. Some people use correctness instead of adequacy. However, the notion of correctness implies that there is a formal procedure for deciding whether something is correct or not. As there is no formal procedure for validating a documented requirement against the desires and needs that stakeholders have in mind, we prefer the term adequacy over correctness.\"",
+        "language" : "en",
+        "value" : "\"An SRS is unambiguous if, and only if, every requirement stated therein has only one interpretation [7]. It is impossible to completely remove the ambiguity from an SRS written in natural language.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[GLSB20]",
+        "value" : "[TA15]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
@@ -3702,18 +3421,19 @@
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "false",
+        "value" : "true",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[Gli20]_Q143_",
-      "undefined" : "Adequate"
+      "IRI-based" : "[TA15]_Q56_S",
+      "en" : "Unambiguous"
     },
-    "id" : "146",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "42",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -3732,7 +3452,7 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"An SRS is traced if and only if the origin of each of ist requirements is clear DAV931. This implies that every requirement that has a basis is cross-reference to that basis.\"",
+        "value" : "\"An SRS is complete if: Everything that the software is supposed to do is included in the SRS [DAV93]; Responses of the software to all realizable classes of input data in all realizable classes of situations is included [IEE84]; All pages numbered; all figures and tables numbered, named, and referenced, all terms defined, all units of measure provided, and all referenced material present [IEE84]; No sections marked \"To Be Determined\" [DAV93].\"",
         "type" : "label"
       } ],
       "Citation" : [ {
@@ -3741,100 +3461,28 @@
         "value" : "[DOJ+93]",
         "type" : "label"
       } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q99_Me",
-      "en" : "Traced"
-    },
-    "id" : "128",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "See related lower-level quality attributes.",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Syntactic",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
         "identifier" : "EmpiricalEvidence",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ]
     },
     "label" : {
-      "IRI-based" : "[TA15]_Q66_S",
-      "en" : "Descriptive Completeness"
+      "IRI-based" : "[DOJ+93]_Q80_Me",
+      "en" : "Complete"
     },
     "attributes" : [ "external" ],
-    "id" : "554",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q30__V",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Bureaucratic practices applied to release, validate or certificate practical versions of the softwarem as wekk as to control changes in the requirements require an additional effort from the team.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "Domain" : [ {
-        "identifier" : "Domain",
-        "language" : "en",
-        "value" : "Organizational",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q30__V",
-      "en" : "Process Characteristics"
-    },
-    "id" : "320",
-    "superClasses" : [ "138" ]
+    "id" : "47",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -3853,7 +3501,7 @@
       "Definition" : [ {
         "identifier" : "Definition",
         "language" : "en",
-        "value" : "\"the ease by which humans understand the meaning of the natural language requirements specification at hand\"",
+        "value" : "\"the lack of contradictions and incongruities in the natural language requirements specification at hand\"",
         "type" : "label"
       } ],
       "Citation" : [ {
@@ -3876,44 +3524,45 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[BBG+06]_Q126_S",
-      "en" : "Understandability"
+      "IRI-based" : "[BBG+06]_Q130_Me",
+      "en" : "Consistency"
     },
-    "id" : "506",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "61",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q144_",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
       "Scope" : [ {
         "identifier" : "Scope",
         "language" : "undefined",
-        "value" : "Requirement",
+        "value" : "Document",
         "type" : "label"
       } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Single requirement: \"the requirement is part of the relevant system scope, meaning that it will contribute to the achievement of at least one stakeholder goal or need.\"",
+        "language" : "en",
+        "value" : "\"An SRS is organized if and only if its contents are arranged so that readers can easily locate information and logical relationships among adjacent sections is apparent. One way is to follow any of the many SRS standards [DOR90]. Certainly boiler plate sections of all SRS standards are rou~hly equivalent. Primary differences concern organization of detailed requirements. There are many ways to organize these.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[GLSB20]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Prgamatic",
+        "value" : "Pragmatic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -3924,49 +3573,14 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Gli20]_Q144_",
-      "undefined" : "Necessary"
-    },
-    "id" : "637",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q63_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q63_Me",
-      "en" : "Voice"
+      "IRI-based" : "[DOJ+93]_Q100_Me",
+      "en" : "Organized"
     },
-    "id" : "639",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "67",
+    "superClasses" : [ "4" ]
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q50_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "instances" : 0,
     "annotations" : {
@@ -3976,76 +3590,28 @@
         "value" : "Document",
         "type" : "label"
       } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[STH+13]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[STH+13]_Q50_A",
-      "en" : "Precence of Identifier"
-    },
-    "id" : "133",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q145_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
       "PractitionersInvolved" : [ {
         "identifier" : "PractitionersInvolved",
         "language" : "undefined",
-        "value" : "true",
+        "value" : "false",
         "type" : "label"
       } ],
       "Definition" : [ {
         "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Single requirement: \"there is a true shared understanding of the requirement, meaning that everybody involved interprets it in the same way.\"",
+        "language" : "en",
+        "value" : "\"An SRS is precise if and only if (a) numeric quantities are used whenever possible, and (b) the appropriate levels of precision are used for all numeric quantities.\"",
         "type" : "label"
       } ],
       "Citation" : [ {
         "identifier" : "Citation",
         "language" : "en",
-        "value" : "[GLSB20]",
+        "value" : "[DOJ+93]",
         "type" : "label"
       } ],
       "LinguisticComplexity" : [ {
         "identifier" : "LinguisticComplexity",
         "language" : "undefined",
-        "value" : "Pragmatic",
+        "value" : "Semantic",
         "type" : "label"
       } ],
       "EmpiricalEvidence" : [ {
@@ -4056,14766 +3622,2545 @@
       } ]
     },
     "label" : {
-      "IRI-based" : "[Gli20]_Q145_",
-      "undefined" : "Unambiguous"
+      "IRI-based" : "[DOJ+93]_Q97_Me",
+      "en" : "Precise"
     },
-    "id" : "375",
-    "superClasses" : [ "2" ]
+    "attributes" : [ "external" ],
+    "id" : "70",
+    "superClasses" : [ "4" ]
+  } ],
+  "property" : [ {
+    "id" : "0",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Section",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The set of requirements contains individual requirements that are unique, do not conflict with or overlap with other requirements in the set, and the units and measurement systems are homogeneous. The terminology used within the set of requirements is consistent, i.e. the same term is used throughout the set to mean the same thing.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q112_Me",
-      "en" : "Consistent"
-    },
-    "id" : "82",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Context" : [ {
-        "identifier" : "Context",
-        "language" : "undefined",
-        "value" : "Agile Requirements Engineering",
-        "type" : "label"
-      } ],
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"all structure elements of a single requirement should be there. Completeness In this category, we place criteria that specify elements that should be present in (the description of) the agile requirements. An example would be the rule that each requirement should have a unique identifier. Note that our definition of completeness (all structure elements of a single requirement should be there) is different from the notion of completeness as in specifying all user needs.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[HZ18]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[HZ18]_Q133_S",
-      "en" : "Completeness"
-    },
-    "id" : "485",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q45_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[STH+13]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[STH+13]_Q45_A",
-      "en" : "Correspondence to project goals"
-    },
-    "id" : "396",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q77_Me",
-      "en" : "Forward traceability"
-    },
-    "id" : "74",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Dcoument",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is modifiable if, and only if, ist structure and style are such that any changes to the requirements can be made easily, completely, and consistently while retaining the structure and style [7].\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q72_S",
-      "en" : "Modifiable"
-    },
-    "id" : "235",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q121_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Connectivity refers to the property whereby all of the terms within the requirements and to word and term definitions, so causing the individual requirement to properly relate to the other requirements as a set.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[Hal93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Semantic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[Hal93]_Q121_A",
-      "en" : "Connectivity"
-    },
-    "id" : "474",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q107_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The requirement can be realized within system constraints (e.g., cost, schedule, technical) with acceptable risk.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q107_Me",
-      "en" : "Feasible"
-    },
-    "id" : "445",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q70_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q70_Me",
-      "en" : "Template"
-    },
-    "attributes" : [ "external" ],
-    "id" : "237",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Predict",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "isDefinedBy" : [ {
-        "identifier" : "isDefinedBy",
-        "language" : "en",
-        "value" : "The future value of a concept of interest is predicted by considering factors indicating ist future value. [KHMT09]",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "Predict"
-    },
-    "id" : "173",
-    "superClasses" : [ "169" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Assess",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "isDefinedBy" : [ {
-        "identifier" : "isDefinedBy",
-        "language" : "en",
-        "value" : "A concept is quantified, measured and compared to defined evaluation criteria to check the fulfillment of the criteria. [KHMT09]",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "Assess"
-    },
-    "id" : "120",
-    "superClasses" : [ "169" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is concise if it is as short as possible without adversely affecting any other quality of the SRS.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q87_Me",
-      "en" : "Concise"
-    },
-    "id" : "13",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"the lack of ambiguity in the natural language requirements specification at hand. (We have invented the word “uniguity”, i.e., one meaning, to not have to use the heavy mouthful “nonambiguity”)\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[BBG+06]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q128_Me",
-      "en" : "Uniguity"
-    },
-    "id" : "30",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"the lack of missing information in the natural language requirements specification at hand\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[BBG+06]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q131_Me",
-      "en" : "Completeness"
-    },
-    "id" : "189",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q59_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q59_Me",
-      "en" : "Non-redundant"
-    },
-    "attributes" : [ "external" ],
-    "id" : "300",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is cross referenced if and only if cross-references are used in the SRS to relate Sections containing requirements to other sections\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "fasle",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q101_Me",
-      "en" : "Cross-Referenced"
-    },
-    "id" : "183",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q67_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Internal Inspector with Project and Domain Knowledge",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "\"All significant requirements, whether relating to functionality, performance, design constraints, attributes, or external interfaces; Definition of the responses of the software to all realizable classes of input data in all realizable situations.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q67_Me",
-      "en" : "Requirement Completeness"
-    },
-    "id" : "185",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Testability refers to the existence of a finite and objective process with which to verify that the requirement has bee satisfied.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[Hal93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[Hal93]_Q123_A",
-      "en" : "Testability"
-    },
-    "id" : "158",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q85_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is externally consistent if and only if no requirement stated therein conflicts with any already baselined project documentation. These baselined documents include system-level requirements specifications (RS), statements of work (SOW), white papers, an earlier version of the SRS to which this new SRS must be upward compatible, and RSs for other systems to which this system must interface.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q85_Me",
-      "en" : "Externally Consistent"
-    },
-    "id" : "140",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q39__V",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The development team has little experience with the requirements specirfication activity.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "Domain" : [ {
-        "identifier" : "Domain",
-        "language" : "en",
-        "value" : "Stakeholders",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q39__V",
-      "en" : "Inadequate team experience with specification"
-    },
-    "id" : "322",
-    "superClasses" : [ "138" ]
-  }, {
-    "instances" : 0,
-    "union" : [ "138", "2" ],
-    "attributes" : [ "anonymous", "union" ],
-    "id" : "645"
-  }, {
-    "instances" : 0,
-    "union" : [ "138", "2" ],
-    "attributes" : [ "anonymous", "union" ],
-    "id" : "646"
-  }, {
-    "instances" : 0,
-    "union" : [ "102", "269" ],
-    "attributes" : [ "anonymous", "union" ],
-    "id" : "341"
-  }, {
-    "instances" : 0,
-    "union" : [ "438", "33" ],
-    "attributes" : [ "anonymous", "union" ],
-    "id" : "647"
-  }, {
-    "iri" : "http://www.w3.org/2002/07/owl#Thing",
-    "baseIri" : "http://owl2vowl.de",
-    "id" : "654",
-    "label" : {
-      "undefined" : "Thing"
-    }
-  }, {
-    "iri" : "http://www.w3.org/2002/07/owl#Thing",
-    "baseIri" : "http://owl2vowl.de",
-    "id" : "655",
-    "label" : {
-      "undefined" : "Thing"
-    }
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q55_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q55_Me",
-      "en" : "Purpose of feature"
-    },
-    "id" : "326",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q109_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The requirement is an accurate representation of the entity need from which it was transformed.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q109_Me",
-      "en" : "Correct"
-    },
-    "id" : "239",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Dcoument",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Internal traceability is derived from “Consistent”, “Traceable”, and “Modifiable” in IEEE Std. 830. From the perspective of developer, we reorganize the three characteristics into “internal traceability”. The internal traceability requires that the items and relationship between them should be clearly identified in a SRS.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[STH+13]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[STH+13]_Q43_S",
-      "en" : "Internal Traceability"
-    },
-    "id" : "640",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q69_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "\"A unique number is assigned to Figures and tables?\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q69_Me",
-      "en" : "Label"
-    },
-    "attributes" : [ "external" ],
-    "id" : "352",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is precise if and only if (a) numeric quantities are used whenever possible, and (b) the appropriate levels of precision are used for all numeric quantities.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Semantic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q97_Me",
-      "en" : "Precise"
-    },
-    "id" : "666",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q78_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Internal Inspector with Project and Domain Knowledge",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is achievable if and only if there could exist at least one system design and implementation that correctly implements all the requirements stated in the SRS [3]. It is virtually impossible for third-party inspectors without domain knowledge to conclude if there could exist at least one possible system design.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q78_Me",
-      "en" : "Achievable"
-    },
-    "attributes" : [ "external" ],
-    "id" : "653",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Context" : [ {
-        "identifier" : "Context",
-        "language" : "undefined",
-        "value" : "SW V&V Process",
-        "type" : "label"
-      } ],
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Development team, SW Product Assurance manager, V&V team.",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Extent to which an objective and feasible test can be designed to determine whether a requirement is met.\" Taken from ISO 24765.",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ECSS-Q-HB-80-04C]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q07_C",
-      "en" : "Testability"
-    },
-    "id" : "403",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q137_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Note that an unique identifier is also useful in oral communication of agile requirements. In oral communication, we need an easy and unambiguous way to refer to requirements we are discussing, whereas in written communication we could use other means such as hyper-links or paragraph numbers.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[HZ18]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[HZ18]_Q137_",
-      "en" : "Unique identifier"
-    },
-    "id" : "80",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q29_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Context" : [ {
-        "identifier" : "Context",
-        "language" : "undefined",
-        "value" : "Agile Requirements Engineering",
-        "type" : "label"
-      } ],
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The description of a requirement is enough to be coded without the need to consult complementary sources. The completeness should be evaluated under the perception of the developer in the scope of each sprint, and not in the whole project;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q29_",
-      "en" : "Completeness \"agile\""
-    },
-    "id" : "345",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q125_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Feasibility requires that a requirement be able to be satisfied: (a) within natural physical constraints; (b) within the state-of-the-art as it applies to the project; and (c) within all other absolute constraints applying to the project.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[Hal93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[Hal93]_Q125_A",
-      "en" : "Feasibility"
-    },
-    "id" : "461",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#QualityAttribute",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "label" : {
-      "IRI-based" : "QualityAttribute"
-    },
-    "subClasses" : [ "493", "554", "651", "653", "10", "302", "300", "294", "292", "101", "296", "289", "102", "156", "275", "272", "281", "277", "264", "261", "269", "99", "62", "254", "237", "354", "352" ],
-    "attributes" : [ "external" ],
-    "id" : "11"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q136_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Context" : [ {
-        "identifier" : "Context",
-        "language" : "undefined",
-        "value" : "Agile Requirements Engineering",
-        "type" : "label"
-      } ],
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer and Customer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"In agile development the priority of a requirement is very important to know, because the priority is used to plan iterations. In each iteration, the open requirements with the highest priority are detailed and subsequently developed. Priority is allowed to change as long as the requirement is open. In this way, agile development ensures that the customer receives what he needs most at any given moment. This also allows for the customer to change his/her mind and upgrade or downgrade requirements during the project by adjusting the priority attribute.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[HZ18]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[HZ18]_Q136_",
-      "en" : "Priority"
-    },
-    "id" : "442",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is redundant if the same requirement is stated more than once. […] Often redundancy can be used to increase readability of the SRS significantly. The only problem that redundancy causes is when an SRS is revised. If all occurrences of a redundant requirement are not changed then the SRS becomes inconsistent.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Semantic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q95_Me",
-      "en" : "Not Redundant"
-    },
-    "id" : "407",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q48_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[STH+13]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[STH+13]_Q48_A",
-      "en" : "Preparation of glossary"
-    },
-    "id" : "411",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q139_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"In traditional requirements, engineering acceptance tests are often developed together with the upfront requirements specification. Agile development does not recommend writing such elaborate test documentation upfront since there is a good chance that certain requirements do not get implemented or will change, and thus, the test cases will be obsolete. To replace comprehensive upfront test documentation, agile requirements should be elaborated with acceptance criteria (in Behavior-Driven Development these acceptance criteria are even formalized according to a template).\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[HZ18]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[HZ18]_Q139_",
-      "en" : "Acceptance Criteria"
-    },
-    "id" : "59",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q54_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Section",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Semantic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q54_Me",
-      "en" : "Project objective"
-    },
-    "attributes" : [ "external" ],
-    "id" : "261",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q105_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The requirement sufficiently describes the necessary capability, characteristic, constraint or quality factor to meet the entity need without needing other information to understand the requirement.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q105_Me",
-      "en" : "Complete"
-    },
-    "id" : "232",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q37__V",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The requirements are described in a fragmented manner in various artefacts that have different and complementary views;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "Domain" : [ {
-        "identifier" : "Domain",
-        "language" : "en",
-        "value" : "Structure",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q37__V",
-      "en" : "Fragmented Information"
-    },
-    "id" : "318",
-    "superClasses" : [ "138" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q138_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Five papers ([DQ10], [FM13], [P14], [SS05], [PR09]) indicate that non-functional requirements should not be overlooked in agile development. [P14] states that ‘‘architecture criteria (performance, security, etc.)’’ should be identified for a User Story to be considered Ready.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[HZ18]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[HZ18]_Q138_",
-      "en" : "Non-functional Requirements"
-    },
-    "id" : "163",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q09_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Context" : [ {
-        "identifier" : "Context",
-        "language" : "undefined",
-        "value" : "All development phases",
-        "type" : "label"
-      } ],
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Global",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Development team and SW Product Assurance manager",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The capability of the software development process to asses the quality in the management of the process in a specified context of use.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ECSS-Q-HB-80-04C]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q09_C",
-      "en" : "Project Management Effectiveness"
-    },
-    "id" : "203",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q116_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Correctness refers to an absence of errors of fact in the statement of requirement.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[Hal93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[Hal93]_Q116_A",
-      "en" : "Correctness"
-    },
-    "id" : "86",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q26_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Concists of the description of the source of each requirement, as well as, the dependency relationships between requirements.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q26_",
-      "en" : "Traceability"
-    },
-    "id" : "199",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q70_Me",
-      "en" : "Template"
-    },
-    "id" : "181",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q25_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"It is the description of the functions or tasks to be performed by the wsystem. Requirements can be represented usiang a textual format, for example, by user stories, us cases, business rules and concrete examples; or using a visual representation, such as conceptual models and mockups, or other representations.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q25_",
-      "en" : "Functional Requirements"
-    },
-    "id" : "148",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[STH+13]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[STH+13]_Q46_A",
-      "en" : "Templates usage"
-    },
-    "id" : "656",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q28_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The activities of requirements specification and management are carried out with the support of a specialized tool.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q28_",
-      "en" : "Automated Support"
-    },
-    "id" : "747",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q69_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "\"A unique number is assigned to Figures and tables?\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q69_Me",
-      "en" : "Label"
-    },
-    "id" : "134",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q27_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"It is the history of changes made in the requirements;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q27_",
-      "en" : "Change History"
-    },
-    "id" : "749",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is verifiable if there exist finite, cost effective techniques that can be used to verify that every requirement stated therein is satisfied by the system as built.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q83_Me",
-      "en" : "Verifiable"
-    },
-    "id" : "731",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q60_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q60_Me",
-      "en" : "Non-equivocal"
-    },
-    "id" : "306",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q03_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The degree to which a system or component is free of faults in ist specification, design and implementation\". Taken from ISO 24765, SPEC.",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ECSS-Q-HB-80-04C]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q03_C",
-      "en" : "Correctness"
-    },
-    "id" : "85",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Section",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Consistency requires that the requirement not be in conflict with any other requirement, nor with any element of its own structure.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[Hal93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[Hal93]_Q118_A",
-      "en" : "Consistency"
-    },
-    "id" : "70",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q64_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q64_Me",
-      "en" : "Reference"
-    },
-    "attributes" : [ "external" ],
-    "id" : "294",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q52_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Internal Inspector with Project and Domain Knowledge",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is correct if, and only if, every requirement stated therein is one that the software shall meet [7].\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q52_Me",
-      "en" : "Correct"
-    },
-    "attributes" : [ "external" ],
-    "id" : "289",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q75_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is traceable if the origin of each of ist requirements is clear and if it facilitates the referencing of each requirement in future development or enhancement documentation [7].\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q75_S",
-      "en" : "Traceable"
-    },
-    "attributes" : [ "external" ],
-    "id" : "272",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is correct if and only if every requirement represents something required of the system to be built [DAV93], i.e., every requirement in the SRS contributes to the satisfaction of some need.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q81_Me",
-      "en" : "Correct"
-    },
-    "id" : "246",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is verifiable if, and only if, every requirement stated therein is verifiable. A requirement is verifiable if, and only if, there exists some finite cost-effective process with which a person or machine can check that the software product meets the requirement. In general, any ambiguous requirement is not verifiable [7]. As IEEE Std. 830-1998 explains, requirements are not verifiable if they are ambiguous.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q57_S",
-      "en" : "Verifiable"
-    },
-    "id" : "438",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q35__V",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The development team receives many requests for changes in partial versions of the application;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "Domain" : [ {
-        "identifier" : "Domain",
-        "language" : "en",
-        "value" : "External",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q35__V",
-      "en" : "Excessive Changes"
-    },
-    "id" : "167",
-    "superClasses" : [ "138" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q76_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q76_Me",
-      "en" : "Backward traceability"
-    },
-    "attributes" : [ "external" ],
-    "id" : "493",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The complete set of requirements can be realized within entity constraints (e.g., cost, schedule, technical) with acceptable risk.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Prgamatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q113_Me",
-      "en" : "Feasible"
-    },
-    "id" : "53",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q59_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q59_Me",
-      "en" : "Non-redundant"
-    },
-    "id" : "40",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q93_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is annotated by rehiw stability if a reader can easily determine which requirements are of most likely to change, which are next most likely, etc. Designers need this to help determine where to build in flexibility. Knowing the relative stability can help a team decide whether or not to build in that flexibility. [...] One way to achieve this is to suffix every requirement with (H), (M) and (L) to denote whether the probability of change is high, medium, or low.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q93_Me",
-      "en" : "Annotated by Relative Stability"
-    },
-    "id" : "21",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q53_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is accountable if and only if, the objective of developing the software system and the purpose of software features are clearly stated.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q53_S",
-      "en" : "Accountable"
-    },
-    "attributes" : [ "external" ],
-    "id" : "275",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q74_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "\"Table of contents and index are created?\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q74_Me",
-      "en" : "Searchable"
-    },
-    "attributes" : [ "external" ],
-    "id" : "302",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "See related lower-level quality attributes.",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q66_S",
-      "en" : "Descriptive Completeness"
-    },
-    "id" : "143",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q05_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The capability of the software product to maintain a specified level of performance when used under specified conditions.\" Taken from ISO 9126, SPEC.",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ECSS-Q-HB-80-04C]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q05_S",
-      "en" : "Reliability"
-    },
-    "id" : "124",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q103_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The specific intent and amount of detail of the requirement is appropriate to the level of the entity to which it refers (level of abstraction appropriate to the level of entity). This includes avoiding unnecessary constraints on the architecture or design while allowing implementation independence to the extent possible. While additional detailed information could still be important, the information is documented and communicated in some other form of documentation, such as the requirements attributes in 5.2.8 (e.g., rationale) in order to aid in design and implementation. Additionally, including design solutions in the requirements creates the risk that potential design solutions could be overlooked or eliminated. Examples include stating requirements that express an exact commercial system set or a system that can be bought rather than made, stating tolerances for items deep within the conceptual system, or establishing constraints that are not necessarily reflective of the parent requirement.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Structural",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q103_Me",
-      "en" : "Appropriate"
-    },
-    "id" : "150",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#VariationFactor",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "label" : {
-      "IRI-based" : "VariationFactor"
-    },
-    "subClasses" : [ "322", "320", "328", "167", "315", "137", "318", "312", "304", "308" ],
-    "comment" : {
-      "en" : "Influence constructs with a quality focus. For example, the development effort […] is part of the quality focus of the model and the domain or developers' experiences is a variation factor that influences this concept of interest. [KHMT09]."
-    },
-    "id" : "138",
-    "superClasses" : [ "519" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q91_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is executable, interpretable, or prototypabk if and only if there exists a software tool capable of inputting the SRS and providing a dynamic behavioral model.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q91_Me",
-      "en" : "Executable / Interpretable / Prototypable"
-    },
-    "id" : "500",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q115_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Section",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "\"It is practicable that satisfaction of the requirement set will lead to the achievement of the entity needs within constraints (e.g., cost, schedule, technical, legal and regulatory compliance).\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q115_Me",
-      "undefined" : "Able to be validated"
-    },
-    "id" : "836",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q33__V",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Characteristics itrinsic to the tyoe of software developed or the application domain require an additional effort from the team;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "Domain" : [ {
-        "identifier" : "Domain",
-        "language" : "en",
-        "value" : "External",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q33__V",
-      "en" : "Software Characteristics"
-    },
-    "id" : "304",
-    "superClasses" : [ "138" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q53_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is accountable if and only if, the objective of developing the software system and the purpose of software features are clearly stated.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q53_S",
-      "en" : "Accountable"
-    },
-    "id" : "325",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#QualityAttribute",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "label" : {
-      "IRI-based" : "QualityAttribute"
-    },
-    "subClasses" : [ "306", "233", "85", "7", "403", "240", "396", "338", "330", "74", "243", "325", "283", "24", "70", "235", "373", "31", "363", "194", "358", "80", "26", "285", "76", "474", "60", "345", "461", "61", "286", "246", "454", "451", "78", "438", "445", "442", "414", "418", "416", "63", "407", "411", "35", "309", "498", "310", "65", "44", "27", "47", "49", "51", "53", "55", "57", "59", "40", "21", "1", "4", "6", "9", "13", "15", "17", "19", "228", "162", "232", "106", "165", "218", "67", "30", "222", "163", "208", "211", "131", "203", "189", "86", "192", "135", "197", "199", "179", "181", "183", "185", "187", "152", "141", "155", "158", "160", "140", "143", "72", "146", "148", "150", "124", "126", "128", "130", "748", "500", "656", "33", "424", "680", "119", "747", "506", "425", "200", "637", "476", "644", "205", "209", "134", "639", "836", "638", "326", "68", "749", "731", "133", "466", "375", "202", "640", "239", "248", "478", "666", "82", "485", "229" ],
-    "id" : "2",
-    "superClasses" : [ "519" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Construct",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "label" : {
-      "IRI-based" : "Construct"
-    },
-    "subClasses" : [ "138", "2" ],
-    "id" : "519"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "\"Table of contents and index are created?\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q74_Me",
-      "en" : "Searchable"
-    },
-    "id" : "194",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Control",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "isDefinedBy" : [ {
-        "identifier" : "isDefinedBy",
-        "language" : "en",
-        "value" : "A concept is quantified, measured, and compared periodically or at certain points against defined evaluation criteria to check the fulfillment of the criteria. [KHMT09]",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "Control"
-    },
-    "id" : "171",
-    "superClasses" : [ "169" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q56_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is unambiguous if, and only if, every requirement stated therein has only one interpretation [7]. It is impossible to completely remove the ambiguity from an SRS written in natural language.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q56_S",
-      "en" : "Unambiguous"
-    },
-    "attributes" : [ "external" ],
-    "id" : "102",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q73_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q73_Me",
-      "en" : "Cross reference"
-    },
-    "attributes" : [ "external" ],
-    "id" : "281",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Comprehensiveness is derived from “Unambiguous” and “Verifiable” of IEEE Std. 830. From the perspective of developers, use of standard description method, templates and terms lead to “Unambiguous” and “Verifiable”.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[STH+13]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[STH+13]_Q42_S",
-      "en" : "Comprehensiveness"
-    },
-    "id" : "414",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q134_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"criteria that pertain to a standardized style or format of the agile requirements specification\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[HZ18]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[HZ18]_Q134_S",
-      "en" : "Uniformity"
-    },
-    "id" : "416",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q62_Me",
-      "en" : "Freedom from ambiguity"
-    },
-    "id" : "35",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q65_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is complete if, and only if, it includes the following elements [7]: All significant requirements, whether relating to functionality, performance, design constraints, attributes, or external interfaces; Definition of the responses of the software to all realizable classes of input data in all realizable situations; Full labels and references to all figures, tables, and diagrams in the SRS and definition of all terms and units of measure;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q65_S",
-      "en" : "Complete"
-    },
-    "attributes" : [ "external" ],
-    "id" : "651",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Gli20]_Q154_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Section",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "Multiple requirements: \"if there are mandatory structuring or formatting instructions, the work product must conform to them.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[GLSB20]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[Gli20]_Q154_",
-      "undefined" : "Conformant"
-    },
-    "id" : "192",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Section",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "All stakeholders",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The set of requirements stands alone such that it sufficiently describes the necessary capabilities, characteristics, constraints or quality factors to meet entity needs without needing further information. In addition, the set does not contain any To Be Defined (TBD), To Be Specified (TBS), or To Be Resolved (TBR) clauses. Resolution of the TBx designations may be iterative and there is an acceptable timeframe for TBx items, determined by risks and dependencies. To improve completeness, the following practices can be adopted:\ni) include all requirements types relevant to the system under consideration;\nii) account for requirements in all stages of the life cycle; and\niii) involve all stakeholders in the requirements elicitation, capture, and analysis activity.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q111_Me",
-      "en" : "Complete"
-    },
-    "id" : "152",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Partial software versions are nor released at the end of each development sprint, which delays the software validation;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "Domain" : [ {
-        "identifier" : "Domain",
-        "language" : "en",
-        "value" : "Organizational",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q31__V",
-      "en" : "Late Software Validations"
-    },
-    "id" : "328",
-    "superClasses" : [ "138" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "undefined",
-        "value" : "\"All artifacts and certain elements of the artifact are identifiable using identifier.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[STH+13]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Syntactic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[STH+13]_Q51_A",
-      "en" : "Identifiability"
-    },
-    "id" : "72",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q64_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q64_Me",
-      "en" : "Reference"
-    },
-    "id" : "130",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Sum up the measured total quality scores.",
-        "type" : "label"
-      } ],
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"CTG is derived from “Correct” and “Ranked for importance and/or stability” in IEEE Std. 830. CTG evaluates the degree of conformance of the descriptions of a SRS to the system goals. We assume if the goals are clearly described, the developers can judge the “correctness” and “rank for importance” of the descriptions of SRS.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[STH+13]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[STH+13]_Q40_S",
-      "en" : "Confirm to Goal"
-    },
-    "id" : "748",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is traceable if the origin of each of ist requirements is clear and if it facilitates the referencing of each requirement in future development or enhancement documentation [7].\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q75_S",
-      "en" : "Traceable"
-    },
-    "id" : "424",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q88_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is design independent if and only if there exist more than one system design and implementation that correctly implements all requirements stated in the SRS. The purpose of the SRS is to express desired external behavior to a degree that user satisfaction is guaranteed and a maximum number of designs exist to satisfy those needs and behaviore.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q88_Me",
-      "en" : "Design-Independent"
-    },
-    "id" : "680",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"the ability for a human being to read the natural language requirements specification at hand\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[BBG+06]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q127_Me",
-      "en" : "Readability"
-    },
-    "id" : "476",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Internal Inspector with Project and Domain Knowledge",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is correct if, and only if, every requirement stated therein is one that the software shall meet [7].\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q52_Me",
-      "en" : "Correct"
-    },
-    "id" : "248",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Improve",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "isDefinedBy" : [ {
-        "identifier" : "isDefinedBy",
-        "language" : "en",
-        "value" : "Variation factors influencing the concept of internets are known. Therefore, the concept of interest can be improved by improving its influencing factors). [KHMT09]",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "Improve"
-    },
-    "id" : "172",
-    "superClasses" : [ "169" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q61_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Semantic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q61_Me",
-      "en" : "Quantative"
-    },
-    "attributes" : [ "external" ],
-    "id" : "354",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is uchicvable if and only if there could exist at least one system design and implementation that correctly implements all the requirements stated in the SRS.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q86_Me",
-      "en" : "Achievable"
-    },
-    "id" : "338",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q54_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Section",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Semantic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q54_Me",
-      "en" : "Project objective"
-    },
-    "id" : "330",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q22_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"It is the description of a criteria that supports the acceptance, or not, of a requirement;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q22_",
-      "en" : "Acceptance Criteria"
-    },
-    "id" : "363",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"the ability to test that a CBS implements what is specified in the natural language requirements specification at hand\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[BBG+06]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q129_Me",
-      "en" : "Testability"
-    },
-    "id" : "358",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q21_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The requirements are described using a language directed to the developer. Technical terms and jargon are used, if needed;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q21_",
-      "en" : "Team-Oriented"
-    },
-    "id" : "451",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q44_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[STH+13]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[STH+13]_Q44_A",
-      "en" : "Clarity of project goals"
-    },
-    "id" : "498",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q24_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Consits of the description of the design and interface constraints, validation rules, error messages or any other technical information for the operationalization of the requirements;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q24_",
-      "en" : "Technical Aspects"
-    },
-    "id" : "47",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q98_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is reusable if and only if its sentences, paragraphs and sections can be easily adopted or adapted for use in a subsequent SRS. Much research is underway conceming reuse of design and code. Little extends to the requirements domain.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q98_Me",
-      "en" : "Reusable"
-    },
-    "id" : "51",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q120_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Non-Ambiguity requires that there be only one semantic interpretation of the requirement.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[Hal93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Semantic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[Hal93]_Q120_A",
-      "en" : "Non-Ambiguity"
-    },
-    "id" : "1",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q71_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Internal Inspector with Project and Domain Knowledge",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is internally consistent if, and only if, no subset of individual requirements described in it conflict [7]. It is virtually impossible for third-party inspectors without domain knowledge to find inconsistencies in an SRS written in a natural language. Therefore, we do not derive new quality characteristics from this quality characteristic. We simply assign this quality characteristic to the second-stage inspection by the project.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q71_Me",
-      "en" : "Consistent"
-    },
-    "attributes" : [ "external" ],
-    "id" : "264",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q76_Me",
-      "en" : "Backward traceability"
-    },
-    "id" : "15",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q23_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Consist of the description of the constraints in the system's operation, such as security, performance, multilingual support, among others.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q23_",
-      "en" : "Non-functional Requirements"
-    },
-    "id" : "162",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The requirement is structured and worded such that its realization can be proven (verified) to the customer’s satisfaction at the level the requirements exists. Verifiability is enhanced when the requirement is measurable.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[ISO/IEC/IEEE29148:2018]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q108_Me",
-      "en" : "Verifiable"
-    },
-    "id" : "179",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q68_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Defined Viewpoints in the SRS / Thrid-Party Inspector",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q68_Me",
-      "en" : "TBD"
-    },
-    "attributes" : [ "external" ],
-    "id" : "296",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q96_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The right level of detail is a function of how the SRS is being used. Generally, the SRS should be specific enough that any system built that satisfies the requirements in the SRS satisfies d user needs, and abstract enough that all systems that satisfy all user needs also satisfy all requirements. Thus, an SRS being used for a contract between customer and developer should be relatively specific to emure the customer knows what is being acquired, and them are a minimum of surprises.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q96_Me",
-      "en" : "At Right Level of Abstraction / Detail"
-    },
-    "id" : "187",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q58_S",
-      "en" : "Definiteness"
-    },
-    "attributes" : [ "external" ],
-    "id" : "277",
-    "superClasses" : [ "11" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Internal Inspector with Project and Domain Knowledge",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is achievable if and only if there could exist at least one system design and implementation that correctly implements all the requirements stated in the SRS [3]. It is virtually impossible for third-party inspectors without domain knowledge to conclude if there could exist at least one possible system design.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[TA15]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q78_Me",
-      "en" : "Achievable"
-    },
-    "id" : "160",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Measure",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "isDefinedBy" : [ {
-        "identifier" : "isDefinedBy",
-        "language" : "en",
-        "value" : "A concept is quantified and measured to determine the actual value. [KHMT09].",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "Measure"
-    },
-    "id" : "22",
-    "superClasses" : [ "169" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q20_",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "Viewpoint" : [ {
-        "identifier" : "Viewpoint",
-        "language" : "undefined",
-        "value" : "Developer",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The requirements are described in an objective manner, without long, prolix, redundant and unnecessary details to developer;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Semantic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "true",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q20_",
-      "en" : "Objectivity"
-    },
-    "id" : "644",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q38__V",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The development team has little experience with the ASD values, principles, and practices;\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[MVSG18]",
-        "type" : "label"
-      } ],
-      "Domain" : [ {
-        "identifier" : "Domain",
-        "language" : "en",
-        "value" : "Stakeholders",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q38__V",
-      "en" : "Inadequate team experience with agile software development"
-    },
-    "id" : "315",
-    "superClasses" : [ "138" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#Estimate",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "isDefinedBy" : [ {
-        "identifier" : "isDefinedBy",
-        "language" : "en",
-        "value" : "A concept of interest is not measured directly but estimated by measuring related concepts. [KHMT09]",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "Estimate"
-    },
-    "id" : "170",
-    "superClasses" : [ "169" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q122_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Requirement",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Singularity refers to the attribute whereby a requirement cannot sensibly be expressed as two or more requirements having different subjects, verbs and/or objects.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[Hal93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[Hal93]_Q122_A",
-      "en" : "Singularity"
-    },
-    "id" : "638",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"the lack of contradictions and incongruities in the natural language requirements specification at hand\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[BBG+06]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q130_Me",
-      "en" : "Consistency"
-    },
-    "id" : "68",
-    "superClasses" : [ "2" ]
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "instances" : 0,
-    "annotations" : {
-      "Scope" : [ {
-        "identifier" : "Scope",
-        "language" : "undefined",
-        "value" : "Document",
-        "type" : "label"
-      } ],
-      "PractitionersInvolved" : [ {
-        "identifier" : "PractitionersInvolved",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ],
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"An SRS is organized if and only if its contents are arranged so that readers can easily locate information and logical relationships among adjacent sections is apparent. One way is to follow any of the many SRS standards [DOR90]. Certainly boiler plate sections of all SRS standards are rou~hly equivalent. Primary differences concern organization of detailed requirements. There are many ways to organize these.\"",
-        "type" : "label"
-      } ],
-      "Citation" : [ {
-        "identifier" : "Citation",
-        "language" : "en",
-        "value" : "[DOJ+93]",
-        "type" : "label"
-      } ],
-      "LinguisticComplexity" : [ {
-        "identifier" : "LinguisticComplexity",
-        "language" : "undefined",
-        "value" : "Pragmatic",
-        "type" : "label"
-      } ],
-      "EmpiricalEvidence" : [ {
-        "identifier" : "EmpiricalEvidence",
-        "language" : "undefined",
-        "value" : "false",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q100_Me",
-      "en" : "Organized"
-    },
-    "id" : "478",
-    "superClasses" : [ "2" ]
-  } ],
-  "property" : [ {
-    "id" : "0",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "3",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "5",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "8",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "12",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "14",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "16",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "18",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "20",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "25",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "29",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "32",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "34",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "36",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "37",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "38",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "39",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "41",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "42",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "43",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "45",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "46",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "48",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "50",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "52",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "54",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "56",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "58",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "64",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "66",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "69",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "71",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "73",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "75",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "77",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "79",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "81",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "83",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "84",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "87",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "88",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "89",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "90",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "91",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "92",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "93",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "94",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "95",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "96",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "97",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "98",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "100",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "103",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "104",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "105",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "107",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "108",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "109",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "110",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "111",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "112",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "113",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "114",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "115",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "116",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "117",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "118",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "121",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "122",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "123",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "125",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "127",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "129",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "132",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "136",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "139",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "142",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "144",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "145",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "147",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "149",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "151",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "153",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "154",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "157",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "159",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "161",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "164",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "166",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "177",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "178",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "180",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "182",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "184",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "186",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "188",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "190",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "191",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "193",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "195",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "196",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "198",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "201",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "206",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "207",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "210",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "212",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "213",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "214",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "215",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "216",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "217",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "219",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "220",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "221",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "223",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "224",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "225",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "226",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "227",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "230",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "231",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "234",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "236",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "238",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "241",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "242",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "244",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "245",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "247",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "249",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "250",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "251",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "252",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "253",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "255",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "256",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "257",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "258",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "259",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "260",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "262",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "263",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "265",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "266",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "267",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "268",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "270",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "271",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "273",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "274",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "276",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "278",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "279",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "280",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "282",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "284",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "287",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "288",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "290",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "291",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "293",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "295",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "297",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "298",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "299",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "301",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "303",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "305",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "307",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "311",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "313",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "314",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "316",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "317",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "319",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "321",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "323",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "324",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "327",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "329",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "331",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "332",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "333",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "334",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "335",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "336",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "337",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "339",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "340",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "342",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "343",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "344",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "346",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "347",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "348",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "349",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "350",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "351",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "353",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "355",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "356",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "357",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "359",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "360",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "361",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "362",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "364",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "365",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "366",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "367",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "368",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "369",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "370",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "371",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "372",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "374",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "376",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "377",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "378",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "379",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "380",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "381",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "382",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "383",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "384",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "385",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "386",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "387",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "388",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "389",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "390",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "391",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "392",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "393",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "394",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "395",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "397",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "398",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "399",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "400",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "401",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "402",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "404",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "405",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "406",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "408",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "409",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "410",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "412",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "413",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "415",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "417",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "419",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "420",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "421",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "422",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "423",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "426",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "427",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "428",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "429",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "430",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "431",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "432",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "433",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "434",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "435",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "436",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "437",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "439",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "440",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "441",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "443",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "444",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "446",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "447",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "448",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "449",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "450",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "452",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "453",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "455",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "456",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "457",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "458",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "459",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "460",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "462",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "463",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "464",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "465",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "467",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "468",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "469",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "470",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "471",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "472",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "473",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "475",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "477",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "479",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "480",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "481",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "482",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "483",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "484",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "486",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "487",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "488",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "489",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "490",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "491",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "492",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "494",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "495",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "496",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "497",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "499",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "501",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "502",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "503",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "504",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "505",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "507",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "508",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "509",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "510",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "511",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "512",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "513",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "514",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "515",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "516",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "517",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "518",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "204",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "553",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "23",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "628",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "541",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "632",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "633",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "634",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "635",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "641",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "642",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "567",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "566",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "571",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "572",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "579",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "580",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "590",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "596",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "598",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "601",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "611",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "643",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "615",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "616",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "648",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "649",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "650",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "652",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "629",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "657",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "658",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "659",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "660",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "661",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "662",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "663",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "664",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "665",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "667",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "668",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "669",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "555",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "561",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "670",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "671",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "520",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "523",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "564",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "673",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "674",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "675",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "676",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "677",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "678",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "570",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "524",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "573",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "525",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "583",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "679",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "584",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "681",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "682",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "683",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "684",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "685",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "686",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "687",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "688",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "689",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "690",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "691",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "692",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "693",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "694",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "695",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "696",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "697",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "698",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "168",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "709",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "710",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "711",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "712",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "599",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "713",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "600",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "714",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "602",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "715",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "716",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "717",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "606",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "718",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "607",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "719",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "720",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "721",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "722",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "723",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "724",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "725",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "726",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "727",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "728",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "729",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "730",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "732",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "733",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "734",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "735",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "736",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "737",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "738",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "739",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "740",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "741",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "742",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "743",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "744",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "745",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "746",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "614",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "617",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "622",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "624",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "627",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "539",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "750",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "751",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "558",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "752",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "753",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "754",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "755",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "756",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "757",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "758",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "759",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "707",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "760",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "569",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "568",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "761",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "762",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "704",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "763",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "705",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "764",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "765",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "766",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "767",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "672",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "574",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "768",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "526",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "527",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "578",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "769",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "770",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "771",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "582",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "581",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "772",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "773",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "587",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "532",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "774",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "775",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "776",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "699",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "537",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "702",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "703",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "777",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "778",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "779",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "780",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "594",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "595",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "781",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "782",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "783",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "784",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "597",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "785",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "786",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "787",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "788",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "789",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "790",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "791",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "603",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "605",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "792",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "793",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "794",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "795",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "796",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "797",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "798",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "799",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "800",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "801",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "802",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "803",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "804",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "805",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "806",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "807",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "808",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "809",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "810",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "811",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "812",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "813",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "814",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "815",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "816",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "817",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "818",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "819",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "820",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "821",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "700",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "822",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "701",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "823",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "824",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "825",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "621",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "826",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "827",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "828",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "829",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "830",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "623",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "831",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "832",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "833",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "834",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "835",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "626",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "837",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "838",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "839",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "840",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "841",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "842",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "557",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "562",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "577",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "576",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "528",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "529",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "530",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "531",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "588",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "533",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "534",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "535",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "536",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "589",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "542",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "543",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "544",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "546",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "545",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "591",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "547",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "592",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "548",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "593",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "549",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "843",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "844",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "845",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "28",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "846",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "847",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "610",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "613",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "618",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "619",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "620",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "848",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "849",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "625",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "538",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "540",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "631",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "550",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "551",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "636",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "552",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "556",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "559",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "850",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "521",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "851",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "560",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "868",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "869",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "870",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "871",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "872",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "563",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "873",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "874",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "875",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "876",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "565",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "877",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "878",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "879",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "880",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "881",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "882",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "883",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "575",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "884",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "885",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "886",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "887",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "585",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "888",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "889",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "586",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "890",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "891",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "892",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "893",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "894",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "895",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "896",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "897",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "898",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "852",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "853",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "854",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "855",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "899",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "900",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "901",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "902",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "903",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "904",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "905",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "906",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "907",
-    "type" : "rdfs:SubClassOf"
-  }, {
-    "id" : "522",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "604",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "856",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "857",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "858",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "859",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "860",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "861",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "608",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "862",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "863",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "864",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "865",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "609",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "866",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "867",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "612",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "706",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "708",
-    "type" : "owl:objectProperty"
-  }, {
-    "id" : "630",
-    "type" : "owl:objectProperty"
-  } ],
-  "propertyAttribute" : [ {
-    "range" : "2",
-    "domain" : "1",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "0"
-  }, {
-    "range" : "2",
-    "domain" : "4",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "3"
-  }, {
-    "range" : "2",
-    "domain" : "6",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "5"
-  }, {
-    "range" : "2",
-    "domain" : "9",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "8"
-  }, {
-    "range" : "2",
-    "domain" : "13",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "12"
-  }, {
-    "range" : "2",
-    "domain" : "15",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "14"
-  }, {
-    "range" : "2",
-    "domain" : "17",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "16"
-  }, {
-    "range" : "2",
-    "domain" : "19",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "18"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q93_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q93_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "21",
-    "attributes" : [ "object" ],
-    "id" : "20"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "27",
-    "label" : {
-      "IRI-based" : "E01_A",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "26",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "25"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_G",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "30",
-    "label" : {
-      "IRI-based" : "E01_G",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "26",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "29"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "33",
-    "label" : {
-      "IRI-based" : "E01_D",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "26",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "32"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_E",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "35",
-    "label" : {
-      "IRI-based" : "E01_E",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "26",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "34"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_N",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "35",
-    "label" : {
-      "IRI-based" : "E01_N",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "27",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "36"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_P",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "30",
-    "label" : {
-      "IRI-based" : "E01_P",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "27",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "37"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_J",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "26",
-    "label" : {
-      "IRI-based" : "E01_J",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "27",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "38"
-  }, {
-    "range" : "2",
-    "domain" : "40",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "39"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_M",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "33",
-    "label" : {
-      "IRI-based" : "E01_M",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "27",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "41"
-  }, {
-    "range" : "2",
-    "domain" : "21",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "42"
-  }, {
-    "range" : "2",
-    "domain" : "44",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "43"
-  }, {
-    "range" : "2",
-    "domain" : "27",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "45"
-  }, {
-    "range" : "2",
-    "domain" : "47",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "46"
-  }, {
-    "range" : "2",
-    "domain" : "49",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "48"
-  }, {
-    "range" : "2",
-    "domain" : "51",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "50"
-  }, {
-    "range" : "2",
-    "domain" : "53",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "52"
-  }, {
-    "range" : "2",
-    "domain" : "55",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "54"
-  }, {
-    "range" : "2",
-    "domain" : "57",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "56"
-  }, {
-    "range" : "2",
-    "domain" : "59",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "58"
-  }, {
-    "range" : "2",
-    "domain" : "65",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "64"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_BC",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "68",
-    "label" : {
-      "IRI-based" : "E05_BC",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "67",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "66"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_BB",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "70",
-    "label" : {
-      "IRI-based" : "E05_BB",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "67",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "69"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_Q",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "72",
-    "label" : {
-      "IRI-based" : "E14_Q",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "6",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "71"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_P",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "74",
-    "label" : {
-      "IRI-based" : "E14_P",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "6",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "73"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "76",
-    "label" : {
-      "IRI-based" : "E14_S",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "74",
-    "attributes" : [ "object", "symmetric", "asymmetric" ],
-    "id" : "75"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_BA",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "78",
-    "label" : {
-      "IRI-based" : "E05_BA",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "67",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "77"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_R",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "80",
-    "label" : {
-      "IRI-based" : "E14_R",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "6",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "79"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AZ",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "82",
-    "label" : {
-      "IRI-based" : "E05_AZ",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "67",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "81"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AY",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "65",
-    "label" : {
-      "IRI-based" : "E05_AY",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "67",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "83"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E25_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "86",
-    "label" : {
-      "IRI-based" : "E25_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "85",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "84"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AN",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "70",
-    "label" : {
-      "IRI-based" : "E05_AN",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "68",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "87"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AM",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "78",
-    "label" : {
-      "IRI-based" : "E05_AM",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "68",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "88"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AP",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "67",
-    "label" : {
-      "IRI-based" : "E05_AP",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "68",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "89"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E25_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "85",
-    "label" : {
-      "IRI-based" : "E25_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "86",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "90"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AI",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "67",
-    "label" : {
-      "IRI-based" : "E05_AI",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "70",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "91"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AL",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "82",
-    "label" : {
-      "IRI-based" : "E05_AL",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "68",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "92"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AK",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "65",
-    "label" : {
-      "IRI-based" : "E05_AK",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "68",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "93"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AF",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "78",
-    "label" : {
-      "IRI-based" : "E05_AF",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "70",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "94"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AE",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "82",
-    "label" : {
-      "IRI-based" : "E05_AE",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "70",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "95"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AG",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "68",
-    "label" : {
-      "IRI-based" : "E05_AG",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "70",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "96"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AB",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "67",
-    "label" : {
-      "IRI-based" : "E05_AB",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "78",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "97"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AD",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "65",
-    "label" : {
-      "IRI-based" : "E05_AD",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "70",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "98"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#E01_AW",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "102",
-    "label" : {
-      "IRI-based" : "E01_AW",
-      "en" : "isEquivalent"
-    },
-    "domain" : "101",
-    "attributes" : [ "object", "transitive", "external", "symmetric" ],
-    "id" : "100"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_E",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "72",
-    "label" : {
-      "IRI-based" : "E14_E",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "74",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "103"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#E01_AN",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "101",
-    "label" : {
-      "IRI-based" : "E01_AN",
-      "en" : "isEquivalent"
-    },
-    "domain" : "102",
-    "attributes" : [ "object", "transitive", "external", "symmetric" ],
-    "id" : "104"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "6",
-    "label" : {
-      "IRI-based" : "E14_D",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "76",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "105"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_G",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "76",
-    "label" : {
-      "IRI-based" : "E14_G",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "72",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "107"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_F",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "6",
-    "label" : {
-      "IRI-based" : "E14_F",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "74",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "108"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "74",
-    "label" : {
-      "IRI-based" : "E14_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "76",
-    "attributes" : [ "object", "symmetric", "asymmetric" ],
-    "id" : "109"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "80",
-    "label" : {
-      "IRI-based" : "E14_C",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "76",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "110"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "72",
-    "label" : {
-      "IRI-based" : "E14_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "76",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "111"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_M",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "72",
-    "label" : {
-      "IRI-based" : "E14_M",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "80",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "112"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_L",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "74",
-    "label" : {
-      "IRI-based" : "E14_L",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "80",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "113"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_O",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "76",
-    "label" : {
-      "IRI-based" : "E14_O",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "6",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "114"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_N",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "6",
-    "label" : {
-      "IRI-based" : "E14_N",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "80",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "115"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_I",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "80",
-    "label" : {
-      "IRI-based" : "E14_I",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "72",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "116"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_H",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "74",
-    "label" : {
-      "IRI-based" : "E14_H",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "72",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "117"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q119_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[Hal93]_Q119_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "119",
-    "attributes" : [ "object" ],
-    "id" : "118"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_K",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "76",
-    "label" : {
-      "IRI-based" : "E14_K",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "80",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "121"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_J",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "6",
-    "label" : {
-      "IRI-based" : "E14_J",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "72",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "122"
-  }, {
-    "range" : "2",
-    "domain" : "124",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "123"
-  }, {
-    "range" : "2",
-    "domain" : "126",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "125"
-  }, {
-    "range" : "2",
-    "domain" : "128",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "127"
-  }, {
-    "range" : "2",
-    "domain" : "130",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "129"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E45_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "134",
-    "label" : {
-      "IRI-based" : "E45_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "133",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "132"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E45_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "133",
-    "label" : {
-      "IRI-based" : "E45_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "134",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "136"
-  }, {
-    "range" : "2",
-    "domain" : "140",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "139"
-  }, {
-    "range" : "2",
-    "domain" : "143",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "142"
-  }, {
-    "range" : "2",
-    "domain" : "72",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "144"
-  }, {
-    "range" : "2",
-    "domain" : "146",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "145"
-  }, {
-    "range" : "2",
-    "domain" : "148",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "147"
-  }, {
-    "range" : "2",
-    "domain" : "150",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "149"
-  }, {
-    "range" : "2",
-    "domain" : "152",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "151"
-  }, {
-    "range" : "2",
-    "domain" : "141",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "153"
-  }, {
-    "range" : "2",
-    "domain" : "155",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "154"
-  }, {
-    "range" : "2",
-    "domain" : "158",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "157"
-  }, {
-    "range" : "2",
-    "domain" : "160",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "159"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E34_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "163",
-    "label" : {
-      "IRI-based" : "E34_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "162",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "161"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[TA15]_Q73_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "165",
-    "attributes" : [ "object" ],
-    "id" : "164"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q35__V_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "137",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Although ASD builds on the notion that changes are opportunities for the companies, excessive changes may impair the team productivity and contribute to SRS becoming outdated\"",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q35__V_A",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "167",
-    "attributes" : [ "object" ],
-    "id" : "166"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E34_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "162",
-    "label" : {
-      "IRI-based" : "E34_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "163",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "177"
-  }, {
-    "range" : "2",
-    "domain" : "179",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "178"
-  }, {
-    "range" : "2",
-    "domain" : "181",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "180"
-  }, {
-    "range" : "2",
-    "domain" : "183",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "182"
-  }, {
-    "range" : "2",
-    "domain" : "185",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "184"
-  }, {
-    "range" : "2",
-    "domain" : "187",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "186"
-  }, {
-    "range" : "2",
-    "domain" : "189",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "188"
-  }, {
-    "range" : "2",
-    "domain" : "86",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "190"
-  }, {
-    "range" : "2",
-    "domain" : "192",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "191"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[TA15]_Q74_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "194",
-    "attributes" : [ "object" ],
-    "id" : "193"
-  }, {
-    "range" : "2",
-    "domain" : "135",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "195"
-  }, {
-    "range" : "2",
-    "domain" : "197",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "196"
-  }, {
-    "range" : "2",
-    "domain" : "199",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "198"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q08_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "203",
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q08_S_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "202",
-    "attributes" : [ "object" ],
-    "id" : "201"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q08_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q08_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "202",
-    "attributes" : [ "object" ],
-    "id" : "206"
-  }, {
-    "range" : "2",
-    "domain" : "208",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "207"
-  }, {
-    "range" : "2",
-    "domain" : "211",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "210"
-  }, {
-    "range" : "2",
-    "domain" : "131",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "212"
-  }, {
-    "range" : "2",
-    "domain" : "203",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "213"
-  }, {
-    "range" : "2",
-    "domain" : "106",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "214"
-  }, {
-    "range" : "2",
-    "domain" : "165",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "215"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_X",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "1",
-    "label" : {
-      "IRI-based" : "E01_X",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "31",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "216"
-  }, {
-    "range" : "2",
-    "domain" : "218",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "217"
-  }, {
-    "range" : "2",
-    "domain" : "67",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "219"
-  }, {
-    "range" : "2",
-    "domain" : "30",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "220"
-  }, {
-    "range" : "2",
-    "domain" : "222",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "221"
-  }, {
-    "range" : "2",
-    "domain" : "163",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "223"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_U",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "24",
-    "label" : {
-      "IRI-based" : "E01_U",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "31",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "224"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E12_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "61",
-    "label" : {
-      "IRI-based" : "E12_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "13",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "225"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E12_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "13",
-    "label" : {
-      "IRI-based" : "E12_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "61",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "226"
-  }, {
-    "range" : "2",
-    "domain" : "228",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "227"
-  }, {
-    "range" : "2",
-    "domain" : "162",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "230"
-  }, {
-    "range" : "2",
-    "domain" : "232",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "231"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[TA15]_Q72_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "235",
-    "attributes" : [ "object" ],
-    "id" : "234"
-  }, {
-    "range" : "11",
-    "domain" : "237",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "236"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_BB",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "239",
-    "label" : {
-      "IRI-based" : "E03_BB",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "146",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "238"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "165",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q72_S_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "235",
-    "attributes" : [ "object" ],
-    "id" : "241"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q72_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "194",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q72_S_C",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "235",
-    "attributes" : [ "object" ],
-    "id" : "242"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AW",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "60",
-    "label" : {
-      "IRI-based" : "E03_AW",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "211",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "244"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AS",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "246",
-    "label" : {
-      "IRI-based" : "E03_AS",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "211",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "245"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AV",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "248",
-    "label" : {
-      "IRI-based" : "E03_AV",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "211",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "247"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AP",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "211",
-    "label" : {
-      "IRI-based" : "E03_AP",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "60",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "249"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AO",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "248",
-    "label" : {
-      "IRI-based" : "E03_AO",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "60",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "250"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AR",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "205",
-    "label" : {
-      "IRI-based" : "E03_AR",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "211",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "251"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AL",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "246",
-    "label" : {
-      "IRI-based" : "E03_AL",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "60",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "252"
-  }, {
-    "range" : "11",
-    "domain" : "254",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "253"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q92_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "233",
-    "attributes" : [ "object" ],
-    "id" : "255"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AK",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "205",
-    "label" : {
-      "IRI-based" : "E03_AK",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "60",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "256"
-  }, {
-    "range" : "11",
-    "domain" : "62",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "257"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AH",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "60",
-    "label" : {
-      "IRI-based" : "E03_AH",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "248",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "258"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_J",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "78",
-    "label" : {
-      "IRI-based" : "E05_J",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "65",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "259"
-  }, {
-    "range" : "11",
-    "domain" : "261",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "260"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_K",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "70",
-    "label" : {
-      "IRI-based" : "E05_K",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "65",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "262"
-  }, {
-    "range" : "11",
-    "domain" : "264",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "263"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_L",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "68",
-    "label" : {
-      "IRI-based" : "E05_L",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "65",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "265"
-  }, {
-    "range" : "11",
-    "domain" : "99",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "266"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AI",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "211",
-    "label" : {
-      "IRI-based" : "E03_AI",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "248",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "267"
-  }, {
-    "range" : "11",
-    "domain" : "269",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "268"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AD",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "205",
-    "label" : {
-      "IRI-based" : "E03_AD",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "248",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "270"
-  }, {
-    "range" : "11",
-    "domain" : "272",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "271"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AC",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "146",
-    "label" : {
-      "IRI-based" : "E03_AC",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "239",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "273"
-  }, {
-    "range" : "11",
-    "domain" : "275",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "274"
-  }, {
-    "range" : "11",
-    "domain" : "277",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "276"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_I",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "82",
-    "label" : {
-      "IRI-based" : "E05_I",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "65",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "278"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AE",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "246",
-    "label" : {
-      "IRI-based" : "E03_AE",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "248",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "279"
-  }, {
-    "range" : "11",
-    "domain" : "281",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "280"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q41_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[STH+13]_Q41_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "283",
-    "attributes" : [ "object" ],
-    "id" : "282"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q94_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "209",
-    "attributes" : [ "object" ],
-    "id" : "284"
-  }, {
-    "range" : "11",
-    "domain" : "102",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "287"
-  }, {
-    "range" : "11",
-    "domain" : "289",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "288"
-  }, {
-    "range" : "11",
-    "domain" : "156",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "290"
-  }, {
-    "range" : "11",
-    "domain" : "292",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "291"
-  }, {
-    "range" : "11",
-    "domain" : "294",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "293"
-  }, {
-    "range" : "11",
-    "domain" : "296",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "295"
-  }, {
-    "range" : "11",
-    "domain" : "101",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "297"
-  }, {
-    "range" : "11",
-    "domain" : "10",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "298"
-  }, {
-    "range" : "11",
-    "domain" : "300",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "299"
-  }, {
-    "range" : "11",
-    "domain" : "302",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "301"
-  }, {
-    "range" : "138",
-    "domain" : "304",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "303"
-  }, {
-    "range" : "2",
-    "domain" : "306",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "305"
-  }, {
-    "range" : "138",
-    "domain" : "308",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "307"
-  }, {
-    "range" : "138",
-    "domain" : "137",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "311"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q114_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "208",
-    "attributes" : [ "object" ],
-    "id" : "313"
-  }, {
-    "range" : "138",
-    "domain" : "315",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "314"
-  }, {
-    "range" : "138",
-    "domain" : "312",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "316"
-  }, {
-    "range" : "138",
-    "domain" : "318",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "317"
-  }, {
-    "range" : "138",
-    "domain" : "320",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "319"
-  }, {
-    "range" : "138",
-    "domain" : "322",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "321"
-  }, {
-    "range" : "138",
-    "domain" : "167",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "323"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q53_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "326",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "add results of the inspection points",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q53_S_C",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "325",
-    "attributes" : [ "object" ],
-    "id" : "324"
-  }, {
-    "range" : "138",
-    "domain" : "328",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "327"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q53_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "330",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "add results of the inspection points",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q53_S_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "325",
-    "attributes" : [ "object" ],
-    "id" : "329"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q53_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[TA15]_Q53_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "325",
-    "attributes" : [ "object" ],
-    "id" : "331"
-  }, {
-    "range" : "169",
-    "domain" : "176",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "332"
-  }, {
-    "range" : "169",
-    "domain" : "120",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "333"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[HZ18]_Q135_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "211",
-    "attributes" : [ "object" ],
-    "id" : "334"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_X",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "309",
-    "label" : {
-      "IRI-based" : "E07_X",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "53",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "335"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "240",
-    "label" : {
-      "IRI-based" : "[HZ18]_Q135_S_C",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "211",
-    "attributes" : [ "object" ],
-    "id" : "336"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_Y",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "338",
-    "label" : {
-      "IRI-based" : "E07_Y",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "53",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "337"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "285",
-    "label" : {
-      "IRI-based" : "[HZ18]_Q135_S_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "211",
-    "attributes" : [ "object" ],
-    "id" : "339"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#integrate",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "277",
-    "label" : {
-      "IRI-based" : "integrate",
-      "undefined" : "integrate"
-    },
-    "domain" : "341",
-    "attributes" : [ "object", "external" ],
-    "id" : "340"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q135_S_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "6",
-    "label" : {
-      "IRI-based" : "[HZ18]_Q135_S_D",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "211",
-    "attributes" : [ "object" ],
-    "id" : "342"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q34__V_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "167",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Low customer availability to detail requirements and clarify doubts often leads to excessive change requests in the partial versions.\"",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q34__V_A",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "312",
-    "attributes" : [ "object" ],
-    "id" : "343"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q34__V_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "345",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"When the customer's unavailability it to validate the partial versions, the main problem is that the sprint backlog is not homologated.\"",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q34__V_B",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "312",
-    "attributes" : [ "object" ],
-    "id" : "344"
-  }, {
-    "range" : "169",
-    "domain" : "175",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "346"
-  }, {
-    "range" : "169",
-    "domain" : "172",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "347"
-  }, {
-    "range" : "169",
-    "domain" : "171",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "348"
-  }, {
-    "range" : "169",
-    "domain" : "174",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "349"
-  }, {
-    "range" : "169",
-    "domain" : "173",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "350"
-  }, {
-    "range" : "11",
-    "domain" : "352",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "351"
-  }, {
-    "range" : "11",
-    "domain" : "354",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "353"
-  }, {
-    "range" : "169",
-    "domain" : "170",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "355"
-  }, {
-    "range" : "169",
-    "domain" : "22",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "356"
-  }, {
-    "range" : "2",
-    "domain" : "358",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "357"
-  }, {
-    "range" : "2",
-    "domain" : "194",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "359"
-  }, {
-    "range" : "2",
-    "domain" : "26",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "360"
-  }, {
-    "range" : "2",
-    "domain" : "80",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "361"
-  }, {
-    "range" : "2",
-    "domain" : "363",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "362"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q84_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "65",
-    "attributes" : [ "object" ],
-    "id" : "364"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "248",
-    "label" : {
-      "IRI-based" : "E03_D",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "205",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "365"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_E",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "60",
-    "label" : {
-      "IRI-based" : "E03_E",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "205",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "366"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_F",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "211",
-    "label" : {
-      "IRI-based" : "E03_F",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "205",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "367"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "246",
-    "label" : {
-      "IRI-based" : "E03_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "205",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "368"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_L",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "60",
-    "label" : {
-      "IRI-based" : "E03_L",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "246",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "369"
-  }, {
-    "range" : "2",
-    "domain" : "31",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "370"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_M",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "211",
-    "label" : {
-      "IRI-based" : "E03_M",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "246",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "371"
-  }, {
-    "range" : "2",
-    "domain" : "373",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "372"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_CI",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "1",
-    "label" : {
-      "IRI-based" : "E01_CI",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "375",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "374"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_H",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "205",
-    "label" : {
-      "IRI-based" : "E03_H",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "246",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "376"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q99_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "128",
-    "attributes" : [ "object" ],
-    "id" : "377"
-  }, {
-    "range" : "2",
-    "domain" : "24",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "378"
-  }, {
-    "range" : "2",
-    "domain" : "283",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "379"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_CE",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "31",
-    "label" : {
-      "IRI-based" : "E01_CE",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "375",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "380"
-  }, {
-    "range" : "2",
-    "domain" : "235",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "381"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_K",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "248",
-    "label" : {
-      "IRI-based" : "E03_K",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "246",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "382"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_CF",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "24",
-    "label" : {
-      "IRI-based" : "E01_CF",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "375",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "383"
-  }, {
-    "range" : "2",
-    "domain" : "70",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "384"
-  }, {
-    "range" : "2",
-    "domain" : "74",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "385"
-  }, {
-    "range" : "2",
-    "domain" : "330",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "386"
-  }, {
-    "range" : "2",
-    "domain" : "325",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "387"
-  }, {
-    "range" : "2",
-    "domain" : "243",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "388"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_BW",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "24",
-    "label" : {
-      "IRI-based" : "E01_BW",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "240",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "389"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_BO",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "33",
-    "label" : {
-      "IRI-based" : "E01_BO",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "30",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "390"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_BP",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "35",
-    "label" : {
-      "IRI-based" : "E01_BP",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "30",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "391"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_BJ",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "375",
-    "label" : {
-      "IRI-based" : "E01_BJ",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "1",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "392"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_BK",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "26",
-    "label" : {
-      "IRI-based" : "E01_BK",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "30",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "393"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_BL",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "27",
-    "label" : {
-      "IRI-based" : "E01_BL",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "30",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "394"
-  }, {
-    "range" : "2",
-    "domain" : "396",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "395"
-  }, {
-    "range" : "2",
-    "domain" : "240",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "397"
-  }, {
-    "range" : "2",
-    "domain" : "338",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "398"
-  }, {
-    "range" : "2",
-    "domain" : "85",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "399"
-  }, {
-    "range" : "2",
-    "domain" : "233",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "400"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_BD",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "31",
-    "label" : {
-      "IRI-based" : "E01_BD",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "1",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "401"
-  }, {
-    "range" : "2",
-    "domain" : "403",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "402"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_BE",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "24",
-    "label" : {
-      "IRI-based" : "E01_BE",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "1",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "404"
-  }, {
-    "range" : "2",
-    "domain" : "7",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "405"
-  }, {
-    "range" : "2",
-    "domain" : "407",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "406"
-  }, {
-    "range" : "2",
-    "domain" : "63",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "408"
-  }, {
-    "range" : "2",
-    "domain" : "35",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "409"
-  }, {
-    "range" : "2",
-    "domain" : "411",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "410"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AY",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "30",
-    "label" : {
-      "IRI-based" : "E01_AY",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "35",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "412"
-  }, {
-    "range" : "2",
-    "domain" : "414",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "413"
-  }, {
-    "range" : "2",
-    "domain" : "416",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "415"
-  }, {
-    "range" : "2",
-    "domain" : "418",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "417"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AW",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "33",
-    "label" : {
-      "IRI-based" : "E01_AW",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "35",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "419"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q132_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "60",
-    "attributes" : [ "object" ],
-    "id" : "420"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AS",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "26",
-    "label" : {
-      "IRI-based" : "E01_AS",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "35",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "421"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AT",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "27",
-    "label" : {
-      "IRI-based" : "E01_AT",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "35",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "422"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E27_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "199",
-    "label" : {
-      "IRI-based" : "E27_C",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "424",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "423"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E27_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "228",
-    "label" : {
-      "IRI-based" : "E27_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "199",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "426"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AN",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "35",
-    "label" : {
-      "IRI-based" : "E01_AN",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "33",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "427"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E27_E",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "199",
-    "label" : {
-      "IRI-based" : "E27_E",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "228",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "428"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E27_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "228",
-    "label" : {
-      "IRI-based" : "E27_D",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "424",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "429"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AP",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "30",
-    "label" : {
-      "IRI-based" : "E01_AP",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "33",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "430"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AJ",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "375",
-    "label" : {
-      "IRI-based" : "E01_AJ",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "24",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "431"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E27_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "424",
-    "label" : {
-      "IRI-based" : "E27_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "199",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "432"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AK",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "26",
-    "label" : {
-      "IRI-based" : "E01_AK",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "33",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "433"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AL",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "27",
-    "label" : {
-      "IRI-based" : "E01_AL",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "33",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "434"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AG",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "1",
-    "label" : {
-      "IRI-based" : "E01_AG",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "24",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "435"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AA",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "375",
-    "label" : {
-      "IRI-based" : "E01_AA",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "31",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "436"
-  }, {
-    "range" : "2",
-    "domain" : "438",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "437"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E27_F",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "424",
-    "label" : {
-      "IRI-based" : "E27_F",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "228",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "439"
-  }, {
-    "range" : "2",
-    "domain" : "78",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "440"
-  }, {
-    "range" : "2",
-    "domain" : "442",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "441"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AD",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "31",
-    "label" : {
-      "IRI-based" : "E01_AD",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "24",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "443"
-  }, {
-    "range" : "2",
-    "domain" : "445",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "444"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_R",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "70",
-    "label" : {
-      "IRI-based" : "E05_R",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "82",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "446"
-  }, {
-    "range" : "2",
-    "domain" : "246",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "447"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "68",
-    "label" : {
-      "IRI-based" : "E05_S",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "82",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "448"
-  }, {
-    "range" : "2",
-    "domain" : "286",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "449"
-  }, {
-    "range" : "2",
-    "domain" : "451",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "450"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_U",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "67",
-    "label" : {
-      "IRI-based" : "E05_U",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "82",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "452"
-  }, {
-    "range" : "2",
-    "domain" : "454",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "453"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_N",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "67",
-    "label" : {
-      "IRI-based" : "E05_N",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "65",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "455"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q106_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q106_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "200",
-    "attributes" : [ "object" ],
-    "id" : "456"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_P",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "65",
-    "label" : {
-      "IRI-based" : "E05_P",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "82",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "457"
-  }, {
-    "range" : "2",
-    "domain" : "61",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "458"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_Q",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "78",
-    "label" : {
-      "IRI-based" : "E05_Q",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "82",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "459"
-  }, {
-    "range" : "2",
-    "domain" : "461",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "460"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_Z",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "68",
-    "label" : {
-      "IRI-based" : "E05_Z",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "78",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "462"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_W",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "65",
-    "label" : {
-      "IRI-based" : "E05_W",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "78",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "463"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_X",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "82",
-    "label" : {
-      "IRI-based" : "E05_X",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "78",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "464"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_Y",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "70",
-    "label" : {
-      "IRI-based" : "E05_Y",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "78",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "465"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q06_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "85",
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q06_S_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "106",
-    "attributes" : [ "object" ],
-    "id" : "467"
-  }, {
-    "range" : "2",
-    "domain" : "345",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "468"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q06_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q06_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "106",
-    "attributes" : [ "object" ],
-    "id" : "469"
-  }, {
-    "range" : "2",
-    "domain" : "76",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "470"
-  }, {
-    "range" : "2",
-    "domain" : "285",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "471"
-  }, {
-    "range" : "2",
-    "domain" : "60",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "472"
-  }, {
-    "range" : "2",
-    "domain" : "474",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "473"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q127_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "476",
-    "attributes" : [ "object" ],
-    "id" : "475"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E09_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "194",
-    "label" : {
-      "IRI-based" : "E09_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "478",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "477"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "134",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q66_S_C",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "143",
-    "attributes" : [ "object" ],
-    "id" : "479"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E09_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "478",
-    "label" : {
-      "IRI-based" : "E09_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "194",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "480"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "181",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q66_S_D",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "143",
-    "attributes" : [ "object" ],
-    "id" : "481"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[TA15]_Q66_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "143",
-    "attributes" : [ "object" ],
-    "id" : "482"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q66_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "63",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q66_S_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "143",
-    "attributes" : [ "object" ],
-    "id" : "483"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E51_E",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "345",
-    "label" : {
-      "IRI-based" : "E51_E",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "485",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "484"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q101_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "183",
-    "attributes" : [ "object" ],
-    "id" : "486"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E51_F",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "345",
-    "label" : {
-      "IRI-based" : "E51_F",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "143",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "487"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E51_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "143",
-    "label" : {
-      "IRI-based" : "E51_C",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "345",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "488"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E51_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "485",
-    "label" : {
-      "IRI-based" : "E51_D",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "345",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "489"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E51_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "143",
-    "label" : {
-      "IRI-based" : "E51_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "485",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "490"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E51_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "485",
-    "label" : {
-      "IRI-based" : "E51_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "143",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "491"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q75_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "493",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q75_S_B",
-      "en" : "refines"
-    },
-    "domain" : "272",
-    "attributes" : [ "object", "external" ],
-    "id" : "492"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q75_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "156",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q75_S_C",
-      "en" : "refines"
-    },
-    "domain" : "272",
-    "attributes" : [ "object", "external" ],
-    "id" : "494"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "414",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q108_Me_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "179",
-    "attributes" : [ "object" ],
-    "id" : "495"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q108_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q108_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "179",
-    "attributes" : [ "object" ],
-    "id" : "496"
-  }, {
-    "range" : "2",
-    "domain" : "498",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "497"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q91_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q91_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "500",
-    "attributes" : [ "object" ],
-    "id" : "499"
-  }, {
-    "range" : "2",
-    "domain" : "309",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "501"
-  }, {
-    "range" : "2",
-    "domain" : "310",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "502"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q95_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "407",
-    "attributes" : [ "object" ],
-    "id" : "503"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q123_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[Hal93]_Q123_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "158",
-    "attributes" : [ "object" ],
-    "id" : "504"
+    "id" : "5",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "30",
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q126_S_C",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "506",
-    "attributes" : [ "object" ],
-    "id" : "505"
+    "id" : "72",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_M_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[Bel12]_Q10_M_A",
-      "undefined" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "26",
-    "attributes" : [ "object" ],
-    "id" : "507"
+    "id" : "73",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "358",
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q126_S_D",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "506",
-    "attributes" : [ "object" ],
-    "id" : "508"
+    "id" : "74",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q126_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "506",
-    "attributes" : [ "object" ],
-    "id" : "509"
+    "id" : "75",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q126_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "476",
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q126_S_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "506",
-    "attributes" : [ "object" ],
-    "id" : "510"
+    "id" : "76",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "143",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The first and second perspectives relate to completeness of requirements. On the other hand, the third perspective relates to completeness of description. Thirdparty inspector can evaluate only the completeness of descriptions. It is reasonable to assume that the completeness of requirements, as with correctness, can be evaluated during the second-stage inspection by the project if accountability is satisfied. Thus we define two new quality characteristics, namely: descriptive completeness and requirement completeness.",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q65_S_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "9",
-    "attributes" : [ "object" ],
-    "id" : "511"
+    "id" : "78",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "338",
-    "label" : {
-      "IRI-based" : "E07_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "309",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "512"
+    "id" : "79",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "185",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The first and second perspectives relate to completeness of requirements. On the other hand, the third perspective relates to completeness of description. Thirdparty inspector can evaluate only the completeness of descriptions. It is reasonable to assume that the completeness of requirements, as with correctness, can be evaluated during the second-stage inspection by the project if accountability is satisfied. Thus we define two new quality characteristics, namely: descriptive completeness and requirement completeness.\"",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q65_S_C",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "9",
-    "attributes" : [ "object" ],
-    "id" : "513"
+    "id" : "81",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_J",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "53",
-    "label" : {
-      "IRI-based" : "E07_J",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "338",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "514"
+    "id" : "82",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_K",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "160",
-    "label" : {
-      "IRI-based" : "E07_K",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "338",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "515"
+    "id" : "83",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "53",
-    "label" : {
-      "IRI-based" : "E07_D",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "309",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "516"
+    "id" : "84",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_E",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "160",
-    "label" : {
-      "IRI-based" : "E07_E",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "309",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "517"
+    "id" : "85",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_G",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "309",
-    "label" : {
-      "IRI-based" : "E07_G",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "338",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "518"
+    "id" : "86",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#hasRefinementStructureC",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "519",
-    "label" : {
-      "IRI-based" : "hasRefinementStructureC"
-    },
-    "superproperty" : [ "520" ],
-    "domain" : "519",
-    "subproperty" : [ "241", "242", "505", "508", "510", "521", "511", "513", "522", "479", "523", "481", "483", "495", "524", "525", "526", "527", "528", "529", "530", "531", "201", "532", "324", "533", "329", "534", "535", "536", "537", "538", "539", "540", "336", "339", "541", "542", "342", "543", "544", "545", "546", "547", "548", "549", "550", "551", "467", "552" ],
-    "attributes" : [ "object" ],
-    "id" : "204"
+    "id" : "87",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q49_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[STH+13]_Q49_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "7",
-    "attributes" : [ "object" ],
-    "id" : "553"
+    "id" : "88",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#hasPurpose",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "169",
-    "label" : {
-      "IRI-based" : "hasPurpose"
-    },
-    "superproperty" : [ "520" ],
-    "domain" : "519",
-    "subproperty" : [ "555", "556", "234", "557", "558", "559", "20", "475", "560", "561", "255", "562", "563", "564", "482", "282", "284", "565", "566", "567", "486", "568", "569", "570", "571", "496", "572", "573", "574", "499", "575", "576", "577", "578", "579", "580", "503", "581", "582", "583", "584", "585", "313", "586", "587", "588", "331", "589", "334", "590", "591", "592", "593", "594", "504", "595", "118", "596", "597", "507", "364", "509", "598", "599", "600", "601", "602", "603", "604", "605", "377", "606", "607", "608", "609", "164", "610", "553", "611", "612", "613", "193", "614", "615", "616", "617", "618", "619", "420", "620", "621", "622", "623", "624", "206", "625", "626", "627", "628", "629", "456", "630", "631", "632", "633", "634", "469", "635", "636" ],
-    "attributes" : [ "object" ],
-    "id" : "23"
+    "id" : "89",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q122_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[Hal93]_Q122_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "638",
-    "attributes" : [ "object" ],
-    "id" : "628"
+    "id" : "90",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "640",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q112_Me_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "82",
-    "attributes" : [ "object" ],
-    "id" : "541"
+    "id" : "91",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q112_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "82",
-    "attributes" : [ "object" ],
-    "id" : "632"
+    "id" : "92",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q65_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[TA15]_Q65_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "9",
-    "attributes" : [ "object" ],
-    "id" : "633"
+    "id" : "93",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q55_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[TA15]_Q55_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "326",
-    "attributes" : [ "object" ],
-    "id" : "634"
+    "id" : "94",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q44_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[STH+13]_Q44_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "498",
-    "attributes" : [ "object" ],
-    "id" : "635"
+    "id" : "95",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E20_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "243",
-    "label" : {
-      "IRI-based" : "E20_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "407",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "641"
+    "id" : "96",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E20_E",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "407",
-    "label" : {
-      "IRI-based" : "E20_E",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "243",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "642"
+    "id" : "97",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q03_C_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "171",
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q03_C_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "85",
-    "attributes" : [ "object" ],
-    "id" : "567"
+    "id" : "98",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q59_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[TA15]_Q59_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "40",
-    "attributes" : [ "object" ],
-    "id" : "566"
+    "id" : "99",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[TA15]_Q62_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "35",
-    "attributes" : [ "object" ],
-    "id" : "571"
+    "id" : "100",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q105_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q105_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "232",
-    "attributes" : [ "object" ],
-    "id" : "572"
+    "id" : "101",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q100_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "478",
-    "attributes" : [ "object" ],
-    "id" : "579"
+    "id" : "102",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q125_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[Hal93]_Q125_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "461",
-    "attributes" : [ "object" ],
-    "id" : "580"
+    "id" : "103",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q45_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[STH+13]_Q45_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "396",
-    "attributes" : [ "object" ],
-    "id" : "590"
+    "id" : "104",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q69_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[TA15]_Q69_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "134",
-    "attributes" : [ "object" ],
-    "id" : "596"
+    "id" : "105",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q98_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q98_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "51",
-    "attributes" : [ "object" ],
-    "id" : "598"
+    "id" : "106",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q85_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q85_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "140",
-    "attributes" : [ "object" ],
-    "id" : "601"
+    "id" : "107",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "171",
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q02_C_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "55",
-    "attributes" : [ "object" ],
-    "id" : "611"
+    "id" : "108",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q38__V_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "644",
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q38__V_A",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "315",
-    "attributes" : [ "object" ],
-    "id" : "643"
+    "id" : "109",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[TA15]_Q52_Me_A",
-      "undefined" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "248",
-    "attributes" : [ "object" ],
-    "id" : "615"
+    "id" : "110",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[Hal93]_Q124_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "4",
-    "attributes" : [ "object" ],
-    "id" : "616"
+    "id" : "111",
+    "type" : "owl:objectProperty"
   }, {
-    "range" : "11",
-    "domain" : "493",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "648"
+    "id" : "112",
+    "type" : "owl:objectProperty"
   }, {
-    "range" : "11",
-    "domain" : "554",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "649"
+    "id" : "113",
+    "type" : "owl:objectProperty"
   }, {
-    "range" : "11",
-    "domain" : "651",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "650"
+    "id" : "114",
+    "type" : "owl:objectProperty"
   }, {
-    "range" : "11",
-    "domain" : "653",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "652"
+    "id" : "115",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q46_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[STH+13]_Q46_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "656",
-    "attributes" : [ "object" ],
-    "id" : "629"
+    "id" : "116",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_J",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "656",
-    "label" : {
-      "IRI-based" : "E31_J",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "181",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "657"
+    "id" : "117",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_L",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "192",
-    "label" : {
-      "IRI-based" : "E31_L",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "181",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "658"
+    "id" : "118",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_K",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "416",
-    "label" : {
-      "IRI-based" : "E31_K",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "181",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "659"
+    "id" : "119",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_F",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "181",
-    "label" : {
-      "IRI-based" : "E31_F",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "656",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "660"
+    "id" : "120",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_H",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "192",
-    "label" : {
-      "IRI-based" : "E31_H",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "656",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "661"
+    "id" : "121",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_G",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "416",
-    "label" : {
-      "IRI-based" : "E31_G",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "656",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "662"
+    "id" : "122",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_R",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "656",
-    "label" : {
-      "IRI-based" : "E31_R",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "192",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "663"
+    "id" : "123",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_T",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "416",
-    "label" : {
-      "IRI-based" : "E31_T",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "192",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "664"
+    "id" : "124",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "181",
-    "label" : {
-      "IRI-based" : "E31_S",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "192",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "665"
+    "id" : "125",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_N",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "656",
-    "label" : {
-      "IRI-based" : "E31_N",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "416",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "667"
+    "id" : "126",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_P",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "192",
-    "label" : {
-      "IRI-based" : "E31_P",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "416",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "668"
+    "id" : "127",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E31_O",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "181",
-    "label" : {
-      "IRI-based" : "E31_O",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "416",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "669"
+    "id" : "128",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[TA15]_Q77_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "74",
-    "attributes" : [ "object" ],
-    "id" : "555"
+    "id" : "129",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q120_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[Hal93]_Q120_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "1",
-    "attributes" : [ "object" ],
-    "id" : "561"
+    "id" : "130",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E24_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "128",
-    "label" : {
-      "IRI-based" : "E24_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "15",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "670"
+    "id" : "131",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E24_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "15",
-    "label" : {
-      "IRI-based" : "E24_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "128",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "671"
+    "id" : "132",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.w3.org/2002/07/owl#topObjectProperty",
-    "baseIri" : "http://www.w3.org/2002/07/owl",
-    "range" : "654",
-    "label" : {
-      "IRI-based" : "topObjectProperty"
-    },
-    "domain" : "654",
-    "subproperty" : [ "204", "672", "23", "168" ],
-    "attributes" : [ "object", "external" ],
-    "id" : "520"
+    "id" : "133",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "283",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q111_Me_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "232",
-    "attributes" : [ "object" ],
-    "id" : "523"
+    "id" : "134",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q111_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "152",
-    "attributes" : [ "object" ],
-    "id" : "564"
+    "id" : "135",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_U",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "55",
-    "label" : {
-      "IRI-based" : "E02_U",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "286",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "673"
+    "id" : "136",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_V",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "286",
-    "label" : {
-      "IRI-based" : "E02_V",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "425",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "674"
+    "id" : "137",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_Q",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "9",
-    "label" : {
-      "IRI-based" : "E02_Q",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "425",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "675"
+    "id" : "138",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_R",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "55",
-    "label" : {
-      "IRI-based" : "E02_R",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "189",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "676"
+    "id" : "139",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "189",
-    "label" : {
-      "IRI-based" : "E02_S",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "425",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "677"
+    "id" : "140",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_T",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "286",
-    "label" : {
-      "IRI-based" : "E02_T",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "55",
-    "attributes" : [ "object" ],
-    "id" : "678"
+    "id" : "141",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[BBG+06]_Q130_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "68",
-    "attributes" : [ "object" ],
-    "id" : "570"
+    "id" : "142",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q01_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "55",
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q01_S_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "197",
-    "attributes" : [ "object" ],
-    "id" : "524"
+    "id" : "143",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q01_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q01_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "197",
-    "attributes" : [ "object" ],
-    "id" : "573"
+    "id" : "144",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q01_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "85",
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q01_S_C",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "197",
-    "attributes" : [ "object" ],
-    "id" : "525"
+    "id" : "145",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q47_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[STH+13]_Q47_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "131",
-    "attributes" : [ "object" ],
-    "id" : "583"
+    "id" : "146",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_E",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "425",
-    "label" : {
-      "IRI-based" : "E02_E",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "55",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "679"
+    "id" : "147",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q88_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q88_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "680",
-    "attributes" : [ "object" ],
-    "id" : "584"
+    "id" : "148",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_F",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "9",
-    "label" : {
-      "IRI-based" : "E02_F",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "229",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "681"
+    "id" : "149",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_G",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "55",
-    "label" : {
-      "IRI-based" : "E02_G",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "425",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "682"
+    "id" : "150",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_H",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "189",
-    "label" : {
-      "IRI-based" : "E02_H",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "229",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "683"
+    "id" : "151",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "425",
-    "label" : {
-      "IRI-based" : "E02_A",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "229",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "684"
+    "id" : "152",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "229",
-    "label" : {
-      "IRI-based" : "E02_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "55",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "685"
+    "id" : "153",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "55",
-    "label" : {
-      "IRI-based" : "E02_C",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "229",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "686"
+    "id" : "154",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "152",
-    "label" : {
-      "IRI-based" : "E02_D",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "229",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "687"
+    "id" : "155",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_M",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "55",
-    "label" : {
-      "IRI-based" : "E02_M",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "9",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "688"
+    "id" : "156",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_N",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "9",
-    "label" : {
-      "IRI-based" : "E02_N",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "55",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "689"
+    "id" : "157",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_O",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "152",
-    "label" : {
-      "IRI-based" : "E02_O",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "425",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "690"
+    "id" : "158",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_P",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "189",
-    "label" : {
-      "IRI-based" : "E02_P",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "55",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "691"
+    "id" : "159",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_I",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "152",
-    "label" : {
-      "IRI-based" : "E02_I",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "55",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "692"
+    "id" : "160",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_J",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "55",
-    "label" : {
-      "IRI-based" : "E02_J",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "152",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "693"
+    "id" : "161",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_K",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "286",
-    "label" : {
-      "IRI-based" : "E02_K",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "229",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "694"
+    "id" : "162",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_L",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "229",
-    "label" : {
-      "IRI-based" : "E02_L",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "425",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "695"
+    "id" : "163",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "167",
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q31__V_C",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "328",
-    "attributes" : [ "object" ],
-    "id" : "696"
+    "id" : "164",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "451",
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q31__V_B",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "328",
-    "attributes" : [ "object" ],
-    "id" : "697"
+    "id" : "165",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q31__V_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "644",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"SRSs to validate requirements resulting in an SRS customer-oriented affecting the objectivity for the development\"",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q31__V_A",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "328",
-    "attributes" : [ "object" ],
-    "id" : "698"
+    "id" : "166",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#hasQualitativeRelationships",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "645",
-    "label" : {
-      "IRI-based" : "hasQualitativeRelationships"
-    },
-    "superproperty" : [ "520" ],
-    "domain" : "138",
-    "subproperty" : [ "699", "696", "700", "697", "698", "701", "343", "702", "344", "703", "704", "705", "166", "706", "707", "708", "643" ],
-    "attributes" : [ "object" ],
-    "id" : "168"
+    "id" : "167",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_W",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "363",
-    "label" : {
-      "IRI-based" : "E11_W",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "59",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "709"
+    "id" : "168",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_Y",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "49",
-    "label" : {
-      "IRI-based" : "E11_Y",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "59",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "710"
+    "id" : "169",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_V",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "179",
-    "label" : {
-      "IRI-based" : "E11_V",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "59",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "711"
+    "id" : "170",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E22_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "666",
-    "label" : {
-      "IRI-based" : "E22_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "155",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "712"
+    "id" : "171",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q102_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q102_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "19",
-    "attributes" : [ "object" ],
-    "id" : "599"
+    "id" : "172",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E22_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "155",
-    "label" : {
-      "IRI-based" : "E22_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "666",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "713"
+    "id" : "173",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q121_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[Hal93]_Q121_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "474",
-    "attributes" : [ "object" ],
-    "id" : "600"
+    "id" : "174",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q56_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "277",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"we combine unambiguous and verifiable and derive a new quality characteristic: Definiteness.\"",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q56_S_B",
-      "en" : "refines"
-    },
-    "domain" : "102",
-    "attributes" : [ "object", "external" ],
-    "id" : "714"
+    "id" : "175",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q09_C_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "171",
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q09_C_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "203",
-    "attributes" : [ "object" ],
-    "id" : "602"
+    "id" : "176",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_BT",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "119",
-    "label" : {
-      "IRI-based" : "E04_BT",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "454",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "715"
+    "id" : "177",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_BP",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "119",
-    "label" : {
-      "IRI-based" : "E04_BP",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "17",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "716"
+    "id" : "178",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_BL",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "454",
-    "label" : {
-      "IRI-based" : "E04_BL",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "119",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "717"
+    "id" : "179",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q103_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q103_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "150",
-    "attributes" : [ "object" ],
-    "id" : "606"
+    "id" : "180",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_BH",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "17",
-    "label" : {
-      "IRI-based" : "E04_BH",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "119",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "718"
+    "id" : "181",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q97_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "666",
-    "attributes" : [ "object" ],
-    "id" : "607"
+    "id" : "182",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_BA",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "17",
-    "label" : {
-      "IRI-based" : "E04_BA",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "454",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "719"
+    "id" : "183",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "403",
-    "label" : {
-      "IRI-based" : "E11_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "358",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "720"
+    "id" : "184",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "358",
-    "label" : {
-      "IRI-based" : "E11_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "403",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "721"
+    "id" : "185",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AU",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "506",
-    "label" : {
-      "IRI-based" : "E04_AU",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "208",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "722"
+    "id" : "186",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AV",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "476",
-    "label" : {
-      "IRI-based" : "E04_AV",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "208",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "723"
+    "id" : "187",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AQ",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "126",
-    "label" : {
-      "IRI-based" : "E04_AQ",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "240",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "724"
+    "id" : "188",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_G",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "363",
-    "label" : {
-      "IRI-based" : "E11_G",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "179",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "725"
+    "id" : "189",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_J",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "49",
-    "label" : {
-      "IRI-based" : "E11_J",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "179",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "726"
+    "id" : "190",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AS",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "655",
-    "label" : {
-      "IRI-based" : "E04_AS",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "208",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "727"
+    "id" : "191",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_I",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "59",
-    "label" : {
-      "IRI-based" : "E11_I",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "179",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "728"
+    "id" : "192",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AR",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "135",
-    "label" : {
-      "IRI-based" : "E04_AR",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "240",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "729"
+    "id" : "193",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "438",
-    "label" : {
-      "IRI-based" : "E11_C",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "731",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "730"
+    "id" : "194",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AL",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "208",
-    "label" : {
-      "IRI-based" : "E04_AL",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "476",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "732"
+    "id" : "195",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AO",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "240",
-    "label" : {
-      "IRI-based" : "E04_AO",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "476",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "733"
+    "id" : "196",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AN",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "506",
-    "label" : {
-      "IRI-based" : "E04_AN",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "476",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "734"
+    "id" : "197",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_P",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "731",
-    "label" : {
-      "IRI-based" : "E11_P",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "438",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "735"
+    "id" : "198",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AH",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "240",
-    "label" : {
-      "IRI-based" : "E04_AH",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "506",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "736"
+    "id" : "199",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_O",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "49",
-    "label" : {
-      "IRI-based" : "E11_O",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "363",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "737"
+    "id" : "200",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AK",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "135",
-    "label" : {
-      "IRI-based" : "E04_AK",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "476",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "738"
+    "id" : "201",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AJ",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "126",
-    "label" : {
-      "IRI-based" : "E04_AJ",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "476",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "739"
+    "id" : "202",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_L",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "179",
-    "label" : {
-      "IRI-based" : "E11_L",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "363",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "740"
+    "id" : "203",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AE",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "208",
-    "label" : {
-      "IRI-based" : "E04_AE",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "506",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "741"
+    "id" : "204",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AD",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "135",
-    "label" : {
-      "IRI-based" : "E04_AD",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "506",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "742"
+    "id" : "205",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AG",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "476",
-    "label" : {
-      "IRI-based" : "E04_AG",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "506",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "743"
+    "id" : "206",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_N",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "59",
-    "label" : {
-      "IRI-based" : "E11_N",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "363",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "744"
+    "id" : "207",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AC",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "126",
-    "label" : {
-      "IRI-based" : "E04_AC",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "506",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "745"
+    "id" : "208",
+    "type" : "rdfs:SubClassOf"
+  }, {
+    "id" : "209",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AB",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "454",
-    "label" : {
-      "IRI-based" : "E04_AB",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "17",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "746"
+    "id" : "210",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q48_A_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
-    "label" : {
-      "IRI-based" : "[STH+13]_Q48_A_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "411",
-    "attributes" : [ "object" ],
-    "id" : "614"
+    "id" : "211",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q90_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "57",
-    "attributes" : [ "object" ],
-    "id" : "617"
+    "id" : "212",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q81_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "246",
-    "attributes" : [ "object" ],
-    "id" : "622"
+    "id" : "213",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q96_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q96_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "187",
-    "attributes" : [ "object" ],
-    "id" : "624"
+    "id" : "214",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q109_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q109_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "239",
-    "attributes" : [ "object" ],
-    "id" : "627"
+    "id" : "215",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q109_Me_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "748",
-    "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q109_Me_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "239",
-    "attributes" : [ "object" ],
-    "id" : "539"
+    "id" : "216",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_EC",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "189",
-    "label" : {
-      "IRI-based" : "E02_EC",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "286",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "750"
+    "id" : "217",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q57_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "277",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"we combine unambiguous and verifiable and derive a new quality characteristic: Definiteness.\"",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q57_S_B",
-      "en" : "refines"
-    },
-    "domain" : "269",
-    "attributes" : [ "object", "external" ],
-    "id" : "751"
+    "id" : "218",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_M_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[Bel12]_Q11_M_A",
-      "undefined" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "229",
-    "attributes" : [ "object" ],
-    "id" : "558"
+    "id" : "219",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_EA",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "9",
-    "label" : {
-      "IRI-based" : "E02_EA",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "286",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "752"
+    "id" : "220",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_DY",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "152",
-    "label" : {
-      "IRI-based" : "E02_DY",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "286",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "753"
+    "id" : "221",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q65_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "554",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The first and second perspectives relate to completeness of requirements. On the other hand, the third perspective relates to completeness of description. Thirdparty inspector can evaluate only the completeness of descriptions. It is reasonable to assume that the completeness of requirements, as with correctness, can be evaluated during the second-stage inspection by the project if accountability is satisfied. Thus we define two new quality characteristics, namely: descriptive completeness and requirement completeness.",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q65_S_B",
-      "en" : "refines"
-    },
-    "domain" : "651",
-    "attributes" : [ "object", "external" ],
-    "id" : "754"
+    "id" : "222",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q65_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "62",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"The first and second perspectives relate to completeness of requirements. On the other hand, the third perspective relates to completeness of description. Thirdparty inspector can evaluate only the completeness of descriptions. It is reasonable to assume that the completeness of requirements, as with correctness, can be evaluated during the second-stage inspection by the project if accountability is satisfied. Thus we define two new quality characteristics, namely: descriptive completeness and requirement completeness.\"",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q65_S_C",
-      "en" : "refines"
-    },
-    "domain" : "651",
-    "attributes" : [ "object", "external" ],
-    "id" : "755"
+    "id" : "223",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_DU",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "229",
-    "label" : {
-      "IRI-based" : "E02_DU",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "286",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "756"
+    "id" : "224",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_DV",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "425",
-    "label" : {
-      "IRI-based" : "E02_DV",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "286",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "757"
+    "id" : "225",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_DQ",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "310",
-    "label" : {
-      "IRI-based" : "E02_DQ",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "373",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "758"
+    "id" : "226",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_DM",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "232",
-    "label" : {
-      "IRI-based" : "E02_DM",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "373",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "759"
+    "id" : "227",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q30__V_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "328",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Process characteristics lead the company to choose making a late validation\"",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q30__V_A",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "320",
-    "attributes" : [ "object" ],
-    "id" : "707"
+    "id" : "228",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_CX",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "286",
-    "label" : {
-      "IRI-based" : "E02_CX",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "189",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "760"
+    "id" : "229",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[TA15]_Q76_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "15",
-    "attributes" : [ "object" ],
-    "id" : "569"
+    "id" : "230",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[TA15]_Q78_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "160",
-    "attributes" : [ "object" ],
-    "id" : "568"
+    "id" : "231",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_CT",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "9",
-    "label" : {
-      "IRI-based" : "E02_CT",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "189",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "761"
+    "id" : "232",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E17_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "233",
-    "label" : {
-      "IRI-based" : "E17_B",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "442",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "762"
+    "id" : "233",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q32__V_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "328",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Contract characteristics lead the company to choose making a late validation\"",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q32__V_A",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "308",
-    "attributes" : [ "object" ],
-    "id" : "704"
+    "id" : "234",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E17_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "442",
-    "label" : {
-      "IRI-based" : "E17_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "233",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "763"
+    "id" : "235",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q32__V_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "451",
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q32__V_B",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "308",
-    "attributes" : [ "object" ],
-    "id" : "705"
+    "id" : "236",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_CR",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "152",
-    "label" : {
-      "IRI-based" : "E02_CR",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "189",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "764"
+    "id" : "237",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_CL",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "373",
-    "label" : {
-      "IRI-based" : "E02_CL",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "310",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "765"
+    "id" : "238",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_CN",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "229",
-    "label" : {
-      "IRI-based" : "E02_CN",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "189",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "766"
+    "id" : "239",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_CO",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "425",
-    "label" : {
-      "IRI-based" : "E02_CO",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "189",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "767"
+    "id" : "240",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#hasQuantitativeRelationships",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "646",
-    "label" : {
-      "IRI-based" : "hasQuantitativeRelationships"
-    },
-    "superproperty" : [ "520" ],
-    "domain" : "138",
-    "attributes" : [ "object" ],
-    "id" : "672"
+    "id" : "241",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q89_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "76",
-    "attributes" : [ "object" ],
-    "id" : "574"
+    "id" : "242",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_CF",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "232",
-    "label" : {
-      "IRI-based" : "E02_CF",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "310",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "768"
+    "id" : "243",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "396",
-    "label" : {
-      "IRI-based" : "[STH+13]_Q40_S_C",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "748",
-    "attributes" : [ "object" ],
-    "id" : "526"
+    "id" : "244",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "498",
-    "label" : {
-      "IRI-based" : "[STH+13]_Q40_S_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "748",
-    "attributes" : [ "object" ],
-    "id" : "527"
+    "id" : "245",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q79_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "27",
-    "attributes" : [ "object" ],
-    "id" : "578"
+    "id" : "246",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_CB",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "286",
-    "label" : {
-      "IRI-based" : "E02_CB",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "9",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "769"
+    "id" : "247",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_BY",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "189",
-    "label" : {
-      "IRI-based" : "E02_BY",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "9",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "770"
+    "id" : "248",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_BS",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "425",
-    "label" : {
-      "IRI-based" : "E02_BS",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "9",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "771"
+    "id" : "249",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[DOJ+93]_Q82_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "135",
-    "attributes" : [ "object" ],
-    "id" : "582"
+    "id" : "250",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q40_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[STH+13]_Q40_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "748",
-    "attributes" : [ "object" ],
-    "id" : "581"
+    "id" : "251",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_BV",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "152",
-    "label" : {
-      "IRI-based" : "E02_BV",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "9",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "772"
+    "id" : "252",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_BR",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "229",
-    "label" : {
-      "IRI-based" : "E02_BR",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "9",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "773"
+    "id" : "253",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[TA15]_Q75_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "424",
-    "attributes" : [ "object" ],
-    "id" : "587"
+    "id" : "254",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "15",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q75_S_B",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "424",
-    "attributes" : [ "object" ],
-    "id" : "532"
+    "id" : "255",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_BC",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "189",
-    "label" : {
-      "IRI-based" : "E02_BC",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "152",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "774"
+    "id" : "256",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_BF",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "286",
-    "label" : {
-      "IRI-based" : "E02_BF",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "152",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "775"
+    "id" : "257",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_BA",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "9",
-    "label" : {
-      "IRI-based" : "E02_BA",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "152",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "776"
+    "id" : "258",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q37__V_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "137",
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q37__V_A",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "318",
-    "attributes" : [ "object" ],
-    "id" : "699"
+    "id" : "259",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q75_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "74",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q75_S_C",
-      "en" : "refines"
-    },
-    "superproperty" : [ "204" ],
-    "domain" : "424",
-    "attributes" : [ "object" ],
-    "id" : "537"
+    "id" : "260",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q37__V_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "61",
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q37__V_B",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "318",
-    "attributes" : [ "object" ],
-    "id" : "702"
+    "id" : "261",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q37__V_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "24",
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q37__V_C",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "318",
-    "attributes" : [ "object" ],
-    "id" : "703"
+    "id" : "262",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_AT",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "229",
-    "label" : {
-      "IRI-based" : "E02_AT",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "152",
-    "attributes" : [ "object", "transitive" ],
-    "id" : "777"
+    "id" : "263",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_AU",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "425",
-    "label" : {
-      "IRI-based" : "E02_AU",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "152",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "778"
+    "id" : "264",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_AN",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "310",
-    "label" : {
-      "IRI-based" : "E02_AN",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "232",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "779"
+    "id" : "265",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_AQ",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "373",
-    "label" : {
-      "IRI-based" : "E02_AQ",
-      "en" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "232",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "780"
+    "id" : "266",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q14_M_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[Bel12]_Q14_M_A",
-      "undefined" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "141",
-    "attributes" : [ "object" ],
-    "id" : "594"
+    "id" : "267",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "171",
-    "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q07_C_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "403",
-    "attributes" : [ "object" ],
-    "id" : "595"
+    "id" : "268",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_T",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "4",
-    "label" : {
-      "IRI-based" : "E15_T",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "44",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "781"
+    "id" : "269",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_S",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "235",
-    "label" : {
-      "IRI-based" : "E15_S",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "44",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "782"
+    "id" : "270",
+    "type" : "rdfs:SubClassOf"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_P",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "44",
-    "label" : {
-      "IRI-based" : "E15_P",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "4",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "783"
+    "id" : "271",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_O",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "235",
-    "label" : {
-      "IRI-based" : "E15_O",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "4",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "784"
+    "id" : "272",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
-    "label" : {
-      "IRI-based" : "[TA15]_Q71_Me_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "78",
-    "attributes" : [ "object" ],
-    "id" : "597"
+    "id" : "273",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_Q",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "57",
-    "label" : {
-      "IRI-based" : "E15_Q",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "44",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "785"
+    "id" : "274",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_E",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "101",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q58_S_E",
-      "en" : "refines"
-    },
-    "domain" : "277",
-    "attributes" : [ "object", "external" ],
-    "id" : "786"
+    "id" : "275",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "354",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q58_S_D",
-      "en" : "refines"
-    },
-    "domain" : "277",
-    "attributes" : [ "object", "external" ],
-    "id" : "787"
+    "id" : "276",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "292",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q58_S_C",
-      "en" : "refines"
-    },
-    "domain" : "277",
-    "attributes" : [ "object", "external" ],
-    "id" : "788"
+    "id" : "277",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "300",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q58_S_B",
-      "en" : "refines"
-    },
-    "domain" : "277",
-    "attributes" : [ "object", "external" ],
-    "id" : "789"
+    "id" : "278",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_G",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "294",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q58_S_G",
-      "en" : "refines"
-    },
-    "domain" : "277",
-    "attributes" : [ "object", "external" ],
-    "id" : "790"
+    "id" : "279",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q58_S_F",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "254",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q58_S_F",
-      "en" : "refines"
-    },
-    "domain" : "277",
-    "attributes" : [ "object", "external" ],
-    "id" : "791"
+    "id" : "280",
+    "type" : "owl:objectProperty"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q68_Me_A",
+    "id" : "281",
+    "type" : "owl:objectProperty"
+  } ],
+  "propertyAttribute" : [ {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q77_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[TA15]_Q68_Me_A",
+      "IRI-based" : "[TA15]_Q77_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "63",
-    "attributes" : [ "object" ],
-    "id" : "603"
+    "domain" : "1",
+    "attributes" : [ "external", "object" ],
+    "id" : "0"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_M_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q93_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[Bel12]_Q12_M_A",
-      "undefined" : "hasPurpose"
+      "IRI-based" : "[DOJ+93]_Q93_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "205",
-    "attributes" : [ "object" ],
-    "id" : "605"
+    "domain" : "6",
+    "attributes" : [ "external", "object" ],
+    "id" : "5"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q72_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "281",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_A",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "48",
     "label" : {
-      "IRI-based" : "[TA15]_Q72_S_B",
-      "en" : "refines"
+      "IRI-based" : "E01_A",
+      "en" : "isEquivalent"
     },
-    "domain" : "99",
-    "attributes" : [ "object", "external" ],
-    "id" : "792"
+    "domain" : "23",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "72"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q72_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "302",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q127_Me_A",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[TA15]_Q72_S_C",
-      "en" : "refines"
+      "IRI-based" : "[BBG+06]_Q127_Me_A",
+      "en" : "hasPurpose"
     },
-    "domain" : "99",
-    "attributes" : [ "object", "external" ],
-    "id" : "793"
+    "domain" : "49",
+    "attributes" : [ "external", "object" ],
+    "id" : "73"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_S",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E09_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "476",
+    "range" : "17",
     "label" : {
-      "IRI-based" : "E04_S",
+      "IRI-based" : "E09_A",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "208",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "794"
+    "domain" : "67",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "74"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_T",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E24_B",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "240",
+    "range" : "37",
     "label" : {
-      "IRI-based" : "E04_T",
+      "IRI-based" : "E24_B",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "208",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "795"
+    "domain" : "60",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "75"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AH",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E24_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "403",
+    "range" : "60",
     "label" : {
-      "IRI-based" : "E11_AH",
+      "IRI-based" : "E24_A",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "438",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "796"
+    "domain" : "37",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "76"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_O",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_N",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "126",
+    "range" : "41",
     "label" : {
-      "IRI-based" : "E04_O",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "E01_N",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "208",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "797"
+    "domain" : "48",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "78"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_P",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "135",
+    "range" : "80",
     "label" : {
-      "IRI-based" : "E04_P",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[STH+13]_Q51_A_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "208",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "798"
+    "domain" : "29",
+    "attributes" : [ "external", "object" ],
+    "id" : "79"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AO",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_P",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "158",
+    "range" : "68",
     "label" : {
-      "IRI-based" : "E11_AO",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "E01_P",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "59",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "799"
+    "domain" : "48",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "81"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AL",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_J",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "158",
+    "range" : "23",
     "label" : {
-      "IRI-based" : "E11_AL",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "E01_J",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "179",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "800"
+    "domain" : "48",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "82"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AM",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E09_B",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "158",
+    "range" : "67",
     "label" : {
-      "IRI-based" : "E11_AM",
+      "IRI-based" : "E09_B",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "363",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "801"
+    "domain" : "17",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "83"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_R",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q111_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "506",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E04_R",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q111_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "208",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "802"
+    "domain" : "22",
+    "attributes" : [ "external", "object" ],
+    "id" : "84"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AB",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_M",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "363",
+    "range" : "42",
     "label" : {
-      "IRI-based" : "E11_AB",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "E01_M",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "49",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "803"
+    "domain" : "48",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "85"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AA",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_V",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "179",
+    "range" : "31",
     "label" : {
-      "IRI-based" : "E11_AA",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "E02_V",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "49",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "804"
+    "domain" : "47",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "86"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AD",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_Q",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "59",
+    "range" : "58",
     "label" : {
-      "IRI-based" : "E11_AD",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "E02_Q",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "49",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "805"
+    "domain" : "47",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "87"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AE",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_S",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "403",
+    "range" : "12",
     "label" : {
-      "IRI-based" : "E11_AE",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "E02_S",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "731",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "806"
+    "domain" : "47",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "88"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_D",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q101_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "44",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E15_D",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[DOJ+93]_Q101_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "57",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "807"
+    "domain" : "19",
+    "attributes" : [ "external", "object" ],
+    "id" : "89"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AZ",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q130_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "438",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E11_AZ",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[BBG+06]_Q130_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "403",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "808"
+    "domain" : "61",
+    "attributes" : [ "external", "object" ],
+    "id" : "90"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_C",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q91_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "4",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E15_C",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[DOJ+93]_Q91_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "57",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "809"
+    "domain" : "39",
+    "attributes" : [ "external", "object" ],
+    "id" : "91"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "235",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E15_B",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q113_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "57",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "810"
+    "domain" : "52",
+    "attributes" : [ "external", "object" ],
+    "id" : "92"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_L",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_S",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "44",
+    "range" : "25",
     "label" : {
-      "IRI-based" : "E15_L",
+      "IRI-based" : "E14_S",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "235",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "811"
+    "domain" : "1",
+    "attributes" : [ "external", "object", "asymmetric", "symmetric" ],
+    "id" : "93"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#integrate",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AY",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "218",
+    "range" : "45",
     "label" : {
-      "IRI-based" : "integrate",
-      "undefined" : "integrate"
+      "IRI-based" : "E05_AY",
+      "undefined" : "isEquivalent"
     },
-    "domain" : "647",
-    "attributes" : [ "object" ],
-    "id" : "812"
+    "domain" : "66",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "94"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_K",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q95_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "4",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E15_K",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[DOJ+93]_Q95_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "235",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "813"
+    "domain" : "38",
+    "attributes" : [ "external", "object" ],
+    "id" : "95"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AP",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_E",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "158",
+    "range" : "47",
     "label" : {
-      "IRI-based" : "E11_AP",
+      "IRI-based" : "E02_E",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "49",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "814"
+    "domain" : "54",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "96"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_M",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q88_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "57",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E15_M",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[DOJ+93]_Q88_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "4",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "815"
+    "domain" : "43",
+    "attributes" : [ "external", "object" ],
+    "id" : "97"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AQ",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_G",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "358",
+    "range" : "54",
     "label" : {
-      "IRI-based" : "E11_AQ",
+      "IRI-based" : "E02_G",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "731",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "816"
+    "domain" : "47",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "98"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AW",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "731",
+    "range" : "47",
     "label" : {
-      "IRI-based" : "E11_AW",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "E02_A",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "403",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "817"
+    "domain" : "71",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "99"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_I",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_O",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "57",
+    "range" : "22",
     "label" : {
-      "IRI-based" : "E15_I",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "E02_O",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "235",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "818"
+    "domain" : "47",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "100"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AU",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AK",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "358",
+    "range" : "45",
     "label" : {
-      "IRI-based" : "E11_AU",
+      "IRI-based" : "E05_AK",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "438",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "819"
+    "domain" : "61",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "101"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_BL",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_M_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "438",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E11_BL",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[Bel12]_Q16_M_A",
+      "undefined" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "358",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "820"
+    "domain" : "40",
+    "attributes" : [ "external", "object" ],
+    "id" : "102"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_BI",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_L",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "731",
+    "range" : "71",
     "label" : {
-      "IRI-based" : "E11_BI",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "E02_L",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "358",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "821"
+    "domain" : "47",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "103"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q39__V_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_AD",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "644",
+    "range" : "45",
     "label" : {
-      "IRI-based" : "[MVSG18]_Q39__V_B",
-      "en" : "hasQualitativeRelationship"
+      "IRI-based" : "E05_AD",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "168" ],
-    "domain" : "322",
-    "attributes" : [ "object" ],
-    "id" : "700"
+    "domain" : "14",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "104"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_BD",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_D",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "179",
+    "range" : "57",
     "label" : {
-      "IRI-based" : "E11_BD",
+      "IRI-based" : "E14_D",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "158",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "822"
+    "domain" : "25",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "105"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q39__V_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_G",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "24",
+    "range" : "25",
     "label" : {
-      "IRI-based" : "[MVSG18]_Q39__V_A",
-      "en" : "hasQualitativeRelationship"
+      "IRI-based" : "E14_G",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "168" ],
-    "domain" : "322",
-    "attributes" : [ "object" ],
-    "id" : "701"
+    "domain" : "29",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "106"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_BG",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "59",
+    "range" : "1",
     "label" : {
-      "IRI-based" : "E11_BG",
+      "IRI-based" : "E14_A",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "158",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "823"
+    "domain" : "25",
+    "attributes" : [ "external", "object", "asymmetric", "symmetric" ],
+    "id" : "107"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_BH",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_C",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "49",
+    "range" : "20",
     "label" : {
-      "IRI-based" : "E11_BH",
+      "IRI-based" : "E14_C",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "158",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "824"
+    "domain" : "25",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "108"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_BE",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_B",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "363",
+    "range" : "29",
     "label" : {
-      "IRI-based" : "E11_BE",
+      "IRI-based" : "E14_B",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "158",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "825"
+    "domain" : "25",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "109"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_O",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "25",
     "label" : {
-      "IRI-based" : "[BBG+06]_Q129_Me_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "E14_O",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "358",
-    "attributes" : [ "object" ],
-    "id" : "621"
+    "domain" : "57",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "110"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_D",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E14_K",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "506",
+    "range" : "25",
     "label" : {
-      "IRI-based" : "E04_D",
+      "IRI-based" : "E14_K",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "126",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "826"
+    "domain" : "20",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "111"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_E",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q10_M_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "476",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E04_E",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[Bel12]_Q10_M_A",
+      "undefined" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "126",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "827"
+    "domain" : "23",
+    "attributes" : [ "external", "object" ],
+    "id" : "112"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_F",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E22_B",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "240",
+    "range" : "70",
     "label" : {
-      "IRI-based" : "E04_F",
+      "IRI-based" : "E22_B",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "126",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "828"
+    "domain" : "24",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "113"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E22_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "135",
+    "range" : "24",
     "label" : {
-      "IRI-based" : "E04_A",
+      "IRI-based" : "E22_A",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "126",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "829"
+    "domain" : "70",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "114"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "208",
+    "range" : "11",
     "label" : {
-      "IRI-based" : "E04_B",
+      "IRI-based" : "E07_A",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "126",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "830"
+    "domain" : "40",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "115"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_J",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "52",
     "label" : {
-      "IRI-based" : "[TA15]_Q61_Me_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "E07_J",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "155",
-    "attributes" : [ "object" ],
-    "id" : "623"
+    "domain" : "11",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "116"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_K",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_K",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "506",
+    "range" : "27",
     "label" : {
-      "IRI-based" : "E04_K",
+      "IRI-based" : "E07_K",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "135",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "831"
+    "domain" : "11",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "117"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_L",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_G",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "476",
+    "range" : "40",
     "label" : {
-      "IRI-based" : "E04_L",
+      "IRI-based" : "E07_G",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "135",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "832"
+    "domain" : "11",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "118"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_M",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q97_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "240",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E04_M",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[DOJ+93]_Q97_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "135",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "833"
+    "domain" : "70",
+    "attributes" : [ "external", "object" ],
+    "id" : "119"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_H",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q73_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "126",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E04_H",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[TA15]_Q73_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "135",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "834"
+    "domain" : "64",
+    "attributes" : [ "external", "object" ],
+    "id" : "120"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_I",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E19_B",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "208",
+    "range" : "53",
     "label" : {
-      "IRI-based" : "E04_I",
+      "IRI-based" : "E19_B",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "135",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "835"
+    "domain" : "63",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "121"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_M_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E19_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "63",
     "label" : {
-      "IRI-based" : "[Bel12]_Q13_M_A",
-      "undefined" : "hasPurpose"
+      "IRI-based" : "E19_A",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "126",
-    "attributes" : [ "object" ],
-    "id" : "626"
+    "domain" : "53",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "122"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E39_C",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AR",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "748",
+    "range" : "15",
     "label" : {
-      "IRI-based" : "E39_C",
+      "IRI-based" : "E04_AR",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "330",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "837"
+    "domain" : "10",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "123"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E39_D",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_C",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "396",
+    "range" : "34",
     "label" : {
-      "IRI-based" : "E39_D",
+      "IRI-based" : "E11_C",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "330",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "838"
+    "domain" : "62",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "124"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E39_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_P",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "330",
+    "range" : "62",
     "label" : {
-      "IRI-based" : "E39_A",
+      "IRI-based" : "E11_P",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "748",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "839"
+    "domain" : "34",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "125"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E39_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AK",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "396",
+    "range" : "15",
     "label" : {
-      "IRI-based" : "E39_B",
+      "IRI-based" : "E04_AK",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "748",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "840"
+    "domain" : "49",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "126"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E39_E",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_AD",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "748",
+    "range" : "15",
     "label" : {
-      "IRI-based" : "E39_E",
+      "IRI-based" : "E04_AD",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "396",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "841"
+    "domain" : "44",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "127"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E39_F",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "330",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E39_F",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[DOJ+93]_Q86_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "396",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "842"
+    "domain" : "11",
+    "attributes" : [ "external", "object" ],
+    "id" : "128"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q63_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q74_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[TA15]_Q63_Me_A",
+      "IRI-based" : "[TA15]_Q74_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "639",
-    "attributes" : [ "object" ],
-    "id" : "557"
+    "domain" : "17",
+    "attributes" : [ "external", "object" ],
+    "id" : "129"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q51_A_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q90_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[STH+13]_Q51_A_A",
+      "IRI-based" : "[DOJ+93]_Q90_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "72",
-    "attributes" : [ "object" ],
-    "id" : "562"
+    "domain" : "55",
+    "attributes" : [ "external", "object" ],
+    "id" : "130"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[HZ18]_Q133_S_A",
+      "IRI-based" : "[DOJ+93]_Q87_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "485",
-    "attributes" : [ "object" ],
-    "id" : "577"
+    "domain" : "59",
+    "attributes" : [ "external", "object" ],
+    "id" : "131"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q113_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q81_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q113_Me_A",
+      "IRI-based" : "[DOJ+93]_Q81_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "53",
-    "attributes" : [ "object" ],
-    "id" : "576"
+    "domain" : "32",
+    "attributes" : [ "external", "object" ],
+    "id" : "132"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q96_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "442",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[HZ18]_Q133_S_B",
-      "en" : "refines"
+      "IRI-based" : "[DOJ+93]_Q96_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "485",
-    "attributes" : [ "object" ],
-    "id" : "528"
+    "domain" : "21",
+    "attributes" : [ "external", "object" ],
+    "id" : "133"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S_C",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E12_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "80",
+    "range" : "30",
     "label" : {
-      "IRI-based" : "[HZ18]_Q133_S_C",
-      "en" : "refines"
+      "IRI-based" : "E12_A",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "485",
-    "attributes" : [ "object" ],
-    "id" : "529"
+    "domain" : "59",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "134"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S_D",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q112_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "163",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[HZ18]_Q133_S_D",
-      "en" : "refines"
+      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q112_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "485",
-    "attributes" : [ "object" ],
-    "id" : "530"
+    "domain" : "69",
+    "attributes" : [ "external", "object" ],
+    "id" : "135"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[HZ18]_Q133_S_E",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E12_B",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "range" : "59",
     "label" : {
-      "IRI-based" : "[HZ18]_Q133_S_E",
-      "en" : "refines"
+      "IRI-based" : "E12_B",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "485",
-    "attributes" : [ "object" ],
-    "id" : "531"
+    "domain" : "30",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "136"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q16_M_A",
+    "range" : "4",
+    "domain" : "35",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "137"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q11_M_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[Bel12]_Q16_M_A",
+      "IRI-based" : "[Bel12]_Q11_M_A",
       "undefined" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "309",
-    "attributes" : [ "object" ],
-    "id" : "588"
+    "domain" : "71",
+    "attributes" : [ "external", "object" ],
+    "id" : "138"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_C",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E20_B",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "306",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
+    "range" : "13",
     "label" : {
-      "IRI-based" : "[TA15]_Q58_S_C",
-      "en" : "refines"
+      "IRI-based" : "E20_B",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "218",
-    "attributes" : [ "object" ],
-    "id" : "533"
+    "domain" : "38",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "139"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_DV",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "40",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
+    "range" : "47",
     "label" : {
-      "IRI-based" : "[TA15]_Q58_S_B",
-      "en" : "refines"
+      "IRI-based" : "E02_DV",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "218",
-    "attributes" : [ "object" ],
-    "id" : "534"
+    "domain" : "31",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "140"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_E",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AS",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "35",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
+    "range" : "32",
     "label" : {
-      "IRI-based" : "[TA15]_Q58_S_E",
-      "en" : "refines"
+      "IRI-based" : "E03_AS",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "218",
-    "attributes" : [ "object" ],
-    "id" : "535"
+    "domain" : "9",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "141"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_D",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AL",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "155",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
+    "range" : "32",
+    "label" : {
+      "IRI-based" : "E03_AL",
+      "undefined" : "isEquivalent"
     },
+    "domain" : "28",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "142"
+  }, {
+    "range" : "4",
+    "domain" : "34",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "143"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E20_E",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "38",
     "label" : {
-      "IRI-based" : "[TA15]_Q58_S_D",
-      "en" : "refines"
+      "IRI-based" : "E20_E",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "218",
-    "attributes" : [ "object" ],
-    "id" : "536"
+    "domain" : "13",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "144"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q92_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[TA15]_Q58_S_A",
+      "IRI-based" : "[DOJ+93]_Q92_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "218",
-    "attributes" : [ "object" ],
-    "id" : "589"
+    "domain" : "7",
+    "attributes" : [ "external", "object" ],
+    "id" : "145"
+  }, {
+    "range" : "4",
+    "domain" : "33",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "146"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_J",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "33",
+    "label" : {
+      "IRI-based" : "E05_J",
+      "undefined" : "isEquivalent"
+    },
+    "domain" : "45",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "147"
+  }, {
+    "range" : "4",
+    "domain" : "30",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "148"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S_D",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_K",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "411",
+    "range" : "14",
     "label" : {
-      "IRI-based" : "[STH+13]_Q42_S_D",
-      "en" : "refines"
+      "IRI-based" : "E05_K",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "414",
-    "attributes" : [ "object" ],
-    "id" : "542"
+    "domain" : "45",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "149"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_G",
+    "range" : "4",
+    "domain" : "29",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "150"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_L",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "130",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
+    "range" : "61",
     "label" : {
-      "IRI-based" : "[TA15]_Q58_S_G",
-      "en" : "refines"
+      "IRI-based" : "E05_L",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "218",
-    "attributes" : [ "object" ],
-    "id" : "543"
+    "domain" : "45",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "151"
+  }, {
+    "range" : "4",
+    "domain" : "32",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "152"
+  }, {
+    "range" : "4",
+    "domain" : "31",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "153"
+  }, {
+    "range" : "4",
+    "domain" : "26",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "154"
+  }, {
+    "range" : "4",
+    "domain" : "25",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "155"
+  }, {
+    "range" : "4",
+    "domain" : "28",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "156"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_I",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "656",
+    "range" : "69",
     "label" : {
-      "IRI-based" : "[STH+13]_Q42_S_B",
-      "en" : "refines"
+      "IRI-based" : "E05_I",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "414",
-    "attributes" : [ "object" ],
-    "id" : "544"
+    "domain" : "45",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "157"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S_C",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_AE",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "131",
+    "range" : "32",
     "label" : {
-      "IRI-based" : "[STH+13]_Q42_S_C",
-      "en" : "refines"
+      "IRI-based" : "E03_AE",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "414",
-    "attributes" : [ "object" ],
-    "id" : "546"
+    "domain" : "65",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "158"
+  }, {
+    "range" : "4",
+    "domain" : "27",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "159"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q58_S_F",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q94_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "639",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[TA15]_Q58_S_F",
-      "en" : "refines"
+      "IRI-based" : "[DOJ+93]_Q94_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "218",
-    "attributes" : [ "object" ],
-    "id" : "545"
+    "domain" : "53",
+    "attributes" : [ "external", "object" ],
+    "id" : "160"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q42_S_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[STH+13]_Q42_S_A",
+      "IRI-based" : "[DOJ+93]_Q80_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "414",
-    "attributes" : [ "object" ],
-    "id" : "591"
+    "domain" : "47",
+    "attributes" : [ "external", "object" ],
+    "id" : "161"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q76_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "414",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q104_Me_B",
-      "en" : "refines"
+      "IRI-based" : "[TA15]_Q76_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "31",
-    "attributes" : [ "object" ],
-    "id" : "547"
+    "domain" : "60",
+    "attributes" : [ "external", "object" ],
+    "id" : "162"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q104_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q78_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q104_Me_A",
+      "IRI-based" : "[TA15]_Q78_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "31",
-    "attributes" : [ "object" ],
-    "id" : "592"
+    "domain" : "27",
+    "attributes" : [ "external", "object" ],
+    "id" : "163"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q05_S_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E17_B",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "85",
+    "range" : "7",
     "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q05_S_B",
-      "en" : "refines"
+      "IRI-based" : "E17_B",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "124",
-    "attributes" : [ "object" ],
-    "id" : "548"
+    "domain" : "35",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "164"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q05_S_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E17_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
+    "range" : "35",
     "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q05_S_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "E17_A",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "124",
-    "attributes" : [ "object" ],
-    "id" : "593"
+    "domain" : "7",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "165"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q05_S_C",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q62_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "403",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q05_S_C",
-      "en" : "refines"
+      "IRI-based" : "[TA15]_Q62_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "124",
-    "attributes" : [ "object" ],
-    "id" : "549"
+    "domain" : "41",
+    "attributes" : [ "external", "object" ],
+    "id" : "166"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "296",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q66_S_B",
-      "en" : "refines"
-    },
-    "domain" : "554",
-    "attributes" : [ "object", "external" ],
-    "id" : "843"
+    "range" : "4",
+    "domain" : "23",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "167"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "352",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[TA15]_Q66_S_C",
-      "en" : "refines"
-    },
-    "domain" : "554",
-    "attributes" : [ "object", "external" ],
-    "id" : "844"
+    "range" : "4",
+    "domain" : "22",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "168"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q66_S_D",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "237",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "Add results of all inspection points of the sub-characteristics",
-        "type" : "label"
-      } ]
-    },
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_CO",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "47",
     "label" : {
-      "IRI-based" : "[TA15]_Q66_S_D",
-      "en" : "refines"
+      "IRI-based" : "E02_CO",
+      "en" : "isEquivalent"
     },
-    "domain" : "554",
-    "attributes" : [ "object", "external" ],
-    "id" : "845"
+    "domain" : "12",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "169"
+  }, {
+    "range" : "4",
+    "domain" : "24",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "170"
+  }, {
+    "range" : "4",
+    "domain" : "19",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "171"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q89_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "519",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E01",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[DOJ+93]_Q89_Me_A",
+      "en" : "hasPurpose"
     },
-    "domain" : "519",
-    "subproperty" : [ "25", "29", "477", "670", "671", "32", "34", "36", "37", "480", "38", "41", "673", "674", "675", "676", "677", "678", "484", "487", "488", "489", "490", "491", "66", "69", "71", "73", "77", "75", "79", "81", "83", "679", "681", "682", "683", "87", "684", "84", "88", "685", "89", "686", "687", "90", "688", "91", "689", "92", "690", "93", "691", "94", "692", "95", "693", "694", "96", "695", "97", "98", "103", "105", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "121", "122", "709", "710", "711", "132", "712", "713", "512", "715", "136", "716", "717", "514", "515", "516", "517", "718", "518", "719", "720", "161", "721", "722", "723", "724", "725", "726", "727", "846", "728", "729", "847", "730", "177", "732", "733", "734", "735", "737", "736", "738", "739", "740", "741", "742", "744", "743", "745", "746", "848", "849", "216", "224", "225", "226", "750", "238", "752", "641", "753", "850", "244", "851", "756", "245", "757", "247", "758", "249", "250", "251", "759", "252", "642", "256", "258", "259", "262", "265", "267", "270", "273", "279", "278", "760", "761", "762", "763", "764", "765", "766", "767", "768", "769", "770", "771", "772", "773", "774", "775", "776", "852", "335", "853", "337", "854", "777", "778", "779", "780", "855", "781", "782", "783", "784", "785", "365", "366", "367", "368", "856", "369", "857", "371", "374", "376", "380", "858", "382", "383", "859", "794", "795", "796", "860", "797", "799", "861", "798", "800", "801", "802", "862", "803", "863", "389", "864", "865", "804", "866", "805", "806", "808", "807", "809", "390", "391", "392", "867", "393", "810", "394", "811", "813", "814", "816", "815", "817", "401", "819", "818", "404", "820", "821", "412", "822", "419", "823", "824", "825", "421", "422", "423", "426", "826", "427", "827", "428", "429", "828", "430", "431", "432", "829", "433", "830", "434", "831", "832", "833", "435", "436", "439", "834", "835", "443", "446", "448", "452", "455", "457", "459", "462", "463", "464", "465", "657", "837", "838", "658", "839", "659", "840", "660", "661", "662", "663", "664", "665", "667", "668", "841", "669", "842" ],
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "28"
+    "domain" : "25",
+    "attributes" : [ "external", "object" ],
+    "id" : "172"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E19_B",
+    "range" : "4",
+    "domain" : "18",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "173"
+  }, {
+    "range" : "4",
+    "domain" : "21",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "174"
+  }, {
+    "range" : "4",
+    "domain" : "20",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "175"
+  }, {
+    "range" : "4",
+    "domain" : "15",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "176"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "209",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E19_B",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[BBG+06]_Q128_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "749",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "846"
+    "domain" : "68",
+    "attributes" : [ "external", "object" ],
+    "id" : "177"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E19_A",
+    "range" : "4",
+    "domain" : "17",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "178"
+  }, {
+    "range" : "4",
+    "domain" : "16",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "179"
+  }, {
+    "range" : "4",
+    "domain" : "55",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "180"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q79_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "749",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E19_A",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[DOJ+93]_Q79_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "209",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "847"
+    "domain" : "48",
+    "attributes" : [ "external", "object" ],
+    "id" : "181"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q54_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q100_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[TA15]_Q54_Me_A",
+      "IRI-based" : "[DOJ+93]_Q100_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "330",
-    "attributes" : [ "object" ],
-    "id" : "610"
+    "domain" : "67",
+    "attributes" : [ "external", "object" ],
+    "id" : "182"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q86_Me_A",
+    "range" : "4",
+    "domain" : "56",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "183"
+  }, {
+    "range" : "4",
+    "domain" : "6",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "184"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_BS",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "47",
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q86_Me_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "E02_BS",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "338",
-    "attributes" : [ "object" ],
-    "id" : "613"
+    "domain" : "58",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "185"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q15_M_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q82_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[Bel12]_Q15_M_A",
-      "undefined" : "hasPurpose"
+      "IRI-based" : "[DOJ+93]_Q82_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "222",
-    "attributes" : [ "object" ],
-    "id" : "618"
+    "domain" : "15",
+    "attributes" : [ "external", "object" ],
+    "id" : "186"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q116_A_A",
+    "range" : "4",
+    "domain" : "52",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "187"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q114_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[Hal93]_Q116_A_A",
+      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q114_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "86",
-    "attributes" : [ "object" ],
-    "id" : "619"
+    "domain" : "8",
+    "attributes" : [ "external", "object" ],
+    "id" : "188"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q87_Me_A",
+    "range" : "4",
+    "domain" : "51",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "189"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q87_Me_A",
+      "IRI-based" : "[BBG+06]_Q131_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "13",
-    "attributes" : [ "object" ],
-    "id" : "620"
+    "domain" : "12",
+    "attributes" : [ "external", "object" ],
+    "id" : "190"
+  }, {
+    "range" : "4",
+    "domain" : "54",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "191"
+  }, {
+    "range" : "4",
+    "domain" : "53",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "192"
+  }, {
+    "range" : "4",
+    "domain" : "48",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "193"
+  }, {
+    "range" : "4",
+    "domain" : "47",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "194"
+  }, {
+    "range" : "4",
+    "domain" : "50",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "195"
+  }, {
+    "range" : "4",
+    "domain" : "49",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "196"
+  }, {
+    "range" : "4",
+    "domain" : "46",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "197"
+  }, {
+    "range" : "4",
+    "domain" : "45",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "198"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E08_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E10_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "836",
+    "range" : "64",
     "label" : {
-      "IRI-based" : "E08_A",
+      "IRI-based" : "E10_A",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "141",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "848"
+    "domain" : "19",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "199"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E08_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_Y",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "141",
+    "range" : "11",
     "label" : {
-      "IRI-based" : "E08_B",
+      "IRI-based" : "E07_Y",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "836",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "849"
+    "domain" : "52",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "200"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q04_S_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E10_B",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
+    "range" : "19",
     "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q04_S_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "E10_B",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "466",
-    "attributes" : [ "object" ],
-    "id" : "625"
+    "domain" : "64",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "201"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q04_S_C",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E02_AU",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "403",
+    "range" : "47",
     "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q04_S_C",
-      "en" : "refines"
+      "IRI-based" : "E02_AU",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "466",
-    "attributes" : [ "object" ],
-    "id" : "538"
+    "domain" : "22",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "202"
+  }, {
+    "range" : "4",
+    "domain" : "44",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "203"
+  }, {
+    "range" : "4",
+    "domain" : "41",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "204"
+  }, {
+    "range" : "4",
+    "domain" : "40",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "205"
+  }, {
+    "range" : "4",
+    "domain" : "43",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "206"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q04_S_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q07_C_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "85",
+    "range" : "77",
     "label" : {
-      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q04_S_B",
-      "en" : "refines"
+      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q07_C_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "466",
-    "attributes" : [ "object" ],
-    "id" : "540"
+    "domain" : "3",
+    "attributes" : [ "external", "object" ],
+    "id" : "207"
+  }, {
+    "range" : "4",
+    "domain" : "42",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "208"
+  }, {
+    "range" : "4",
+    "domain" : "37",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "209"
+  }, {
+    "range" : "4",
+    "domain" : "36",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "210"
+  }, {
+    "range" : "4",
+    "domain" : "39",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "211"
+  }, {
+    "range" : "4",
+    "domain" : "38",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "212"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q50_A_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_Q",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
+    "range" : "55",
     "label" : {
-      "IRI-based" : "[STH+13]_Q50_A_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "E15_Q",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "133",
-    "attributes" : [ "object" ],
-    "id" : "631"
+    "domain" : "46",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "213"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S_C",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q71_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "133",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[STH+13]_Q43_S_C",
-      "en" : "refines"
+      "IRI-based" : "[TA15]_Q71_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "640",
-    "attributes" : [ "object" ],
-    "id" : "550"
+    "domain" : "33",
+    "attributes" : [ "external", "object" ],
+    "id" : "214"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S_D",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q84_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "72",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[STH+13]_Q43_S_D",
-      "en" : "refines"
+      "IRI-based" : "[DOJ+93]_Q84_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "640",
-    "attributes" : [ "object" ],
-    "id" : "551"
+    "domain" : "45",
+    "attributes" : [ "external", "object" ],
+    "id" : "215"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q98_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[STH+13]_Q43_S_A",
+      "IRI-based" : "[DOJ+93]_Q98_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "640",
-    "attributes" : [ "object" ],
-    "id" : "636"
+    "domain" : "50",
+    "attributes" : [ "external", "object" ],
+    "id" : "216"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[STH+13]_Q43_S_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q85_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "7",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[STH+13]_Q43_S_B",
-      "en" : "refines"
+      "IRI-based" : "[DOJ+93]_Q85_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "640",
-    "attributes" : [ "object" ],
-    "id" : "552"
+    "domain" : "26",
+    "attributes" : [ "external", "object" ],
+    "id" : "217"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q110_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "32",
     "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q110_Me_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "E03_A",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "418",
-    "attributes" : [ "object" ],
-    "id" : "556"
+    "domain" : "51",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "218"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q12_M_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[TA15]_Q56_S_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "[Bel12]_Q12_M_A",
+      "undefined" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "33",
-    "attributes" : [ "object" ],
-    "id" : "559"
+    "domain" : "51",
+    "attributes" : [ "external", "object" ],
+    "id" : "219"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E43_C",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_L",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "411",
+    "range" : "28",
     "label" : {
-      "IRI-based" : "E43_C",
+      "IRI-based" : "E03_L",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "474",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "850"
+    "domain" : "32",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "220"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q56_S_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_M",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "218",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"we combine unambiguous and verifiable and derive a new quality characteristic: Definiteness.\"",
-        "type" : "label"
-      } ]
-    },
+    "range" : "9",
     "label" : {
-      "IRI-based" : "[TA15]_Q56_S_B",
-      "en" : "refines"
+      "IRI-based" : "E03_M",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "33",
-    "attributes" : [ "object" ],
-    "id" : "521"
+    "domain" : "32",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "221"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E43_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_H",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "474",
+    "range" : "51",
     "label" : {
-      "IRI-based" : "E43_A",
+      "IRI-based" : "E03_H",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "411",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "851"
+    "domain" : "32",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "222"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ISO/IEC/IEEE29148:2018]_Q107_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q99_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[ISO/IEC/IEEE29148:2018]_Q107_Me_A",
+      "IRI-based" : "[DOJ+93]_Q99_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "445",
-    "attributes" : [ "object" ],
-    "id" : "560"
+    "domain" : "37",
+    "attributes" : [ "external", "object" ],
+    "id" : "223"
   }, {
-    "range" : "2",
-    "domain" : "248",
+    "range" : "4",
+    "domain" : "69",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "868"
+    "id" : "224"
   }, {
-    "range" : "2",
-    "domain" : "478",
+    "range" : "4",
+    "domain" : "68",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "869"
+    "id" : "225"
   }, {
-    "range" : "2",
-    "domain" : "666",
+    "range" : "4",
+    "domain" : "71",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "870"
+    "id" : "226"
   }, {
-    "range" : "2",
-    "domain" : "82",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "871"
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E03_K",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "65",
+    "label" : {
+      "IRI-based" : "E03_K",
+      "undefined" : "isEquivalent"
+    },
+    "domain" : "32",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "227"
   }, {
-    "range" : "2",
-    "domain" : "485",
+    "range" : "4",
+    "domain" : "70",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "872"
+    "id" : "228"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q64_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_AE",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "11",
     "label" : {
-      "IRI-based" : "[TA15]_Q64_Me_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "E07_AE",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "130",
-    "attributes" : [ "object" ],
-    "id" : "563"
+    "domain" : "27",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "229"
   }, {
-    "range" : "2",
-    "domain" : "229",
+    "range" : "4",
+    "domain" : "65",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "873"
+    "id" : "230"
   }, {
-    "range" : "519",
-    "domain" : "138",
+    "range" : "4",
+    "domain" : "64",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "874"
+    "id" : "231"
   }, {
-    "range" : "519",
-    "domain" : "2",
+    "range" : "4",
+    "domain" : "67",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "875"
+    "id" : "232"
   }, {
-    "range" : "2",
-    "domain" : "239",
+    "range" : "4",
+    "domain" : "66",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "876"
+    "id" : "233"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q80_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_P",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "15",
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q80_Me_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "E04_P",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "425",
-    "attributes" : [ "object" ],
-    "id" : "565"
-  }, {
-    "range" : "2",
-    "domain" : "326",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "877"
-  }, {
-    "range" : "2",
-    "domain" : "68",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "878"
+    "domain" : "8",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "234"
   }, {
-    "range" : "2",
-    "domain" : "749",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "879"
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AE",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "3",
+    "label" : {
+      "IRI-based" : "E11_AE",
+      "undefined" : "isEquivalent"
+    },
+    "domain" : "62",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "235"
   }, {
-    "range" : "2",
-    "domain" : "731",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "880"
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_D",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "46",
+    "label" : {
+      "IRI-based" : "E15_D",
+      "undefined" : "isEquivalent"
+    },
+    "domain" : "55",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "236"
   }, {
-    "range" : "2",
-    "domain" : "133",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "881"
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_C",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "56",
+    "label" : {
+      "IRI-based" : "E15_C",
+      "undefined" : "isEquivalent"
+    },
+    "domain" : "55",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "237"
   }, {
-    "range" : "2",
-    "domain" : "466",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "882"
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_B",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "16",
+    "label" : {
+      "IRI-based" : "E15_B",
+      "undefined" : "isEquivalent"
+    },
+    "domain" : "55",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "238"
   }, {
-    "range" : "2",
-    "domain" : "375",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "883"
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_BL",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "48",
+    "label" : {
+      "IRI-based" : "E01_BL",
+      "en" : "isEquivalent"
+    },
+    "domain" : "68",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "239"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q128_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[ECSS-Q-HB-80-04C]_Q02_C_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "77",
     "label" : {
-      "IRI-based" : "[BBG+06]_Q128_Me_A",
+      "IRI-based" : "[ECSS-Q-HB-80-04C]_Q02_C_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "30",
-    "attributes" : [ "object" ],
-    "id" : "575"
+    "domain" : "54",
+    "attributes" : [ "external", "object" ],
+    "id" : "240"
   }, {
-    "range" : "2",
-    "domain" : "202",
+    "range" : "4",
+    "domain" : "62",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "884"
+    "id" : "241"
   }, {
-    "range" : "2",
-    "domain" : "640",
+    "range" : "4",
+    "domain" : "61",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "885"
+    "id" : "242"
   }, {
-    "range" : "2",
-    "domain" : "836",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "886"
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AQ",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "18",
+    "label" : {
+      "IRI-based" : "E11_AQ",
+      "undefined" : "isEquivalent"
+    },
+    "domain" : "62",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "243"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_M",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "55",
+    "label" : {
+      "IRI-based" : "E15_M",
+      "undefined" : "isEquivalent"
+    },
+    "domain" : "56",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "244"
   }, {
-    "range" : "2",
-    "domain" : "638",
+    "range" : "4",
+    "domain" : "63",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "887"
+    "id" : "245"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q117_A_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[Hal93]_Q117_A_A",
+      "IRI-based" : "[DOJ+93]_Q83_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "310",
-    "attributes" : [ "object" ],
-    "id" : "585"
-  }, {
-    "range" : "2",
-    "domain" : "200",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "888"
+    "domain" : "62",
+    "attributes" : [ "external", "object" ],
+    "id" : "246"
   }, {
-    "range" : "2",
-    "domain" : "637",
+    "range" : "4",
+    "domain" : "58",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "889"
+    "id" : "247"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q131_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_AW",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "62",
     "label" : {
-      "IRI-based" : "[BBG+06]_Q131_Me_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "E11_AW",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "189",
-    "attributes" : [ "object" ],
-    "id" : "586"
-  }, {
-    "range" : "2",
-    "domain" : "476",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "890"
-  }, {
-    "range" : "2",
-    "domain" : "644",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "891"
-  }, {
-    "range" : "2",
-    "domain" : "205",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "892"
-  }, {
-    "range" : "2",
-    "domain" : "209",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "893"
-  }, {
-    "range" : "2",
-    "domain" : "134",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "894"
-  }, {
-    "range" : "2",
-    "domain" : "639",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "895"
+    "domain" : "3",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "248"
   }, {
-    "range" : "2",
-    "domain" : "747",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "896"
-  }, {
-    "range" : "2",
-    "domain" : "506",
+    "range" : "4",
+    "domain" : "57",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "897"
+    "id" : "249"
   }, {
-    "range" : "2",
-    "domain" : "425",
+    "range" : "4",
+    "domain" : "60",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "898"
+    "id" : "250"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E10_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E15_I",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "165",
+    "range" : "55",
     "label" : {
-      "IRI-based" : "E10_A",
+      "IRI-based" : "E15_I",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "183",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "852"
+    "domain" : "16",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "251"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E56_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "19",
-    "label" : {
-      "IRI-based" : "E56_A",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "637",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "853"
+    "range" : "4",
+    "domain" : "59",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "252"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E10_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E11_BI",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "183",
+    "range" : "62",
     "label" : {
-      "IRI-based" : "E10_B",
+      "IRI-based" : "E11_BI",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "165",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "854"
+    "domain" : "18",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "253"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E56_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q52_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "637",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E56_B",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[TA15]_Q52_Me_A",
+      "undefined" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "19",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "855"
+    "domain" : "65",
+    "attributes" : [ "external", "object" ],
+    "id" : "254"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q53_S_C",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "10",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "add results of the inspection points",
-        "type" : "label"
-      } ]
-    },
+    "range" : "4",
+    "domain" : "9",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "255"
+  }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q124_A_A",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
+    "range" : "80",
     "label" : {
-      "IRI-based" : "[TA15]_Q53_S_C",
-      "en" : "refines"
+      "IRI-based" : "[Hal93]_Q124_A_A",
+      "en" : "hasPurpose"
     },
-    "domain" : "275",
-    "attributes" : [ "object", "external" ],
-    "id" : "899"
-  }, {
-    "range" : "2",
-    "domain" : "748",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "900"
+    "domain" : "56",
+    "attributes" : [ "external", "object" ],
+    "id" : "256"
   }, {
-    "range" : "2",
-    "domain" : "500",
+    "range" : "4",
+    "domain" : "3",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "901"
+    "id" : "257"
   }, {
-    "range" : "2",
-    "domain" : "656",
+    "range" : "4",
+    "domain" : "10",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "902"
+    "id" : "258"
   }, {
-    "range" : "2",
-    "domain" : "33",
+    "range" : "4",
+    "domain" : "11",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "903"
+    "id" : "259"
   }, {
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q132_Me_A",
+    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
     "range" : "2",
-    "domain" : "424",
-    "attributes" : [ "object", "anonymous" ],
-    "id" : "904"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph#[TA15]_Q53_S_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2023/03/TempSubgraph",
-    "range" : "261",
-    "annotations" : {
-      "AggregationMethod" : [ {
-        "identifier" : "AggregationMethod",
-        "language" : "en",
-        "value" : "add results of the inspection points",
-        "type" : "label"
-      } ]
-    },
     "label" : {
-      "IRI-based" : "[TA15]_Q53_S_B",
-      "en" : "refines"
+      "IRI-based" : "[BBG+06]_Q132_Me_A",
+      "en" : "hasPurpose"
     },
-    "domain" : "275",
-    "attributes" : [ "object", "external" ],
-    "id" : "905"
+    "domain" : "28",
+    "attributes" : [ "external", "object" ],
+    "id" : "260"
   }, {
-    "range" : "2",
-    "domain" : "680",
+    "range" : "4",
+    "domain" : "12",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "906"
+    "id" : "261"
   }, {
-    "range" : "2",
-    "domain" : "119",
+    "range" : "4",
+    "domain" : "13",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "262"
+  }, {
+    "range" : "4",
+    "domain" : "1",
     "attributes" : [ "object", "anonymous" ],
-    "id" : "907"
+    "id" : "263"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AT",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "218",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"we combine unambiguous and verifiable and derive a new quality characteristic: Definiteness.\"",
-        "type" : "label"
-      } ]
-    },
+    "range" : "48",
     "label" : {
-      "IRI-based" : "[TA15]_Q57_S_B",
-      "en" : "refines"
+      "IRI-based" : "E01_AT",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "204" ],
-    "domain" : "438",
-    "attributes" : [ "object" ],
-    "id" : "522"
+    "domain" : "41",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "264"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q57_S_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "175",
-    "label" : {
-      "IRI-based" : "[TA15]_Q57_S_A",
-      "en" : "hasPurpose"
-    },
-    "superproperty" : [ "23" ],
-    "domain" : "438",
-    "attributes" : [ "object" ],
-    "id" : "604"
+    "range" : "4",
+    "domain" : "14",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "265"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_AM",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[BBG+06]_Q129_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "445",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "E07_AM",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "[BBG+06]_Q129_Me_A",
+      "en" : "hasPurpose"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "461",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "856"
+    "domain" : "18",
+    "attributes" : [ "external", "object" ],
+    "id" : "266"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_AN",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "445",
+    "range" : "15",
     "label" : {
-      "IRI-based" : "E07_AN",
+      "IRI-based" : "E04_A",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "461",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "857"
+    "domain" : "36",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "267"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_AH",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "53",
-    "label" : {
-      "IRI-based" : "E07_AH",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "160",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "858"
+    "range" : "4",
+    "domain" : "7",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "268"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_AE",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E01_AL",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "338",
+    "range" : "48",
     "label" : {
-      "IRI-based" : "E07_AE",
-      "undefined" : "isEquivalent"
+      "IRI-based" : "E01_AL",
+      "en" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "160",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "859"
+    "domain" : "42",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "269"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_AD",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "309",
-    "label" : {
-      "IRI-based" : "E07_AD",
-      "undefined" : "isEquivalent"
-    },
-    "superproperty" : [ "28" ],
-    "domain" : "160",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "860"
+    "range" : "4",
+    "domain" : "8",
+    "attributes" : [ "object", "anonymous" ],
+    "id" : "270"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E07_AB",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_K",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "160",
+    "range" : "44",
     "label" : {
-      "IRI-based" : "E07_AB",
+      "IRI-based" : "E04_K",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "53",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "861"
+    "domain" : "15",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "271"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q67_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q61_Me_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[TA15]_Q67_Me_A",
+      "IRI-based" : "[TA15]_Q61_Me_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "185",
-    "attributes" : [ "object" ],
-    "id" : "608"
+    "domain" : "24",
+    "attributes" : [ "external", "object" ],
+    "id" : "272"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E30_C",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_L",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "200",
+    "range" : "49",
     "label" : {
-      "IRI-based" : "E30_C",
+      "IRI-based" : "E04_L",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "40",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "862"
+    "domain" : "15",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "273"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E30_B",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_M",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "200",
+    "range" : "10",
     "label" : {
-      "IRI-based" : "E30_B",
+      "IRI-based" : "E04_M",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "638",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "863"
+    "domain" : "15",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "274"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E30_E",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_H",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "40",
+    "range" : "36",
     "label" : {
-      "IRI-based" : "E30_E",
+      "IRI-based" : "E04_H",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "200",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "864"
+    "domain" : "15",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "275"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E30_D",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E04_I",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "638",
+    "range" : "8",
     "label" : {
-      "IRI-based" : "E30_D",
+      "IRI-based" : "E04_I",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "40",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "865"
+    "domain" : "15",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "276"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[TA15]_Q70_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Bel12]_Q13_M_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "2",
     "label" : {
-      "IRI-based" : "[TA15]_Q70_Me_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "[Bel12]_Q13_M_A",
+      "undefined" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "181",
-    "attributes" : [ "object" ],
-    "id" : "609"
+    "domain" : "36",
+    "attributes" : [ "external", "object" ],
+    "id" : "277"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E30_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_N",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "638",
+    "range" : "66",
     "label" : {
-      "IRI-based" : "E30_A",
+      "IRI-based" : "E05_N",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "200",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "866"
+    "domain" : "45",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "278"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E30_F",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_P",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "40",
+    "range" : "45",
     "label" : {
-      "IRI-based" : "E30_F",
+      "IRI-based" : "E05_P",
       "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "28" ],
-    "domain" : "638",
-    "attributes" : [ "object", "transitive", "symmetric" ],
-    "id" : "867"
+    "domain" : "69",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "279"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[DOJ+93]_Q83_Me_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A_A",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "22",
+    "range" : "80",
     "label" : {
-      "IRI-based" : "[DOJ+93]_Q83_Me_A",
+      "IRI-based" : "[Hal93]_Q118_A_A",
       "en" : "hasPurpose"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "731",
-    "attributes" : [ "object" ],
-    "id" : "612"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q33__V_A",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "328",
-    "annotations" : {
-      "Definition" : [ {
-        "identifier" : "Definition",
-        "language" : "en",
-        "value" : "\"Software characteristics lead the company to choose making a late validation\"",
-        "type" : "label"
-      } ]
-    },
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q33__V_A",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "304",
-    "attributes" : [ "object" ],
-    "id" : "706"
-  }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[MVSG18]_Q33__V_B",
-    "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "167",
-    "label" : {
-      "IRI-based" : "[MVSG18]_Q33__V_B",
-      "en" : "hasQualitativeRelationship"
-    },
-    "superproperty" : [ "168" ],
-    "domain" : "304",
-    "attributes" : [ "object" ],
-    "id" : "708"
+    "domain" : "14",
+    "attributes" : [ "external", "object" ],
+    "id" : "280"
   }, {
-    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#[Hal93]_Q118_A_A",
+    "iri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM#E05_W",
     "baseIri" : "http://www.semanticweb.org/beyersdo/ontologies/2022/10/AQM",
-    "range" : "120",
+    "range" : "45",
     "label" : {
-      "IRI-based" : "[Hal93]_Q118_A_A",
-      "en" : "hasPurpose"
+      "IRI-based" : "E05_W",
+      "undefined" : "isEquivalent"
     },
-    "superproperty" : [ "23" ],
-    "domain" : "70",
-    "attributes" : [ "object" ],
-    "id" : "630"
+    "domain" : "33",
+    "attributes" : [ "external", "object", "transitive", "symmetric" ],
+    "id" : "281"
   } ]
 }
\ No newline at end of file
diff --git a/replication_package/1_Quality_Model_Snowballing.xlsx b/replication_package/1_Quality_Model_Snowballing.xlsx
index a6655d5308f86ee5b5c767639915dcc643af1552..2174701c7fbee71a2142c55bdcc83309dff47bbb 100644
GIT binary patch
delta 22762
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

delta 22694
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%0AN^DG@UaSB
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
IqyMw@KYRF2>i_@%

diff --git a/replication_package/2_Quality_Model_Formalization.xlsx b/replication_package/2_Quality_Model_Formalization.xlsx
index 0be60f0f3d4809d03a93c497fc70a0dcc947ce2b..5e4df690b8fa2b3cc5b45a93051bd286541ff494 100644
GIT binary patch
delta 34301
zcmZ6yWmFtp&@LL>U4jRK4DRmk?ht|ox8NE&xVy{X9$Z2oxH|-g;O_2vC-3*2bMLzU
zW=&V^vZtQiySqAl3TAT(rsfnL_?XOTAqD&H9XIm3cNp*9z4NqV@o;puHFb2fW%jhU
ztI)P}+~mc5X`gxxrCpou^%B?QmnUD8`c$qQYAy0Hk$0Usy#6PQ=IrxboAP&I-O7b=
z`MCA@i;K2B1D6+bqvWNOuVQ*aQ-6|+YzxPAm5*j+--K17{i~3|k4RE0XaLHWbi|jD
zvFZ+kGlDfn!oODUR3qctQ|geEG``rXn>h6msrSfsc?MH+J`Cfcfq38Biht3{_-X!N
z5o}#~he*)@8;A!tHW*}XFJ-eB_*LB$>AEk2doxViJhf9R&2g!JP<QrSZ$gTuut#o-
zw)uvu7Dr4fHHlBGp#8+gRuAxA@4O~fplfnb8*hvkry@@0o&9a$#CR+tPM!zFLe9WC
zJJtO57X>YJm5N_)a@wy*BLJMloJs*joOVevX26{s=UMOAoMRP=e!_rZ3z0*HfI*pJ
za*MVpMPinGLhSXs3_F=sxAULjpY*#+PxxahGkHLKYc5P6I0pqj1Pb88Mi*hbNP`d;
zP7qdd!a0!wyG0``DcSf<ea2DEfGs@oJlUWT(++GD++#p}H;yHRVT2Fky#C0DZ~!!8
z)3U!<WOr$HbuW?26s!JSw=FquMSl^};V$Q2#*}Ts7U%xRfb%|+jgO$+KWg1kr|oZS
zv#3nwB(2MH3^hzoiFQC?c<!C3Lb^&O7927|`*;*xum6_fBBuIG66X<Pv(?w1T@0q}
zY$(DWyFd-fxF))ytoVo0*Smor(N<5-hTgVqqUUU72QmD$b9_ltftHjH5rep2zGq2+
zFEE)5p?wIX{6*LVIcw488waG1|5j~CS`$$pyhH2n!r(=_>xlw3w5u?nH5VvX;2Obb
zW9P5D0Tnex4-B!XgO@Oz7dSoPLL*;c797$%vp2lslk?>`!vZca+)TA>KF}?O>y(uj
z{{-^g#@#7bM7ar$AHKQFqY3{psM?s67zw8Pwssa&HP=bt1v9Isie9T$MA+i0WbUl6
z>&Z7op}wvo<x>cB@Ma$k_-_%5jzhJ;{0$>XB67l9RK}KEojf?maJ+ZN`{3!}Sb1vj
z*w|M-7b8|(^L|59HZFmi;^S6B{MS8N=Fc{+(V;dj!ej9fy>P4;lHdI|n0fO&9aZ@|
zI;7IE81>N|5Y*oKzdj5XFqDEY5&Oa;uHuLJ2Ki8EOF{2|J4#XLkhM*02cvvy9|JX7
z*0VbVCvb{K(V$=mcaJ%IvO-%+8d|(L#w`377RTV@RaH*fLd<4uTwRIz8f*ktZi1!$
zPB%NVW98#slmt0!ANln|ZH%|r-<3Z;Z(N)Om?Fugx(q(SzkU&n``8c7xVSS1+wM5j
zze@g-BzM2qJeU1F8WUyAxA}9LvMqn7{_xcH1g!xUVXu1BQ3tLr>?Cr{u9Kxa@8Zx^
z4a+|sBn{71-oY3+cy~RAK;}J~vQYvGs3i8iGRfN5ZavE0D$P}&#?tIGAZVY1c5}@6
zh0MkCiYGBo9WOCs3%y<&MI0Il$rauy6z<(S{=_^qazOKM%n~c+x9S-n>{%Imj|}#=
z>H9qG@^Y=}iGHWfC0=FwdeI-RJ_F56*x2$q&=%tCds*px<D0Kk^n1Z{W9Ds=3pepS
zHuNZlXDRznO=FA_G2DgBvedReB`u5pysSKVL>6dHcu%A`y~~?ZXy7SM_sK5yp$T(0
z@3Hx%ArDZ8`71PDxfT%6Eqzq;@;?J*lebEfb{i;l#hDM$eNynotl%aMGsR=eH9GSu
zK;RTB=|sxU#u$r||MRXlMQ1tdlj=4i|J$!0MIZknKMHSzsqPi7<8<<nSS`I(r@@xU
z+vpL!k84xDa(ik{^$CiRoqtgY=!!2{Kxsnp4Mql5X^;jewa=09+p!o4yN-X&Ja<M?
zKh`UAzi!#!jLvN=<w*TV78&6_u(@3yQ2QxY7fKuZn*Up>%cSQggG{Y+xVGnOklFSM
zlRnJL`f(|X^T6OP4#ODb5Beuo*4Gqu-=bazjHj>mq`#9d7gPLTsfFXLwApOhwlEP{
zDj41X)UhKYCZ<BsgXpZ(ht3Xbq1VDJra#AO+9F;iw<)-Ma129v>_*!cFk8Rd`~kDH
zV6N#_-s<$?b<?;_czat-?RUr>G3&Ry0VqRd(F5olO3Soi)2KaH=t5SMeVrC=G0AF1
zNVV0dzC3+?WW`M=8x9IcwJcGTJds<pLv}>~x21qe+63BV;ef166swEVHc0!L3fA+W
zfu8)9zWZ70l`5<?^!tK@<m(%^DbE7ay96jWBP4%{wKRCLCd8phr6+ALt2}DrDXu6x
zZiz!&A8)p>vJVkIt`90d2yTc<WW7s{n-DhWJ+y<HaN3Z!U+x%7%GV$6tXLsmN~0Zs
zOYf6|2ZVR;-rgX)-`iVO>PpNeD{8P2+zr%ECAv{odRYOKyasTNjws`l!B|DHmHXYv
z{GukOaBV^uanO4G*4D3|pD-NvuFQQ}NqBDd2F@1u_%#;o?%jMp?Eekax2P8>=g%hd
zdtJ#6oql+!8;@|@`S^DR1OxC~^HW9vuLS$^)zRfw)k@$T=}k5AU6O|l%Buv*PhARq
z@n9)!2U?UEt4Kx?Sn<Ut*n2BRu^gQ~IFX%ooZRBZUhvjd_R~J2(-|g%^0jatd0Yuw
z-0+Qh=Zjz@ChYS^@wneQSQ!p<CD6aM^^mk~r582Lu^4#Fq;o$xQkSmkhX|Jd35@cX
z4LB5x?@^i$G^Coh?`rNS$cf%61WE~VzHd4dsqSJrg2Dp+p2ESZUu{$VfTj{sK$X1u
z$f^)`L;sMT&_f?m<$pu1!FHwFbsROz?-B`BU(A$0IIGF}RqTl&G1k5^zJgpKw8pYH
z#(N6wFbdDS>%<Z>@F${9C>%W-pqp<JVx3nqJ*^)9?Q6nu6rPnoL4#DcJ{5dp5Mgn!
z_cfaSzyIK?nXqT-RE&wj#oA0l4vNCJ4n9lgu$#eon;2L}2HnuGM)&5fvi4k0wR{aU
zH0!(3W(|fc^O@S;8aqt_dRiX!+Mn6~pvSUyndrjMS?7=Gqa*xcFdI-TLt~&!r%EZV
zt4gPu>1>b+eG|XsnJ_lDb9!X$qPA#0MoNmu2<`o)`$apb^*Q>7iB<nkx&b#j)eruj
zucOET50NSi<~;9HL>5AC1|=^oN#Th5#I9lG95iB%)N_TQFP`Nx6<kdlY?eXGceGq%
zvObc+ZQxg!|AAa$C3ZG4DF!ZqI@P;(-Peho>V%07I7k4569?8*mOR3qv#G{85cMx=
zY{2DZ`gi9`ROq@&o1@%t{3pN9j*X4QBdn;`W2o+~R^CpHeSiO8*b7D;^5hVMu%bj}
z*82)QrODVck3dvD_4s0PJjZ?5lQPLBo)02XO$LG^Tt&lB;*=n(N=<=F!SrftrNWU<
zOP%0^NFamuo?biK4vsn)shol3{H6B?lC7!?LAWhJE2EzBd%?At1~pR2$q3p(qbfZH
zrpoc^u31Sz$0f1xBYaE+ZMH@p)$N&weZSeSVkvktZ9P~+VDNXHcW0AiW>rR6n)L=>
zhZJ_87mu9V8G(H?p@a`|sW(Q!UGboOlxZ}<JRsn%C}@k4fw!yMqdS38afDi$SX*&2
zhc#2_C0&HH_v#CGSRDl!>RzN(oRkTt!d@h2U(RcOrc+mLPYb=wq;o*A=XF>jt{0CP
zhnNWA$}q>8*G{Y7aJYjuX2JA)wKw#S(|oce>b(j6d$NR!jjR;TnMIMtNpIbE+qA2~
zlYsh|HJq46od0%2+oX)AT|kNfo#D}w1rx3TJseOJJrt>pn;jhWI}ZH<F72|Z49Wof
zdcpSX`fc>8Q?J;gI&wxh$a`RF;u}K`c(GAtgE73&#qh;6SYJY^W*UxZs91gN{+7f1
zM`IN(Cwq?o{VfW;%L2`058T0eR+i4YU_hnB;?WZ7r~h%(iu)+5YanC4Q+`p3O|{kl
zlJjLW?6>1C1Wg1eYBbnmDC|N9`~kIuA`s&8iAg63A^ZXirTjAPQ_s1Lq^sz6A@UlB
zNiAy8j9t%~fdvK9M}>FssFXtN-J^Z+Ko!;Y93`}3Fva)A6#~Ps$yfq1OykO!SKyOR
z-avUK@>fQ<4mPaHZwOEW+GelLqp~*&;U}`z1Mnq|_J}_vib(&?-A7GLBioh83AmSk
z<57OWJQ~|aY3wO{|0g7SX#Ty8rL1EX8k#r9?WpwI|6=|h&3;}?AmMR;!GjYqp3!U8
zQj(4Ms_kU0-nYv_%ZWOI0c1O&9@M_v!L!F73ZkTx^1wTN&-{k*(}m^x<H6q#Mjd_~
zFSjpEMt+ZbBCmU)!0U6d&s9&;+vCaET6f3ml9Hp}{hGu5$z8|m$(w^w$II)@*&5(?
zb)7nWznhxl7rPEb?tdp)d&ZP+4}N={XIW7Zc|C$$coq^%f#o9wD1=O_;HPsiU0jOc
zds|mnQwz$lD9+S5WKh42`M~693sVg~7#|>^34sQo#DG5oXlx%aE$z0ZLwNO@$v1VR
zT(2qat|@xD#&^PXAMM1hyIAlgSD#G9swH0t9v5@KOs>fLc0iEf%*|fMXr9E&>)KlT
z+m?uk?@KIT^wtE-;h1UUIq%n23tb#YqJQSbz3u~@MxjfPo>)|>fxI$_4l!~#U2$#(
z&|tS+znt*tWv)G^!OzM(<fvSVbPT^O#{zf3PeYcBMd+8%MJn6#EY0f10=(jj!XmS2
z(X&Z<M2I6H{C)$X4z2Ws0)LE~^~@CQY)Tc6;puTQD@cK`<hKW^x2qq|6EFAF@{B3$
zwW{>JyYl`E=Q7B(B{lMz__4Z5VJG47<`Ph~y#rblE4<T}CeduQWqIti#HEUMb?)Ta
zuX~Bl6V;a@9u4AE4^c&mj7i9~&FbXbs-?X#TBc@P)G0jh#K^mw9F@E}p?MFF7L{!E
z5dC`MQeg1-<=5<=ypW<%#3W=&i0@Ptj{Kp@TGFOm=0UA(cBPb*B{4cOp&PS*^v$Hz
zCCsI{Rnz0Q5~`z&={TT^x@D_y36P$eWV9P~l?W*uS%{Gd4y;ew_)#lkcx<By<<OD|
z7e%F{g=uV8a-Nc(oDzSKn9#Yv7Imvt;qoF20Q)ldrMgOd`K#@AwCh%zc*7=EAkX@_
zw1OGc^a3<ZGA?rZFDzmIuXp<_^;gy7X0=3Y&gq^5HU2R{ilp`kRp=5hM;1}ht!2KD
zioG2lo&9{{^9ByB1Xp7(H3nc(>hAJ1TXPuT&OA(}nNDN#f8^hqaXG*B0-yHH?VtB}
z*57bmuyjzcha8XTV2bII^^jmIvaEi#$xP-Ps#)im?!rX|r`fTw<Lq3qz1GQX@^i_#
ze@Lxx%3U-&;KsEp_Q?pXg6BjR)T74Sx0i^n1tIftxfNPu9gLh|Y39R61{2Y0+c@{h
zD&fwEkLk`<f5zUFMN^Vh0K}oVI9P5Vs;zTAKG^hs+mVmyxQG!;3HJ+5{}_f7G2+|g
z>Xr@RQF5tab8wZks2(IF!P`h1s$e63rluIJETgm{If!l3^QkM;^&#PrCnw>Oyc7zM
zpGl&G(fw3r9f9VmHiOKy_ZXDY%c|ZJVQx=4pW%dS^RqZ+CTn5_h+Hd5>C7p($GOw2
z7%(G7@KDg1us-EVd4;q6upIqaC_?jguSgh)Fj+9BPPlZH%zKr;&k9(8Gge8x=~|r5
zb~rwuDy;L}J|8Dl$Fw+LMscaA6l#;p7-&4lqW(2k@OhTk*_R`4@(7~M|G~@0xBfPX
z$bR^^Tr(%O{<s_%h9>=qnW_x0q?d1Ya-3WHv8`G~T$(2q2ceE%YkjLXo)KkJRU3NN
zUCU-dwLtt^))!%hqsx1~qKAr#(OUNuqLMM<U5<hjnUocUk`|w1J|<()y?VRyEFn@(
zn+eu}OW!Q3*Vchp`pRW<|CmNMVcUd#@btdKw^80jL8p&^gMAi$yqq?X*1;ClDCdx?
z8ANC5TNX7~f9~{;s`Y5ntiarObb4aq8AYnrSUkUw&{ejLJ-9Souj3P@BQ$m?J2<^q
zF~jxAb@@~sXdXyG4h)I#D(W&N<Xkizwfgk3DjGd~R`HgScz6)M#iE0d;Wb008l8dv
zlAQr<GY$yae56$wL&5)XmI?bfgmnF=UZ=hFGN1nbAt>Nw9w$_pB+Nyh$5tf;dpd~_
zPdX>Z>kaP{eRDfwXRW)tv@>+8PdPI_2-G=2VxmHO{*o?nj8DapP+!un!{q4O;a~H2
zBuW!^o#i6asO*o!T49ZfvPskZDxKY2-^dbwB|Ok7(850%9QXlAGt*hKf_Tl5{QO0#
zIIB)KHs|Wl2VJ$pxK=%J`tlbMZ|&-=M99T4EW*-2B;$;9n9(+8BFvCeF->E3JMxyX
zbM{c_4T_A5nL<%8QABb^7RlNs?SiL!zq3tSHZ-4o#Cw5@;H(-dTt(gYt1Cp4!JxCu
z#u5NWJ5pCgX(M;T*a0><&EM3#m~pQ5f{{bJf~SI7xx$Dy###MBQ0UK$QzLo$M3zud
zu~Y@fN5-ZYM09$GNUs*yH}lu9=I6MjlGk-2&QVDovtX2W_Wk-!-B0E49+37CzU0*i
zlfR9EQl!3$QkUyQSF;anaw**pw~ERc&NAR8QR7GhOjwW&TAgRM-5QM=wJe_ly_z|c
z6%lbPCD}or)|Mqq*Xs65=!KbWHJ6n)iMO`5SKsi)zf#HQ^NjfzNYMzFIVmYogq6@+
zs?;|Y)2(<@V=8Kqs%T+p=7vN-)M}$b?byh;-Njpl$-E1CK*F$1RJi<~V~Brv0@=LH
zPA<2o98COzT*0H~;|u}FrkIhlH%k1i9{jCcH<@WgW&RF{74}<-uK7+bTxr>qCrCYa
za8@avM;ZC2j}#^`etQI03ca{NWOyB~Vhcs!!Kwis@62tB4x%9j(j{YEV*#_3X}M>c
zjE|$gXK=4A9}Dl`IW8-c!{{E!fJm2ikB`5}P|v{q7L9SDxj%SYHduWP#|T~8d5}N(
zRzv&XuMwkuyS;jqt47#3yXcU&g~1<Likn`^yzS}7V4z2*0*xFkvFxJgCA)YV%aN07
z(9q6qXT59TGmBBAJTnhammBX&-&<K`P-B5;Z^1{pZ1oQvhctE$+KoR0jBVwHaukG7
zR>whQRd6)T%vEzizgqZT>}7OP-CUkKVQ~0#KCKw22wh7LIJaBMkuO}FAHW1|(4IhC
zTv;ld>6>TnQA%a?aFH=et)Huv4y*=aI_%F$Be*O(A1F;_z~I97s9k;P*8JV5)>TJh
zHJoAAd6vkRmSbJ?biM~zp1mi`xr-HK#x!RmwI!Lu&?9%Y;bX$o%_5dpR+L#$6aKJ5
z%r-V)k^;*gL#5nhh_=fpz+^TWO_eB-8eiyj7UPI0at18N(<Lo54ETj}$)h0RTb71(
zQ448l#llzJY+u4#-e4cf!dr?~p;I=YC|Rt;nPd=oR#2nDXMF|qea={C#;;DlZ;|$1
zCs)7S$f<Q40xMepX+H^0bYDJE8Lv#kSk}B5U7*G>NST5Lx55b2EMtQ!U_{a3<-^Ip
zM&v`Ju$akTei+_3C6tdo4)VH6kMI)iHQj;7`xZl7vj6lL#7iJ2Qfp|0jr?oFwo?aX
zlQ*>qv}|Vt_X%+2b8F$z+JJWz8t4)pkVc>R6WVHA>l`Q+NW#NRueuh2N<+_jQ9!I9
z?*C)EI}Az*`)lp3vbd7M?l;GBakS!9^9AEt)J*3|azF8Jsl2~(#XehB&GPb(QWR0=
zeJ5&WH5JvESj4tfDPuE%A?2c5Rm+3tYFE`jhw7bRvSR>Bd3kIM5Oc{U!V#OH24GC(
zXtO4HKbwk?Ow~d*3N+}nKALad!9=5@C|tUX1;r%nVSrLksS`yYyp6$N?q1fgu_-*v
z4+fNk#{NYO8-4bxA+lvBj;D8uWB(Lpk|a<saEKuCAt6X(k_5&6vGu4l8qBFGs8&S0
zzj8!@TwhR8F*QdAj}{?Un$LTi8r@Pl8LCYXr|Q;6Y_x)Y^W6u`9`;{~d^w!#x#5nv
ztJtN|N(vT!|AG%e3CeKhq*$V@<Wl+*)Ft)LP?=YI*zbyH4V!GPo!Njdl}@*=Gn|FH
zYt%lCNN7C>;%K-ddIeSml1dt`6vGN_0GL;YQpi?lHUC0snL2Oy6DLf@J@Vn$5{^Tb
z&|?0HQgW!0WSjS0@3L{N!BV#=7Pn^BVtzC?xoWIs^-UUad&F<5nfOe#>;R73@T*A3
zM$!CdA>j1SZ881wcMBZ{R>RI8N)2iRJepZs{cx~{8cX||P`*YUa<mJ=BV=R#z<vAa
z*b*dhn@~O)cs8o%S8y8(vJ~#oef)MAn@|Oj2#`c<LOF|h+GlBJ#yg7XV#+Aul-6Of
zDy6F>3b%=)$-0wr?Rbhl$4!-5M<7JS_QA~Au;*Pww*&>K^&sF?qf@;PsuUvSV!HU=
zR))-#yPurlEJ(h@%cwO&++hqjoyv;(GHm+W-q>>G@AeX|QRhK!Ozt_~Ajz9ayYD&Z
zp7%D>2(^~B$g2w*Sn{R6Q20q;gzl@@8!N4ubN|?xpt`S;9<1q=!`!-ebK9F^zC%jP
z_bXE+!?gCXUd}64*=ru=+?MMg=Xuybob+Y!KqHDiRmHdEb@wD(WCU>L<5t(FcJcNc
zIX68y_5>7}W2Kqze7_mXl@^HjjF%WPh21XlSWZOU)%8b5Cp}s!_tF5|*2@=c(Z96|
zUKd6FAnIcyzYJ|4pln7ek7r+ikTudpYIV66_;%8t7pWA@pk?L?9zBhIgo}9nh=Vw*
z9Kw&uGR9-6@<ON<3ZM@naMtS54BD{?M;*?Xe)}t6Ux)fLuPv)rh4yQjAl<&`bMNxl
zA_uwz(f}zdw|W|Rt?o-WG;6^*P09J8bzdWqhiH2PWLtF?HS8n}yLyE9dSA~tVoFI3
z?7Gf#=hnJAbfsr8+Wso~J%<x|$(It;jZTj~yL}j}LcE*>2yLlqDolxun9?uRV4ZAF
z(y(#yvCXosYlK|>Iy&TY>Zph=7(WpZKC=>~+=F&Rg2jot0LhbF?kU(6Zr2#FjmIf(
zax&6MJ6}6f(g=$w#Rl9wA0Ev5-(!wLc3pG^`K;6h*&!39@WBH%w0iACtPz9+Y-H&Q
z!5tGZU(88hkwXYoD&o2(3t3L0POeZ<xp0Q1v|_f`<eB@kcwUbcS*t!~q?P3aZv~^e
zDP<8?0i$}2yZhMJk3}YE?jNQ6kj<w^KC$SOk%YxstYDW4nu^fOIF%pzY@Q`H-nC2*
zJdDc4c(Z%6TUQyP3sd7>b9?cP2Hd+w*Mr(l%*3^T)`I4yi*ph|Ptb0Sr0C4kxPJ6N
zKFL=(+H3R=Uu((HJ9&K$!9mbxU!~U*8&elo#+8{kJqOBy{dvr6w;H_Gr_mvF8i<Od
zNeFrHcM-Fj)8BJIa4g_(wl)ixo5tMyx*DXML4pIzu+QO3hI%=SXCDau)$#Y??Rp$q
z6!-!>P6|0N7#ZzaB$^!TluC)`d3b^x#n>C7gtowFS_gvVB>g>qNUmf4rt+XNHL;{V
zPq*fE3S=#{>0`<SV3%??aQiHHupg-zcz@}ygs>nH2GMvK6H+knYxI`|j<9@_l^lhy
z;_W#`$;I8!w;77epq0(qv1>bQ=(g6*3{_wq91atN-}|Gn-V%Q7Rx6oK3I}sQmCbvv
z_WZTAZ=21#Pi2A`DR^~bWCg!hy=ReQb+NsClT-<G9r`zOpR@_XAq+g~K*^{QPlMYM
zT7673IVcd9**L%xw8rn#5bT-5x-RZ#ei#U+_Vs2_Z%d~86iZW<K%EVtwN`gCdJ!<)
zUO3q$#@A}f+#_xusUY6VX4(CWX0_e6!sP$8m#%L&j^t_QvkfxeuEH(kR_+yYw7E{c
z!qfe9U^}eSo8#oW{@#4fruBYkXDcWGYj^_70HXZ)ZtQP?@!%)RSQ)Esa-W7dzZ!Bs
z$}YV`EFv+uh_W;pT6~ngMN@)2OQ0m3$YP^0`|D^)2M)wYRuWXS^W)#YI5AonPMn+H
zY>@bhlQ#mP(6X@n+ySt&!T4h@H~OAI(3XL|W#qcai9zqdagvdcbgQ;m#17$nka&bw
zq)BE1(i|t(AZ(_n%p<&VPsiE`X&cY^pWmrr^u3AoeZ1eZ9PGYUO-Dc10Nu{o;d2ut
z4~n_NhvpgV<60}c=ZV2*9zJ+`Dbr%LSVumtRf%A<aksj}vn3WwN`aj!FqE6hGMyum
zR)HuQ5wd0$x^K|Ki$k?+mr%a^2nz0qnr}tr2+GX3vQTVM$tDYu+~~n5NEREpgbW?D
zSnPVJ7H?m=D9U?tzUt5f=n#_bXlmOPnz-`btg!NDJ*I&2C#3f;Va}Ui%Wr(_hk12o
zo6^0fN_4V5Df{%rI($7f+k83h6%hGRM}>QB;FtAkkvWz9BjGQvPT$kH<WtSv@3sh+
z5x$xQ*+3WYt>b>P^5ckxfaRFK5{W?z<i4NB6SA_KW1}U(f+#QGG0A-Zah|<0)$N;I
zVM77q2h`rBMeCJ=NBGyQs?@+)%Yvhw^>Qfi!{9Z9P@Wt2A7^kcWl*M`Rt$qX>S|)6
zlkP|8?g|kzg1(`4?LP_JeA2ZQN`QsQ;nv4K<o%6ynYe}Dd*N$aT@Zd$X&=!)_Zt=(
z`k`S>C;(Z2h90n}4e6^h%io-@fwuEviKS+nx9LXB!BV3A5~3oihw1pELdd+hYCxng
z<vW2e$JKFrxJL!#+)*3a*KMe0133{i6|lt0oit|D3`~$v;noa<dQ{{0dM__&+-`md
zq;qU5NzM>|ymt_VCEew0_l)Qhq&KS39l#sDU;gE-SOOSDDSx=H8BI_fMBRI_*En=d
ze(pbzF1eyxO0}xST+Q9g`kMt^oior(04GeM+*lDgo1nVR?G-lYPbFt|Qsx-FSz^5|
zVT1I@A(I7p)R19aqid0o<+_^k)lN`gn%8{goPqN_WhH`_8g*VA;kcqe+_p9(q<%1G
z-`$09A&^2piW?i}7h_KnhGQ{YM`CN4?o`*BeceK!C;XMfSB{oEBsS9kZJ*IZ!d4}m
z&Ey>+yL8JHRG#J2Mg#K-WhrM>jqU=&k)NI5$f{Y(o2lztCqiyY5cKVKY9(nH0DEI`
zLgz!nOYSIBSWM60`LJ$hSHM{{ECy2nHs7ty1-klR(coX(p8k0kPgzCh))J0TI;|uq
zs&iha9lPeMyY9kpZ>IlZ+VDson@5G)5{=`F-W&c1IXkv<>3{zA+n=7arJ{RlkA$Do
z=&jFmB_SVqf)xiF31bCe`LNbteL8joUBdZ(CQr(V>~&WOS?DL*%gNo%+3SN+d~Pbx
zSlRuWJW{Xh9?(Me1KE+<7Tq-Ny`?(=f4YWiJKL7<?8q)c^mOX%vd&!n5op#j_I&js
z@S7`6ET#|feL8qjCb~aqI$8jknB&wItHQ^O>n^XHis{wdzNqh;vU~PsHDQVo=~;Hx
z`L>e5c}{#}Lhm&#`hjO+{|F7;*r#rwjp=LMv)_3H{qfzeEFND?=4sYc%MwJ8^QU6O
z66YP6kl&zWFieicZ+=aJf>yXili9pUa<{vmaa8)`*(ZBfk#2W*T7}q>)n78p+Vilb
zTvFsgkw+I1H@!HPSqS6&K^qpAy}nd5s%533)B}O7N*t?EO7+DV+nhNdB*tW5hb{H!
zI|Is>@|?dz9xAcsRZZTl7x6Ao0;qFelyO3sqH&h{Uub;nmmN84j`wsD`<T$^7wkZQ
zVu8Dga-sY#5SsT?$`GVnwd9<HTFzsgwfs@@u78;L2~R64Tr?^py_8YA?8Wy3pjZV_
z_%e(XKpH}&W-Js}sPDQx?F^VuaUST~PDKU5n-kOIJ7Z@Kqsf_DE8bjD@i{GHN}Xg!
z36edO8tAfURv!i?krgp?Xlz^1Hp*_VP%*ze|4v{i=S@<jK5|x5*4B8^OKBMx&-1Vq
z(r1<yzN<T~*-|BXn0KxwqZXe?CrK)V70B2Q9RA=QDH9_t-1~UkZVODF=y9f5UP9{C
zz;5y)sG)2(Up?Y>p=Pq`7u|}4s#qpW_5fb$Op>?&v)WFv%~A~|4h;{(s(_5{p}-SI
zAiVri%_^TSb|NZMfeGy#34TeI-&<e<H+mgwVG}fe#9m6Y2$UDQE1J<bB&c#Fh~5(?
z<QnJ{TNUvp)Ce{W07nMvxnhGAH=g5LGM~C-)v-i|6{yLi>YwdpwB&5Ui3`sH_+lq`
zgZL&Sg+{XwkiJ^5k9zIE@}*j)d$W2^rtfzRI!3}3YYxR;wvWe@I~$8*wFE2BM8Z)2
z!oX{m94r+)5-wRF4qySxeTluqG5H+OW!F2g8nP(Mbvrl_3IxTRI`3IHIbt7|)n+6z
z1PJ_`!VHOe*^Gw)R`laba9&AEC*`!LVlV3=WDdHQi$|j6c=m`tSD9cDa66bVgR<vE
zDtPyr4j#u39;^Hq>pwAIE8x7@IT#O>+9}WRP4+fT^r*7t1%*5Abu{Ad$j`^{qX%1W
zM&glCCs6w>045lHGGlYvkYO9mH&@<El-Y^1+N?*%{3)x8a6pz{)jDC+_i4?ark(CX
zX#+l;K4B>*K3Z~Ft=Xk@LQe7uF-$+7xQCIN6f;{G`6Y*69hjskP<zHNTY;F$iZDgG
zR^>8s{&PvhORwclH+E5JxMLtJd!-!pG%ONoI&nESz>F4waf852flEHorP2I+kC;3%
zLAyP&;d;Xl{Xrj*a^;fJ$+_&C?T3lc?EC1@9}-H>K3z?uaFL1WX49!+RI1I2rO2u1
zMF!HE)&}a$Q3{MY%=J6HMJU`2qqQI$`?PHy@NZZFe)oj;$b$0RTyuq0sr`kk)JsZp
zzm{L+fh;p?q1I}9yyjkwD__izLt^F&0&!)yECa>-a0Q&CGz)oC=9MMkmwqJ6>7HLR
zxxKxM*R0H7xt=2K-CxV9T+C?l*+jY`6}VN=AN*)_m|gP18w^cfj=jB{^CD@O$I?Ts
zcWp5tD>w~VqClq-QKoIj?8KCh*V3#T@9GKxDUP?b2R&a6E~CS5dLp*41Bv+uOutIp
z)?P3W1#Jz%@nrns{1YvQb7=cCNd4gpil)ts=_U-Wi7tPng>D9BSe~=QY)FyV1x98N
z-R;7#l%Gn*NV0sXWATCkA5$vx<dkF)l8@pgrtEtRu0L*h;YIH2Q+fA(Q!(Y}3OLqm
zfWhG(L>@-82oDGUkzpugdPoEp8Q&u8Bloh%qW3EB_|$VjwAjbL$g=KHz1P(XgmFHA
z5Vxj!U6#4$vg%n4Yy=0KtX1Fp8QZ?pY~p?jf9w^hpkk@t;bi_iQ$k_s&Q6i0=l8Q%
zp@uT~Q9u-(>qrdB(s^?Y#rue8`q;t-IO6pf%M!)dLhIps&V)6n+N#7J@4CJEl!1WZ
zlBH;8zPo48eX423P;ZgT6oG%sx@^EZ@bybKUk1_wv4F#-Wixl%5~G74gMWrqF>iwN
z4rhWvZt*|6Vu^YaNK^|>RAbNe(kALNlf$D|y2e9&)~E_fp?tUfany%|CXB#_H5#dc
zZj~9*@R%@_P7Gt;@;Hpjp*w`aT6RINNFk)~NFQFAJP|VZ#60Wq$6Ql|QK4D+lWr$u
z5@eT`bux?ca5L%ps%s78hEs6lxPPhxOsz*s5Wl~!*7X<%=CMu85Jd3`VV@}SXJjZl
z7xo+LnX<zu5a7k<N$#*G0X54tGx%HwpJxgwJX+?q@~A}Krl<*A?c~@ACez&v3FMhA
z@~^=4Rw3#(s3F)nhKN)qza-?kovF*P(YtQzeL`1*C5UbzluHqwvv7=!Dw|N44K<ea
z3!SR@K9XVxRsvP7jEyQhi$s>5Z0de=M_!$J-2Y@xuFfeY<zZYBAhl3-41)Y1b)}`-
zuW*W)!L`~-pNMXC!*|2UUJ6)@ab!Y>p@%|coTpUNb+GvT^PTh=GyzjRINWH|Il1vu
z=78$V=$>2^8TH2NjCOj#`hq+s)JU`$!ynj+oU>=<jL90u)9AXKhp$TePvys!ew_5Y
zb9s_0o{0%-oYCpPc(qzUI!g#bjOdQ-CiV!IQ}|BtRTCKP;AAoG{-e~+#|{1XRIFE}
zQqhELwDbpXrf7o1kiV#7f-G`&rIio;d|5~SNv&V|-QNPDi(<{OdgbM-vXXT@%F_os
zz4Ho*q2$`2@^OaJCbvD99Sg&<{fm1-w4uP&gNsK6+7*2u_P5<c2WeAJj6jZ|U*~L|
z#e<lPW5WB{NplA5jN!%+Z7R;W3HQaW_O*Fd!V0{;`sW&lRO8&=nqa-8W%{2qv-Mah
z82#-PIhx2=CNHgfSyh#9acVrgdLt96OaiDR11cXsGey)J@;FZMq8H{@sa%XGK*2E1
z-_U)EfeP#b<o;;*4*p_~tio$nxQzVNRiC*l;5`>qi)NFuhQ08&d@R4VR-HCv*u2K9
z`N9q|hGq%&vrCggDA=`lu&!h7su_v+-asq&S1+-6M4QvdZg=*gMbM<#$?lVbPfZ5P
zX}ay_Icwo>L|^Q4VEbtEC-Nm#sc^|OcUec;B5Ty;fyjR`s*mZuVa^pZA0_FJFdijk
z2oqrkg0if48L&)Jv}ObkFTW@nMwzLV4b^U1Rq&2zClSp}2+YwnhUiYMClPfB;?w9Q
z1|}mAlG+GAi!Wykp^v1p9gsxIX}j4`BN30`-ofc+KO9Utc(Nk>p4*yL@Y{E^&CXVz
zwbTdH%~<iSMs~VtY0i#FKJg)b$b`^XL`(PM1KH7x)`;eM?`)}nR<cq-Yw0|iw7~&5
z1X9jg+Ny>D?F8^2#o7T=ub%_Lv{mq_$J?OPZcStM*ia*c&j?;=W=eI5u?E3pwu&ue
zk(=_QpN3SVIiw)+<F#9X4?~S)DsaBhfVtj>_qlx|f=F>hfo0!SGS_Z@+6ZxTyDzAO
zo7Eaf=;~HIG0{)(&skT8^x3*DMXFH34P-z@LE+%Jj{f*qPF*h`GVuS*Z>wo{Vl0NL
zk8xZ2LE$Ihkb&$Lx5_2YI>>skX|7t|dbz-tI9^L0tvS<gAs_iZg?J$UdYJ#V3z%8i
zFHBt>P^j5zN(%*{+RPykf#vpeleGEqayfDQF~^d2b^qCyt4<+1N=kjcx8<?<IJWG-
zQ|g7kldL++ho6LVw~%_17!f0}lkAqIq0Qt{s-f+TXU~}t&XWFFATq&NR9uS`VR#VL
zjd7k#Pfh!R13hMf&)pmE-HXvj2@p%jyQ&prjL2_qy8}jkOTA~YYp?f@H%})`XB{t>
zZ|~}-xuKwtt;~km;vsVlm`MMP?&NI4B|h_@0*q^ky?pP)g7AX!9cClT4>y*0(RF*B
zY%&we+kHUjCOYCPbqr8u0eerDf*t9?Szm(D4T$p&QE^y0!{!z7@>jpyKQ+x7N5$7R
zFk2PbWN&cr+?(9Ku3VR1kK6GzAtE*oozE><Y(9n9Hy8G6pjB_As$0u3`OXrrab`?+
z1Jpyq7=gz73iLM1STv7hA@mAe_v*E6+l?pW89FoKFBS|$)6-PH5kO_DCz((hbx^(f
zn%&u?xRgUQv6=eTEmgT^IN@{>AT-EXPmN_OdyQ7EtAV||fh_K&YWMH0hR6-w?*xaZ
z4ipJfqpLtGg!>@mHEnFUs)}<Y{5C9ZptXBxYbvpgmi;-?7qK9XYNX3KdmxZEdaBDe
z9u!D!#C&N?vbPcO+*NN)Vcc!6BYVZ(<HG)cYYK3?y*^Of{}KE|`6FYZwSlj?9F+x8
zx>96b{$vRpn@jv|>O7);jxJ1`_uSzQS)Z#T3z1Q*t3zJU=+2p8Z=Z#zvTUOnDEEu#
zcGx)V9HaA;yGwp4kNMENV8<k=lzTPDpSan&9pZ19hs&a<Pg+d>y&IH}-{!l{=k0v4
zz}7<{ZRc2#&^Ab2sqkIH4GHrps261bNiKx^T;0NVD9CdtO2bhyfRjipzjkl#@+%`t
zSdTCWy;erlNax}=!DP0X=rQ31z%WAa857f|_q@@((<qAp#&iNv2pi!P_soW>4U^mu
z@z0=ww3y^8N7x+K%B0C347T%4R>J7F_#=V8&ydmB{~bmQN;p9eAjb`H>~n&mxL4!;
z@?)mq_t*Yi7Te8=Q(+R#uV0RGdP47n1UtX5^lCO}j4XQkz?#J%A_LoPq=k=5iI{LI
z*i9?1kMu#uy{tR5%agE9b4=$Zc`ix$qAzhaZo5Gn=^V?1o4;u4JdfBxD)Pr4gQXE0
zGiXccxe^z9s2mi{O^=hnky+oAj5C%7zDsar<l&kWY?@XZ7d;&rfQOw{88Q!y?nap1
z6k?uH(`KXWql1#5n<#C=pdE`2BJ7;Vi!a%*;*QGXKNsG{pfcw^hz?hBhXX7RXo;i(
z?#L+Fuw&%!-@W@$_OE>a&VSz=WF>uaTw=u?SOc91Ncw@oC78d<GLVZOaVpKWjMO`k
z)MWIg+atR!d92kYz9YuAWx!I#etI5%GsrqPX{QH+Xz<><MbsQohR$kkw;Go0|DE44
z4k9U%11GA_FiIg5Po9iDc}#=jVr_cT+`p^-z_o91pvf-T577c7oAXV$DsaWMC3^}C
ze9Ggaw&%*|+dA*esz0_$Gnsre>c*7nq8ou-(XN<dlB`Rxnylt-RTHYrXX(<C6n4mj
z!qb8Y!((X{)}?i(=WqTrFP@-<<aOpGTUwubj<Qa4YjXS)DT`O4POE11e$ep81N%!Y
z&n==*0`nDs1s@7ze^FWHJP$&K3<b-`XnzerTSJVDWz}HjTf7vM>Im@q)q7>kExXz0
zi8)^PV4Py!(*@14Cr5%{!rjyHXN+@i(j+mNQZGKAFx$6REUGoL44iwGbuzQqRxotv
zpB!Zaug2<}9b8IAOSfpr5kTE~W%6rmp(@Ce^VFl}PpB+_R+jGKX_fmhrx6JmBEAkt
zUgruF$1H!q`5kIcr;k)AWj=S(HF;hhx0ybxosMVB*~HBB5r*rqWDMFt33|Yu=6Y?^
zWdN=pv(2RuWBr(PTBPGlp|)Y~#E_pMe?dG+#IuTr#$$WCg8Z*Kfb|<As+xyp9`Vr>
z-Y4M$doeALMOzw1EGbQeM=iRsR`%<GvooCB$JT?1gWxyswb=riQCJ`!6|Xe<3Vo@{
zho3Nwh=Y9}JKe)fj^PUsW%e+2+q%EY)uGl1!5Fc>Qc@k08w((!FSCXvU<r@xwqOn}
zAw&J;s1b<BXC<R9i7>DfZDxeA8$jFwY`wv8uCO%#sGC6n*~s$;wA}=vVTtK7R_Cpf
z+%oM&=+7*j7VG{xFue=s@7l`=eW!z?#pdV#&paFW@A%(ec)>>IaR^q7dcsz5@TD&x
z_b2==&Q1fRNSghP6NVAZk5xBn%e$ZB^;Wmv+#;71sQNJ0{N5mY%HPy8BVoULU|!_)
zYNX@!xyt8mqzUkQ*!p|j;dkPG=J(*p<NI(j-|=>Ka@4fe{(A8;apn#jVw^#=PAFbS
zB!uWN&iv9}N16_D-d<{-&R^F)h_t>j$uY}KRZ~3)&l}K<#@VitE3?>t^S0@Cb42$_
zo1hz&pUQC=iq=n9U6ykh-g*XZ$_}19&Tt|-D&KZqV4o3g!j+|8?vVCa)mDn%?q?<6
ze!cp5$ZWjfR$h1r930@mAT_JdP5R9)P0HEklyU8#WH{v9Jt{j%Z~V6MTmSqbA?<Nk
z_h&`N<>`W<=&!=AVRn9$LsQ~$v8X^%Cba!@@SMARs&}C)UCiXm-~4o7--0!iCN0*8
zQ1M`Hhi=$pn9{FE6rKZaDFmsKQ1LLnuoJxb9F$(0nY|w}@O;5w27;M_$SsCLCexxm
zBR7np>vOozP@2m)abmrXrrG2?=IZo)9yT8C@$`ytPRoZ3p9Q8v+xG;`q0-#QW<Lw`
zsij3qn`CEX9}ZNb76ZznDr)E&oI1!~ST%C((<U>z3dxX4|BqCrv9O;xt9fy|pcJ1X
zc#JNtOVR(QiMTC%qIV%How7+-Rzy=s^W#6aCI%pGEm*^O6^ZsU!!23tRo;LVEqM0h
zwZwB5@fL&*Z{R(zCX!YS%hMFpckZ{}_8CIh{Q!kh`|p#vIE99U;@EhE<xmmHo1fWX
z^_bduSdvgXTZ}z8B=fRNkhM(q(V!*vlR043;x`H~jWP$xCF&@An6L$E;C(7x6J#sm
z=av;pktG~438WR#+}Z}u)c}T`7VCp-bD!7HGdFqV@?*VKTmQg3L5xI|QdZXiDAcYL
zPk=0-bTF<}ens13o9&iAlS*q`wZs&42UWrkjtDjcYe4)n3p>>W_MpTiQQ#Pz>f4#U
zGSXtofIw*(>^_4R#HpSz7rmvC)wZPF9qu2Oo?(^cgfsWlS}CD{Ef%OdUIcXvljN*a
zJ^81xErz2#jS}gHL+eT6{iZc^a1k$Ez^Yn^p!|Dwx=5QB{HX{DOgAva@-5xs-%y7W
z1?=w5L`8Q~)d9hQY_g7<E!NTzh5V%ok~*46@-HU6S*r7qdcS^xoPxIL;TzpaH6H^<
z`RA$1DNy-vtuQeYWYhqe&ny(j^EA}Y<P#n0vFx%U%yP-*8)8NSrnJN;sj7dk03^<R
z#4;W5M=CX}jirL1`WldtlWJswCZ9Md3R@B-s@{J~NwEd7=q6cf?OJ+~%E+Sc<Z@h+
zeCqEG9OZ-96C6}1mB*JRLB1KT$Fx&qLzzdXj)_AZ7Ar}VA-pTytxFaJD<_nOuzpd6
zJYW-Nr%efFAxQGGSKUM$0&+-Zaz<<M^5*8`G$jZwL6gSSH^b51JCOhjW0_*)A0`ZT
zuZV)BM82Qof;QG*Nv<FYA80ga@jB2?zm~ST1Qy}y6FEVYAux&Cw+4g{UmI#!8&c|m
z%A<l;$;qiaOc9&rHJpQ#P76T_P7MdJ^3MhB6<w;rl%dOV5shTN02BpNK0){UWx2I&
z<y|A|&z=oJnCmbxKam2WVkl9Y6K5)s#hpPm=j7@-S@D_6aw@0WR?|rL-wTvLc{_<S
z#yeVL`NM*Blg<8vLhRx4h#&m!2W;ohb$Q?9>(2|P<<!lk#^g$HP<MVyk*!p;p9H|a
zh!q<y+QMVwVFd`30UfR@i2{6!?!>egD*Rw$S{VXo5Z&BuAnL~nNJC(8Hzx`;CnhR`
z<dQA(ltBc;STs#FLX;ALalyudqhJUE5HpvDvX_VCN)ii)u?}^^@<>bu!J>iRSvQqS
zkE9@xe}TAM$nraZUc&Qdv`gNY;lFCNl)MXS@Xm(^AgGjF*jB#XR#xVx1Zl-g7AH<_
z4q=xE#Nn&BN*5bG1U?4{ECvc7DT2PxjdSCRhXZpuRW1m2nUyDNsFmPC-3Ql?)&Pu}
zC0V*;A0w;>_QIR|>2`&q&8_NYjy)qpgfWj^Zy)WpW#?A9%{hqWSEA6bL{a>NBHq8Q
z(15Tpq+*cNJIo!4J3>G!P#fJ#PH$n7D6p9LpTy~x{{++n@jU8E**#1#oWB6?CFzM;
z^Q=$4ye6X?7o^O|B`bjnVuA^VBQmIGAh|>H##gT%1;>>p1xrjX4LvhRSUt^mfus2G
zP5)1VU7<gEfT-w!k9N)=nC3(^%k9G9*L?85MX*Aak+>j54tqzToA$Ar#)CahfY41^
zxtt`Av>;bC2I6k1n2hXcZ;X0tjXOJMbK--}E%{MY7NluD!}dW08r;Rv_`3&JnZq=*
zl{1!y3XW^-<qF0J<&r69c)0#qnEST`!Qv7C7eD;3g6~cX*A{gV6$ss3W5wP6nNY77
zb``e;9mZ3r6H@$2G`n$KeV39y-|>{7>4mSahT{x^)KLw`2{id*T#!9HVp<LoDMX^_
zssLi9A)jVjIYkvO2+ISy4f<cw^M=5q9SH}8^AfeGg~K@v5)hy%lmf`&JY?TMZr#z|
zvp>2d{!FB^imWU&xI23?n}0dl`&RM~!H7PUD0E4&!4R$vn#rZ;HKY^AO~!;k6Y}cl
z8r;sJ2+7P`FfKCYzr^h$u5jF>1TWlRi+=^(@Ngk~1$}c2wQK7=^Z6`Otor@G(0sQi
z5z-~SeUAX;{8{VUXE6t75JC;^x9U@>vP;Gp!gO({?l^%wcp;P(&+8aW$$vQBeuqN#
zpMY}^KUkGk6ypC(E@coLz6@gizbZMu^O*W8)>=4>xkSN^42LLj8bst8RMT0Py0N1i
zAAy+Z?oK)g-e>EBY(I!@r2k_A$b%=P@TB=~iQ>jYm}VS-;WS7cS9av{-kDfgzK6uq
z)y*r8`ClvkyDXNXNhmI~=28R+r8!vsGvcWvM$2-pPJ4h%enOYPe`q*VzP4MSE^`jL
zJ&21F&=c3f3=nV%if_c(_rBoj*-8#LJudICNCV6f0k;#Xe{x-zto+&kC3qn>ii8K#
z3qJt@-hpE9=c{VeJfi=i`a}A^Q8h638kTjzsPUmdkQ2Wgo{jdKN-IVcjVu^Ch{6K`
zJ@IozZ=zjv2(-GuGia+25mIsmNRis_Oa3bW1bc}6Jy<QJQ9uoZIfuXt2PF{pC>O~4
ze=kdTEUo<y^dP+|P&=(6a}MRryOSZA>;l2fuq!mg%we+Md#n~iX$XPDY%8N5#wXH`
zhzqnx<dLKNPxg%k1yM}=i+Cw{niDCT69dNvRX2|wvKjt!G{JO73rND_nqe5}eh(=Q
zq(EaGQ~CYl>(pA=!7YgYDliCE4a^QUHW5TI(iPwf5I~9wHm36y@L(SppIE>7xg`>A
zV`fr^n_P<tNdsPsSaog#Jc@>QoQjey=&G6%<wkRyx~z_I#tcdac}MS8(2}$)8j(0A
z-+$a%3C;qnPI_Zb|9{zAaJ2YsK%wp=E$lB)=7^gO6zP>BWJ0!1%7!!1fIm?Gn`94A
zT<|}tg7jVZayZye9+F{Z5w-t=OxUdrz54(GKCXZKkOGM(LzA$(-uuh{h32~Q=sF-)
zcp111>9>y_&Qq}!R9bKp_Sp6Ia{n?c-Y+rr`j0YeUVhw@^PC*>#|!)kRDyIb)*<9G
zX*j+AI>3_R7mm#Twev`x<5ukk0XT$tPmcA)wd&%cLd{Kj!J_jc7|#DZol`!(*7(-}
zblKu!_`rWHt4H7j!Yqq|U?FSpf3a{l!u)?7{bDjhDN*>b+a*yT9WckJYcG>4N6iEK
z<*UYgMQVH@*9Z*3l#0NVH2>G7s1U-w(=FuR5B<27V1uT=_Ta0}i5GAxApH%-BXGB0
z%V#m9p#DDQ#8$<kaT}Pmax9jGQ*CYVpr!a7zw~K~^d@*RTJnbzUnsQlrrM6?`uD_1
zxo78Fo8^f0!lBi&eZOoT#O?b*o59|Pbm)UIn!-QPd%1dTd=n1=W2G#JIVM<=9|je$
zD_y$Kn>5Jxj`}+v5-`}>F$eEkq;tvzp3Q$u@a_0!YRirrlUxI~GO1MhSF>9eI>_6;
zE10}SOY7#o6mb`B(SGkY&;dO*AQN?%5H;f4`p0ngcKumZ$cheK4+(*6?PU8EIb^wp
zN2h#~xDNq7WgWA^fjc$zKjo6f@LCu}{j;i{(DoD}S^DQ;4i-m=ua^c8Vl_xUbS_2B
zx`<fTaC`UPCIFIzMqJ#ugAY^mVI%_g4Gk%HO7LkP_27RG${@~1{kS@Rz+{{&QRn}@
zL#XnY@`PHRc)9>6l%JU5ki?$OyrB9^e{TJiXtguTP7{m!=?vzt1^bW2xfvZ(9d*9M
z!lf^DR&&i?6v-z`&F;aHQZ%N@^ooN?y5Begkkfu8*FXV`QW@=oHOtp`UJoU+d+(*c
zsXI_j#X2slU32VR&3FwJN2&ac!<#HfUMz%Ggvw0#XrA_LS%5Epx8q@((kF?fqArJf
z{;>eOL?q@mBZ1*4*Z6WCgwI7jRT^64K&xKwpRaxz_O~<+CY9}w+=p~1lDGMLsBAp_
z2O&MpBgH=ehdK}L5S26Nj}4{w>r8koMDmUG5U+YZUYoyR-3t<F*3$;MAG)&PUToX;
zIGSm!yFrL#pNz(_C>+khcQsJP5n_28b4&;IEH@49<u}8tkHCxzh{p=8Q>@U`PY!GZ
zC3Dl3ef%pX7y7IJp^(&Y&gg8$tS`pZo>ZeBJ8&a7jV7f&x+<qh1;X<UCeiwT0EIw$
zzwUZ9)pZ0Fkn<wg%LZ7J@RWmUT5rO-r9S0$&A>sVBDk08@{#ItJ&|)I6@c@l0S6bU
z%TseX6Mf@>A_M1L8cX21-AmQ`Q?BK^-!L^t6`8YJqHPXzKSY@uv<H@Ajk=@%hANvS
zP*o<_v=GsM?WpM2<5<)Ek02wGfwF&zRT=tz$kt<@ZtR~(!kPt;1XY>jOLm~!kst7z
zx=2O@1CC&6vPuwaf}XvZ2!aX-f~rjLB|FjW$WQo1T_hudz6fGN;nHN4pvM~ZYMqH7
zsDL1-$^>7s72S?}g`Jl~84(OPizQZ-pvM{y`hM(xN3g8U(Fp}rWr8o+i)qo>zkW69
zTI)0pf{X|T)*qHwRf1qUbmec#K~O;sf~rjLCFjxY$a?67audOj_gG|=IhmFiU`__t
zpy!(=g5**>2VZa?-R>m|@|0^;<G1b2Q3F*?z=bSLR&x-R5%hS|L=aSvgP<zsAS@;X
z?l#<if!jFf+k)xpYp@%BZ!-lO^mzRn29wo-Pd`Li6{#PV`pg~E&(M-;(C*(!Rou-o
z{fCx&GM+!Pts8bv<Q!dOL^5DzmL_W#!=@%PKcnl;Q|5wK(IYDpNmrFgW|y{4dG@&2
zG?2M;)B0!^vUDT^l5j)1*FwQ-+acCy`>U3Jj^(_?Ki)~TL9)%+(ADju-OJLEj7UbD
zO^Q{^$wii}a@f;ND$hw!ZIBda6U|9-ICfZT`f{$9P((7~aDrF3!_DiX9<R799joP}
z_iKZsIGiX+a5{s1OKUo*V%H=N`u_jAsIrA9;vMlrON*6xi8`k5-X`AAeV>=;vij10
zru}Zd+Weni{&;+#_SY9iQ}9KDeXr*kJwJ>%=-a}HHwE)L0B&K2F_$)Xc^v?;27CX@
z-Pdn0lWHTs#XUvy8|=|=(32(|T(Umc)pv`kn%@zx6}(0sJEljKvHOtU-meYb;<ci@
z!AuQy-(?3EvJW~;PWes2Aiv!KL4Lb`Xn^zv6_ga90^F|Jz}>V5tV>t7=NW0cL>Jk5
zz8PS;gta6Zz9Tjc?vy9o9%|5vVj8_c1-M<cfxFGc(Y^A6T}9f#Mel>1gI-kC(Il_}
zg)KsMd#FJx`3X0u0Jp0)aJQK_x`TeuOI<J1=a{`XvE5{gs){>e^{7R_P5ttJsv1;)
z`xU1*U-2%rNqs|UNB7kac1!Fc%Lfy4))>skZn%x!$8He8U_vT&S2ygv<Azw}?4B={
zZ@>*JSi`8t4?DQFei$7$1q0j>(?~6Pc4NQvm?HKbaC^5laJPBJbS-`U{M)rK9o$}j
zuzO(^Rc$b#VD<(MM3mib1_!-=HEGIjPyy~&jOBb`{p&_2-E%Lv^&`z)l4WnzcX~{I
zQB`qAj3u;4xWO^%?(YeA$X9}DBfDjt?NN8v4-0kay8DdKK|hXgS!5Y*9VM<93<|;2
zW){q|+n3u2H!Se!r}-z`5DT)~RU5e5Y-JC&^3ds5+`A;par@X!9u>w&?ue~~76~_m
zvYn~adw81<EpFfjR~e~Hzz81nd-zj!gAuf?hKs5?m_%G9v`Dxil<m``-V^SKt9<|M
z_pe{SzkT`s<>UVWv!78H0SaCLIPYi*000U%lfY6Se{FA@Fc8PzPuh2|{GMk*0EJX7
zX|+nzH0|-VV@$AuF|(Z}*|hJzGZb1Wdl6Lv&NjZ^{m*w^-JC>=o|w{Hb_EVxA0yUL
zS@CXH;P2laoD?H%NLP_ocC5f>rt!`C{kzpss=aO)GYANsE^uQ^pL?FB4HHDWvS%Iq
zsihLcf524jJl!iss=-OLUg-OYCkXHGNXXSS3|ZHlvW=t%!8$WS6l;kA{kq}3o@jzz
zgA+vU54}UB=mD|iEjQ-@ijkoC<F1p6Y+K0t6vTw0lY%FNH=4o>>lcv(r%GyB8yCpl
zsQEJe%*#ANXVPW<S7CzKQ|yV`0=}Taw@C^Xe={q5fkkhGB{R$(m&y;kD)67uFUvGb
z11F5bg%c;YcTSo{z7v*dlq|!$`)srLi`T1)LxpWtNU^%Ww?TfNWY}A;h6eh<*-^h5
zBP08dtTrWUTi6^eG5Rf~_)3Yb-V)k+o_?||37hPq?c%MJdy9Jnbv^{vtYy^p6Cz-q
zf7pmDg8**AuR)6)gAi|4@_Ia}dKfzYvqD><St;9}yfO`3F^F2RnjBj5MIJvezH1Du
zF5rZ0i{;gM!!(871~G29uyLqt0SaFvI9yVwj3B4M9!F-Jy34@Nq9stYIopgw2tyCr
zNHN8ICXEaz$iM(QF>HEQ`Nq$_U}s-9e~A4A)Lw~zjYD{_6XL&my&?5~00030{{R30
z|Noqu-EQ1A5QSgG*axWfLsC>=8>qB>5W_W)tF(xXw0--M+{J3<%%LgmRf6bfmc!xj
zn<15_kMHmApXb-l*O#ZCfBp0D^ZC@D9zOnl{qd3h_RXIj{_WlC+qXaeJHLOtf4%?s
zd_Hx*4gU1<^p>^1XYunXoF3AHkMys<UR>WjJ^p%mdVITTmWyUce+bc_MJo~Y-7sp^
znW(}XZ=%QK!p)E2h#yIO8(i$rgKX;gG;~rl&ENqOg^7=C)MNXeemf-VU(a=VNlai5
zvz$%B80Uy%B%&BVbS5G<2K{q?f80cmDb#Y>opsGMmr;7@=Gq*$fR;tJWRvLH3^7`X
zC{7?c6Onc8CPLSe8!|I;)aGW?(n~kjrfFLb7uT{$aINop4@--vVt`pX6Oo%LxsehU
zJ!uC?X8Anh`pYIwkTA=MC<gHMOhi>jrh5`8y|g8}n4(KavPt6zMudoLe<Bf)>$fdU
zrA@SsjLo%`UfR-ThRt%xCXFKwmKG7k0LgwPqN*eFJxP*Y5=nyjpG_J^Ad^-ivN=LT
z-d7^hr|HKeX@?}gC1L_IxfG+u7jSrGDw`)v75w&#YJK&9^}KmaZM;ipPl&vw7)3Bf
zj0{zo?Te|ruk2s_A-HGtf401$sZSWWBSda3KZ(8yzL(A8%v3&X+n|mKDFfQua4+kC
zDdIkyA6uk!AX}Nt@{+0ixa}d@9fJNH38UCQLou@S1lfIu723*Vb{}J^;I{Rk-66Q&
z5go<*2moAqhVsb-hXTKr*#zc0rd`r}ipY+h;XHt9Whyf3#8&7lf0c1BiJoGg_o*G;
zNTg2@Ah#5wrhrEjQk7vLQ-xuRpk6}~>sN1ftRczuDMIbB^aRH#CCs)<(T>FyGv>xx
za3tKX?zH=sUeY}c)G(1yImrwZDdDks$v=kMU)7)7(cKWgd$FlLa5CLWF^Y@L<6@&K
zv)Gu**P6=QVM}kmf9@t#KR#inxD;dH#blt!RM9|@+p4UwL85*48q05Oh{xt|DMm3S
zGZyt!W!htIs{)ZhB7XM<klzyCAmWQr;|&%pRAoA1rt%_1^^uAs{Qi8Agr8>IoCiYq
zX~xcxsmMyBwkidFI>x#u`xW4E4K2l}DH9R!T!n2HQ+bi8e>yg@3`o<^$bN<Y8IL6f
zg6wHFD~z`DVC&3mdC{zDFYdzspztpa1TP(Zer(V0%nGADy@?4?c`<+58-o9KF*8W~
zN37hJ{MdMd5nQRt@`cz6qPW)H5c==%M$$iaSP%~!{w6pS{${BW)g)R9<xU>@aro!A
z#7QyM&BdsJe?NLdRVFx06-1e*y*UK`QTFw*!wNG$HcPC-5{9Y_{Fy3<I|A(mfq#36
zjr#N+>&yJuCJgp6RApmAZB?rOk-&e4Hxm94%iyILHGsj>aIV69p{nW%1Nb*CD<t%z
zxf2=*sAFfYD`@lIR}O{7yLg`8+7h}q*D9<PH`Ph`e`ymG?6sK650%Ps1fK6}g!5a%
z8?!xKiLFGH)2Z<;6z8|Z0I=9AMscG0%E`ufSNELX5+lIUrWiHFGd7!4Wo{~{O5EP)
zy^Y|reHJh(e2S%iDQ)s&a)E^PCX>n2K7E4+VEj7KodjaKyTa4e{G5ysk;r7SzSko>
z1Usi-f7jy)V}5M#AhNPd^h#B=PTT>;8Z)TyC61D=x1S6-gPFf0*U#=QFy*(l#KODz
zr5H7PpcyB<g05@;?htaaT8t03o?;BgH{clnRaN5*#A(D?k!HX$CGQ1x9pb4TRaM7#
zs3&xa9fP@rXWia_$j(NL7uE3*#O(N3Kp|!{e;W?%_Dq~<x3{VEeghzC#90Ao#EQbP
z{%yo^l&Y%pDAAG<tT8@?lo2~J$677?{$r)8+W5RAN^^W!z2&jEZMuFkL4XoRT!-Z+
zzqqbb@%54?X?*)?t^Af4CpJ;Vs3|neI2nCJ+o8uPxze6T#T9X;f1O8042PA2Kf)C+
zf4Q=M9u-$c+;@smb9saLLRHmylw4`gqvDFVF1*eoZ&FO45A`x$lBGRDMHYt{U5w!j
zIy}vzs%l0{vb4vi$l|ao@r)S`OLD5Jj!%-MJw8Pghn0h8tnk=!Q&n|*k|^!*DWW*D
z(=eil&sr`Otf%*Zm0K7OM9Dj1o6PyGe{Dx}=3_U0)@QzUqi1~;H0SHb+bLdiBC}cy
z5L<y_%$(j~2}V`5KnFm}*J#e_ZG7H*W5-}2zLB{Ey8Pr`^o2u6$!ak^T!_V(nLpeK
zsj51EfRx7kDU^tBp)Ol>pv?!OgsUov5&$LpN{9T`Hjfjw0>!9_AfCT+Ri%{*e}`I?
ztlq|FzL+Y;aD4bB(n?j;I3H?Nf&z;9LLxslO$dG!vQm{fzh)}mRjw2RG&GIXDzTHk
zctGwHYcS18X4WfhWoqm7P%9H8c+%mHS*V05Nml!9I00+Sj)Y12zW~_h1xge1CC=ma
zKOFuC0096000030|8$T+PQyS9ldn+-vr$}r2!HpUG0F%8004d#000dD004MwFLQKx
zY-MvUcx`OlSlw^iI1GP3;Qj|g@2)>;r%7OYSegbHumcWg54cywmJ?yJWXMYA>~R14
zQL>%5x3$ZcgKbZiXz53aq$rZnySiZ3Gm#Y)JVxG)i!8!Zkx{;i(O*vsdyK3~VV+?o
zIDd)JmQ?6n^80U5rM8Sbt_e{VK=3L?Yo*Gm<5cOI6u7z(CE@TV7qY+#rgG&}r6f43
z^rnJ2zUz*h0#l9}glUl;0#ac4X;a#%C`zp8k}|5c1`An5I{mQXLgFO@QEM;2sa1O;
z>07nzm>B9;d<vRMQHfmL0InnQoTlV!aepVy#KGwv36M`i@<PY;U!1*`Cn5!oB+pcv
z4<%79xT>sFY`BV10D@{2Oh0k)nJ@G&uyDI7iK;KwGiE^Xkds8IU_x37Ob41X6pjnh
zthmRFE+y5=a$HchZOFbR7;Crd3JSW{L`TcfNRvcMz3NK5=oNXvrBUx0UGYX6)qkdh
zTa-##Dx;UdPi&N2ftD#_JDZQSd4Z5ba5)r_d;t@y9Y1YLFfNCC+!)EM`_Af>#9Pk~
z58qG;Ml&tN>b~z%24UIKD9=buvKWm51Kg8UJI^6<y~5^B;|<SdbR9P1>#&(zhmDCB
z$JoYr0(kgR$PDgQ7uR$MYe-4NNPn)t;*ze``m02#?JtyqD4s+a#Vf%v(;=zb(GCDM
zC5%1lSM2Zn1$LcVd{Zn6^#ME--a{SCx*@n`J8bZpiN^1vHP}5^KLDAJ$F=Hw$KbWy
z9thY<<s+*v)o!<i%aU#N1E52DJA*y@nTcZsX%-|A#QPQ3Q=J(on(Ai)RDX-C&k~nU
zq&7JE&~<*+u^Lf^VBXUTSny!2{Fr)J3rW9#^|TqZ!=rP|($mcC59KdC!60)v+L6H>
z54a-X<&Qj+bp{aijN9C^&gd5lGkpW55cCMt3VTg;lw(341mZ3xUnKer<zlDYv*BX)
zrL}e$Z@(KX77ecbYroLL^M8B$sve!944XUsM9=m`Mb#<uxAWxxWu&iWTgSxOGt-9e
zgtHSRIV|eGk+K}DLtWorCXY824Ad;W!sta=v@38d-5H9}qv;CD47yBhm0~S7lqt%;
zQ4|4cR`1I!S67@$x9Lm)w&MfG&Pa|oOg-&>#%MqOgJg75z(dil`hSx?3uPc;v>$)e
z)u3l;bf{H6R?v!queFghM*lp_?k4kxg>R4D+1L(lNoY^P+1w6;``LWHn7F=s|8K8Z
zct)$x^fn<a^@3@|prI(+!?wad?rEUS{iG4!G)6$|zU&i!<h~C**IwMZo*j(v*dC8=
zLwgZ={(Kb79>PV~lP5hqv8Cubp4T)dweaCo(Sk6_J6m-Y>Qli;Fn!|?PG<>c-#AYG
z1C#OA6a*TX0}QhoX%RhtBua9|@*>I}Ac7$@SM``uGhAeAf&}vz$qVGc=1FqSsrt5C
zU$;eBv7G>3r0%}=e)n6ePMtcX4wjmk!Us)hKAd1k14FTf8)kl4o*uz9Wp<*d(E`I_
zyNAv9Cl}-{ji)u7s@1tR7@il?AL&!uW!hbS$<UlmfAErmMs4hWkBR-t2gK|=Qm3qx
z18shEDbe;SVr1F)43Aw+;f&%$IzEMYY0X|8{TV)Hvf=WSE3d_~ST~%g*Z}SeY#-;(
z3*+Y4+Tm04-Oco>AMtE;b@h9cS<WER^(W3FPMpU+alVjm;xi|;L`xKf$kTYhn6{4O
z{>Q@$&hXLU^a@UYF&d4e_ulS&?QNuV)LZW&FZ;oiU$lo5@NBy)%u;WG;0RH%A<T2a
z!wdZJX7UqJbf-r95zH$cE%Wxcs(rm!#g|Zac#?`vEm(l1FqP8_FAylNQ$#q{?%mby
z;{mK0gJ`}|EHK>%u%X+UDY^!ui`F7<Ize&!Mx~yobES!YaO#k{h!`*jV70I)2llb%
z_NwiGW?61f7Hy)ljwmUtEYk&;9iU>*IZ<urSeAFKBQ93yBGI2!kHZuQGdmgA*9cu_
zmN$SpAjYb>B_FaI3UKHlVW-ZZNo`6o;YAyA5BJ}};LFPV0$2m02*;zHed<J*-+Yto
z1L&o9=POcwh5+CVYTPTuxG1LKelNU&vAgu<jd93VM-KsEpA#%HI;zIl${m7DkOE6d
z<0EGUI>u^j1AUsptmam?SxaSv%CBS{5SWES?>r5E>GokT^BW)Bu{41`0vQ|<I7RAu
z{auSsGWVZPaS}WCd(C)8sc12J#gdfAQVI}AjLI2*x)lW~9Tc!Vavu>WdC4#hcj9~p
zdc~al7G1KQpB(6jcZLgojsiKj4)YS|Jn;}R0U?_QJ=b0=q1sG(fs(Ib7vsVO+Xy_K
z6hEoagk>b61BpR={eTWM9DA$viKZo48`M$+xKJt?^73V5tMio=fA-q2nvq(__AKs|
ze8tj#=@{4etcA8rFDmln2#VZ`#XZmcCqws#h+&e<!Q7yNH%f7zz3@OsA_DpT=!T}M
zxx!!Jv^kudv7`W}5Di^}hp+Z8K+hqf!AR2RF>`52sb_{J*QJ~l!laBJ9f?=M1`1NH
zFqQ+5$50C+iQ0p|VWlkC&&}GhOz+Mn_xa&}k*#Wbf7{55_)x~dSdmQlHsMl5`~*3k
z!6+57<GLA@67{%R2Nn;cJLOsALg~1kl)G6_T(BRoR`jZJ)96)*kZj$(W*MSdp4gGq
z9mcMR_gWo&ON#y_IDwXC41O$e0ZlNSdgxC)&nfu%h|Beb2tQhVq{}IePb@a>dde(+
zRe`pu8&m`44Mq=4Tef)N1nr@CVyqqx*W!KDon?0Ir7tCp4g*^buPZbke8$QU7a*t%
z(0cuHa$F~gR3x#nv|;e*99u)*M9f=zyoHp(QNTpTKL<=pt`dbY4fHepAoi43<vI$z
zQN37VzJ_<>YRywYo8`Hpbj&MEMhCrrLj0<@g|0zWD^sz*P+f)2vOAb5J<F;9P7eQy
zJQxg2W&+|xv9sZkB!eXz-W&}RkHXwH{u;Vp^F?Q<%T+*5>i$<xwpj)J9%`lm55qFp
zpP}R;wo$p(`9TcJVOMOg=Bu91uKt72lO)V0r)tR84(%lflV+2)6xLxk`fx6PNMJ=v
zG3$qCBB@w>fLg6k7sI_3`4}izbl2<ZYMcfL8_;ospdqz<!KC=Kl8Aud3bG~@4jLfv
zi<Z)Ott;K3`Icqh7R@6~O}ua7jt)2f!PK?ALx)oxcB3GR#%M2}2H4rWrg#g0px?B4
zrqPVu_67V~%NfRzNq&~!bhN&Iy1s5j>KQg;5un61D6B^sa2ln-i#cLy>G-P3o-J6A
zAPI>p4krB9l|e6=MxfA2rZTkaSZn(jQxTcvfP*^Y^!eUbH$UIKhkti>*SE);cRoQ`
zWfhNJ>!Dd+Cb8~-g3Y<n@OL2Qroy{EJSk6tVMorr$rMrMRLn)xmlA=0$M@ojmO?##
zKKT1z{A_jQOf=xul0zPXNS&(F((_4aOiFKwu$m$ghIGsAu^0;ApFrU5aB?tuYQ_QL
z`(%4SDwYtfJ7~ii0EUk%h?Z~^EI&R9Rz1$fW5DMIyQ)4l35d$-)Eo}m#L&YuPmS2C
zgWm+KxwG<su!kT_t$KZbvwbKUk$;rLx{w~{R7xJct8ja(n(U@D1-KVXYepSWSzb{%
z3L#mIR4Yj5uWcW52a72Q*PFIooUE*>uJ4r%f5O3DE4q{+w+Wm0H?<3E2g>=(O=X>$
zN5zNZDbC>lDH>lHE{U0<y$syG?CVV`AF(#QhxfC4p|YBw_bh&YIDr_XVwZJ!>oRR~
z&M^&F&;?B>1{;bSsix$DO~SylJd09+iYoHz4f2Bb$#-ClHJpNqpqgx=uW^O>m4d0E
zx0G|#wZPGcxtjo7V6yC}`e;YLrVx||n91RW%MNO;aR<b?wSAfo;NUbY%u+u%*x5y`
zkxOrDb$#^?2nDNuCt%mx9L2eeNCOXFV$-yUu_fW}l~Lbz68IyzuBjN}O19@J^h>aC
z6obxYVRPb`5Q=--(+k&(&SrbOiFG8pkV%K9vl-JHFrFozjf(I;O_+z06G{Xnu|*N=
zPm}=eh(7_TVAKVk<ALgvT0(+0F}l|&K|yKj7KY!ST@ko{s67sD7sgr@8jD>61|H2C
zI#`yVba-@hCR(4L0y22csF3B)FeOc5k|?kQ{u_BuS#s0N#01u)n(hoAU~QecRJZfx
z%-*Zt`+ECHmo-g*aj+2-CWck6*2$kNT8e^McMUi&Sr#5Pn^8CVw@tcQ6pIl%P+Lk#
z7r5R#^?*x%NnX|uSNwx#6i<gl^0Qf*dYlefI=OICHl<galN00Ko|?wL1Yfn<BZd5@
zs?PjNImZTywB@~Zebwsg^+ONB1EcQ*k+M)0A@+}P5HoA{UAy9XP42-&4+v@Wpp)S=
z^*IPY81=@nX|S`g0DV>03(Pk}=5t^rLvi2`wa%G;w|ekGyugo~Ds4sLX*2-g`r&%7
z(&ff>SC*@r8P^E>cb5OwDwC6Hgt1aW-QUtJ#bwK^ID*WgA72U3`^Vq^E0x)CfYz}D
zJD9`4VbuXvM=3Me3^p!D(_2D+QZ#FD9oK8o<-A@Gb;(4X9>UfFBKMUF&DQx*EJ|Rk
zVK+m6w8TWB%ht$`q)#!X&U3U|y=K0TFz&Hu?wRZYmQmN%s#r>P6kyuv2sh|S_RnjM
zZ&Ha&xzaLAFQje9bA+^l;ejSOXY_@emZu$`_t}EC>E`;eyL-fXwU4?!qV#2<J?!+?
z+c*Ih4Yy8yP#tz*^HgY5#j&bkEs~LG>pZ@HI+qhrZJsJGL8coGGPAq*Zih1*&b0Q4
z%aG_p9OS9zOM+*P;aG+aDO_9oa1ScTM)1PN%uqoS?HlNul60isKLN|a3WC!&NH$QK
zkx%db<d%)qNLNxF%|c*vCdqE(3nCk|vo*z!&W!g#hXVy%S*C-J#;r7$7+6o~ope)w
zxF;DZnT=R<H_ln)+IrSuE%{&_Qgp;~Nzrt8J7)aJAOA3=g=msWmXun#K9_IK$UKMs
z>1!bGY1i>hR!5gH>tS8$)j!4Ua6eZ()*B6jE_?<i9P$xT_nl6U;VZp?w}d3zSBJcX
z+9b}G&?o%<hocv>Q$cBNW;OSPy?7vh`Fl<UoL-cY^Y{(u@oxwXE+}-mU>)_410A2e
zb>vfymTHe7Uj^nYWQQ>}$x`kccmpuxaf)#U${L=SS?L%~FL;GU*jsX=rqYtlkUD`c
zg{f#^vWPPavJgK}-jPi(7Ip?<iP@okit={77bLuj)ofX4#+}v~p@6Tl1{h3#P!{+L
z;DaX!*_m0yn_*K#!|YJ83up^p>l7JxvpTu0rMcg2_8eQmcbs3@Rv7oJaOUWrAK}QI
zZ~V*|k3>nUZ3w~O6!sy-N$$GE`B;Y-1sOBZ)jNQjlNla>6(!|G@H(e(<Jiq7EY}f(
zQl0#%MW<2ENZ+BQg~nl@%&7x^;gmI9_ms<^E9kEcQ^ALJ3j0c2%v9u^KX7`B(psY_
zVP_5jtm?S>InxpRQ&hi1N`^GoX={@cWs`AAKe5BS|C)g}*KtBPOuB(b(L{GaE2ZB!
z%Hmc9VtIbKaag&H62D7vnw(<EFBba~k0z%b0SxYMi2daN7E{f!n<^@QJumx*Kp-{y
zt7JYWrONYpm8nU?p_16p=_%+;o^r+VRCY4ZgvI$Y0ws-mA`f-2EP+s*;9RFEkFXM)
z=@cHvoyiaZD-*aC=<qC<f{-TWmqF+(lBi69xaGhM1{^!XL%JBJbt0dIZ~~1bk<05O
z!{xQrZP*SEs9e{*1zYleSCpn_b1trMRB<k|M?Jkkhav2We2n3(SGVuro(&Y)TzY^M
zQ6&oDKFWAiV%)G<Y}fpI+@tBqu+x3AJZ5KF9enim$DL9EHea59Ge%|iSm3#Q8;Ue9
z(4KANNqoBcNjaP=*`#Aut2qO;H=SL1QjTfR451cNP{7&DT@IFiDHfEKlnjoJ?MoRN
zYkV}e%Kdvo|8g$>Z>cO<ogfHo9ZumHiVG&CCMN1yXH>;F+>U~WfjGX=JNRmKn0FwU
zQwF$GBASYoW*JChQby#QadgDrHrvYZDfzF}wuO=xbdhKn@q3rz=lH8o%a8E+lU8@f
zmMBf`l=oh`=QZ4a7f(AZS@O<^$<?A3SilM4xj<SsHiZMU(5%fxErIr9SUaq9wKK1h
z*i!Rt+R{tk!m=ZP%8-*BxYU?|n2@iSw>c58!q+=hu`$9}V+f{p%AIle^Oq?u;3x&)
z3s4vlIuPmAbK|@@v>Nl-J6P~$&C-AYPNG9rHm2nZ`x<6{ZIH<otByJJ-px(LJ**MJ
zRgFAuMvejRjd87m2)p>gL0pf6nBcZv?^NFnIwxcJrFR-U)+1y%^l2OFJad?v@dV5Q
zq|{)6h+@*b252tA?K7*xW8v8NfFtdzb17P5<z#yi)x3DtH{#naJr#AukfUOua0mxd
z0A7Alq>vPUjpuLxMt4mLS72ymREE1h4Fu#~mTJ-q$7eIPI7zap$-&fYzHJv75|T(l
z%hjE$>I1E;e4QedJQBturQDPJrqefab2CG&%a+ZkgfDAwWg~&JjL%kQd<;rW<5Ta)
zZKJVw$QrRTFCS+1((VwZ(i>+l;7ik7sI25q^(M7{=SVbpWp=!R5nO?<z*$QDB0^cr
zledNEiX+|^s3+rhAU<G=60t-Eo0LMHDwOFimL1*PCic!=k~ow2!Durumwvg?x3cx#
zZNB$l@Uc<v$>96F+QqkjUv}~P=%$VL?>@YbUV68=bf@Dy{7yS*v3vBZyIAj|m&WgZ
zDsgsy{$fY;<9C=$@b`x&_3yNc{vYm1{|ggo@!|A;a=C54e=7j+%Wt*d=0HD!BU$ec
zh$VC@;JQECySp>qnB3ft0=jqaKKyv?*4)qOU3Q91F3ELZmKQuk^9WvC!LRo81O+MO
z<1vaLRM8-yVOhAA7u2ZGkzo%Zw!>&jdz0B0G}01K3!(ai(f#(5Zr#VhJp!+^`u^vW
zptd(Rt&Wyah)?+%Q>sWYcEQF94}i`zLSA}r32&RKED;c&AOiS^H6`IDX0-6~7e|xV
zZ{RUsUA|zG4!0M7bnot-5*1WDr({*7ibNvZy{|5=rsYPrY-yQf8@<?NeSMcBz=ozF
zB;I-s;7cig2F56f@#Gwnt;!5}A1iQ)0t)rR8PXt!&Vw8f!tz+6myvY*DCsJ!P^1!6
z3uF0}(6q2YC3-O_47v*_j{xo{#T*z(;uCXL+>Ze9I=t&($EZxE#0=x@3rM9>3;w`5
zyriL~2e^Wjm&SfM1qREqG@uG5SujI?EThyB*lTp(r=xqPh$0{v4!7lkHYLR~#F|KK
z^QL?<IzjaH%=bvjGZ61ikok2+%M)yXD1)^(lLWXTJn#zmfC<)iz^Lz_*|nj-I(|Y?
zmZBz$`HICTiNhdg&dbK{c-_{!J#PISTUjo9%XfSB=wB?qVPoU@UXx<DDt{qwx&a`Y
zqql=zrPg;!7}l|bn~(&STpVMe0k*4uX*gT{?P&SCdyq#V8G~eNycos0+V@nj6xmv=
zX5o=aZV8qCCKwA9o#PndlFX*%i}DCquJi+qJmdmA0|n2fAYBdF4sM8fof#GfZ#v=Q
zGU&IS4?6?tR|tt-zKLOUFn^9TK6P+V!5+VYqu8Q?i1Y&`Ryi)oyNJKRv|;E89uaYO
z`IU5oO#A@Sj#P=neZsyYqLwN?Iv*<0wGb3wn&&XnLMJpb$l1NfM$j86AuMN%ahw^6
zwVYN_dMz0mnd7MsM6_Ze08Iwg4_90mNF+#ZC&JAm@0kr!Yn7h_8h<l3rqFG`;V}WK
z$W}f+kiUF{L^HPlJW5C<V7v(BW)Quy%+!~dZp_<L?!$yR;!0VlilkwW$8W^g_m(4L
z>L!(Mk(_IxkgGE!21E0MhrsN|SN4~tH>+axN#0rFaEwEzcuDEtOQfqpDYAnz!@9&|
zcX?81p+&O7msu<ZBY!`riHJ6nHNv+{8L-Sp5Qdx*A^g0Idx%CO{#asLiosf1r9td<
zIS$u+%ynMdX=VwAJdPM8r2wWPQ^cvkRKOCVG=0g_VDqwUsM4Y_M==!eL%_NvUlLco
z09E09h3i~7K{<2VWdytNm9zui4okT#^E=_Yr3Vy-Hl=J7%zwQ9&3Ns5xF-)Dk2m=L
zug9DG-`?KZmj3!=ZTtIX7sOnIy}Oe1B4pZBi_p`tJxE*SWspocTn<q1;PaA-t<H{r
z{QW=iPm`jPH{E4)k`4}dk)UuuXp9?{Dd&6y7Bl{-61l5dF6O;_O996{k!&nnq0JJs
zK&<j7lr--}Nq<r=Z-<`TG0rzV+SJ0{-YFy4(}C)Vgl4}&aoi&_$6SA!H=}o8Nsw0M
zz_(p(MJFcFqkuNIx~nsgn8B@_e{_=Z!o#)Ryfe)en~rKifV<}`VogY7i0)(E@YLfz
z+9VX^M`G%;u@a^ev+IO%W!!M|G3LpEn*r^<Vx&d9NPlsAEN#aW_O#U|ULqAP_?l|Q
z0c>=J{ERn|vhYM=1=kyHhY|Ul35Q9ZIw!tF+M3&L%Nim1{f*N|Mk)!n^+=DFF`@4s
zF-$r;U%5}U^;ZoI2F=DP*SnHrO7LZ%*~FrJmVl58YnaWHsNRc?@XfU_BR~K0yWPE~
zePa&b#DC^E?gq(2cHX7SH`g^zECz@LBewvn4ktVJ-(>M6twfK^9lV%LF%sncA?}_$
z4G!X>IeI^-cv~&#=BJE{UQDQFkK@<aUDP;WBAV~PRN}zFCZo!nsSC&{D}HU%6+V8L
zs`iv>lB{CHe0J=DH%8j@urY&-Av-L|mw8||D}VcG^|fb$@A~eOWpTgcX8MWD{f--I
zv*F>eChHI7m!<elacSEFc~;~*S>BWJ;f+CCLc<h3IelaMAC?2&%S4>*<&a?pnQ=)M
z=S)M+GTvS~G0w<U7n=Myj2_hnGHx%bbtN|LkmCIbx{ez-d!L66s!jR-kp%gAM#I?>
zrGIqp(Mmiyg}?#@Jh>&yQc4oNyoV0@yeT!8rUFB`N0tq;fuC@SbMs_HjesHZ68fMk
zRJ#P(?{oSf(2WNFusZdc5gzu8wQDe2?YL+vcD)*r49%7B?Ecyq>^&Ty`0v^#=Ft~x
z+c!oU=>;ds=6YC-589&Eo$5kHX>G<)8h^E<xk&EM%lcAm#W^q7z-{LYYfzFKqvb>Z
ztjnz_M~Ja~Py?k5hyTjQp}4dW5zVypT%UHq`W|j4M8^nzxz9q}po3?-8WTf1sHKvR
zmhS=~fkGiB#Oi2$Z4H5(1uo#N=df6^JA1qN+nwfb@et3~VLPqvf~~UtTO6wLynoHO
zsqQdG1LyJ^EIfc<v%{+cqDw~0009C^R~AY1dXwXa1JyS3Pq<D&3&kcu%&e&0RAm=#
zjJ`ZNK^<k&QKaC%{b?7L`b+!c9u68~8XNHj2Ep=QkQTwt-RO1h!_(>d+V?y(Hllf1
zzKk#btbDl@O{PP5UDy-`M^wLPCVyE^Eh_NINFZ@F+3I}EbGRAWL@3#<ys4D-VUk>{
zqdmAq04HXYM(2)H%lA)_RLfdf^kvmbmRETM4-m(l86mJ~-PLHWt3_riYse0FV=BRy
zGQO^q77ac$L#|*4%8sx)1V&e8nXY19K|!N?M`yqDo~5=G-oEam2`SG)oPTKslErLr
ztjUa-)LES)<B++$MLA1n?g_~fLy~#wAZ41=y_h+yMY+714-s>yzU+80WhO;8=B*|N
z`jqJgMX|s$ksRj*2mB0vM2ZM`4rNh#HkUS0js_V3Fb<F(fL;}AvUH!yBa3m4N!TG4
z&6(7m+=UE8%;F0q5MvArUw_oW*uf4yXu1@R_GhTfgm8x?pJfuKI8<((h%&}B>#(K1
zZKuNAI9_o+HH#WHJ&2jgPN#q=IeO`=Z(oLtF1)g1-0$8J0{A8MB@NZ(1oi0f1dzCi
zl@A&yhob$3^4d(#>pCgbbNkEXNa}2ndO;FMQPn%hOIlniWgc5@Jb%)R52$58=<ou<
z&)CD?0M>O?s3xBcdqtM~)m!w%TmwAU2&OdVagKv5J{CGhX<n~e(KRV6eJgq))t8-<
zw%m5nQM470BA~m57F-TpqQ_UKms6eswcUc#1#_41YU`%c9#y6_Aq<2vbSkO%7=SSx
z?Na)eH<A?4>Mt#a)qf*l5O)UNBZ6X_^Ya>|YwGEPZLLxT$sA8J;8O-`lLR=y*+tN)
zy35-?pR=QRU0?ac<)k=f>79)UxI70Rx{<;0wvQ9ZRb?hFS*Roxr=WR@erK?a+xZMz
znsSxs0$O4$(NTfwWM&JmH3W8c{sWI+j?gc7Sv-_EIag<VYJa6@kxq-m+MPkRjFlb|
ztDlua5dFlt%uEBf>#o<1rbm7AZU@4)3zyE@XYAa(a3m6$Y93}^Ht$7w#Ww?C8v+?7
z&qD8#f+gx!06z#x=#NPVtZ5HsMXDTtBk=8C%v63cUarz+O5iyS!y}#+9um+@(}lVR
zo^>;vjB-aXBY$~?zx~VDn%%Ya;U2KNwi!R#iXYvIAKi{0-H9J<hmXc<@uP8oYf8;H
z5;>r)t~zV*WpkZ|5U7kli4Te$Fy4s2ihVK;eNu_Fk_9kYe(RbKq2Y@PLhO!X*N;Qj
zSB+tQ?`ZjFwBSP%cE@q-#$oJsf}rsn4ddOlILParkAK3r@2-ats@~0}LehqfFR>oS
zay^VC5fhY-0=J!6pI5K6s4`0;OosJ1^1Ju;_Ex@Gd31N>&f3b_<~?|bYhYuImiLsF
zXjmbA+r7y#Y9M#o8OL-zj%n{Pcl4N4(WA~d+{L*ol}5&RJCBUxyWSb!8OnWxwb*OO
z_VatAWq(XuN<)qwBWdeIR@~@knz0cl!A6_}8*vgm{%-G~LiNb~8ZCe2NiYa}#8=%2
zv*1~|dW@@|9!*}Zd<7_hY^culartk=Nl<RNsav`f4*XSSh<8R{BMf@gtS#K*L79tB
zs*rA{fpM;s*4)9JcCHZnlpU~lbw=_^=N@rm-hYf^vl%z$y{C^pMwIONH-PRi<(s6*
z{?yxyo9<>DqH<s49WAG{LM+h~cs-c`7>zHo8Aod~j#jxl(r&R(lbnnxS*hX%zz|I0
z&I97OmAfG&lFOjvqeGvJ_7{A=DPg=`gX6)u85ief9G|T)KF^-+jJGfpTVStX)KQoG
z3V(_%$cv6|u@y%$T}){KyaaT~N$%jLXbg?cP2#%ro7^IkZnVraOR3oc^*-%fABVlv
z%OPo0eMuxAR#$qtTXwvDL*a5s!G!zfU)tIC9b+%?M{N~a&Ri9G<&*O2K~gp*ha{6B
zhSJ$vw&HBtinA?sioH^`n8Cv->BIBi!+*{>YV3r)INh2O7$^vxgmB|Ld)C{vH@It8
zTp+%DlXKpFJKrkXCNpxLnNjK)>HaBrd<%V>xFzw$$_}=H-*F;UXLGY3);KqJyTNa3
z13f+_A>=^1N6UsT#~;<uF7BTo9KOxZNaWVP9`@b`VfKFz*3$=JnSKzqpAW)>`+p$J
z%4c_vPRHwluJN9&Mj721;NwsU#SCBgN@Lp^dO9Nu)|V=^4CV$}z+C!fv4JLz>1NT7
zN7yzI0gQLeTP@&}!B$(OKkD6ryztTT7ZV6nFKD9)QRDFg>FMfDw{15GzX*$>oCa%l
zBECAFnj7{IM^<%5pfk3`nbl-j!+(hQ@F(RaNJRBjSds-S`C7KtoMUh+Op_%b=M-`V
z*#o4mI~!{&<L&J`RNp-%5)OUSnm3l@Gff}Q%Bd+i04N>(RAtti>Jgw#@Q4XszA`{X
zG_P>C&YccPdoV6}=88i<9Spa`Lle>tJaZqM5J12AvGT#IJ8}+#v!e3uz<*eO%!o=W
zJNXIx6U&{ZY0~qE<B61xMVZ?5<(=~^8e(M}k^RqcBvHW92g3CY**`Iz8|B+~r~OCz
zy{U$|cw!QP@R~f1=hgUH39>1klj;mLS|f}s6Odwv`$VP8!0~btO2dV<s9%<zaOz)q
z1mJ6y>>#?dOr)(g%Vx)3hJPdk3K1NVN-d96uMv%Ct>OdFr!@2|;D-KCg?CD^->f3E
zI{Gp*@n%<)Mb`YuF|SJfWBHf$s24j-aH(_{*>)_d-qVa(=N+j?7jQ>~MHRv7<m03h
zfWAe=@$F3Gq50VlMY7_-KYt9hqvzk;v4dgvCr~7;czS+7^fju>Y<~k(LCkR3;*-ei
zjp`}IK)h`RV*6bqw9>vmuB=i#%y6yy2j3S1V7u<T_-;#Hd1;_(!g7Wf9ta*nRbFe1
zzq9&=O(lyQy0NUBDlaPt37UROT}nt>IdTy&U8t#OWipZwVO0Z>vjqEna-@(D21ked
z|F2oLFxR+D6g&Plp?{zFnFu6K^KebX>A3=_#851h%6g4*9i;L?HmIS}R|tR&v!bwH
zfRsp1L#|7ys`6^3u4`gBSPoSTP^%k#sfMTm48LcD5BwK2(zWZ)S$=*BWj{nGCE)?g
zT3Q*-ManUYt4oZ4MAVG47hhJH5sZiUn~Kh#NPXD1jCWL0VUuph2`z9|b&1EYGl^$j
zj~F1$k*bD+@vV7%QfNHj<R)=A6-Ok`$nvd{D4od{?q4C3q{l}AVw3F0Lpn~0&btU^
zNS18Tk17<29#;L++L}d*Nd6K4LA}WVKB&K1;PshtZMBc;n^QU)e5KUfhD3E^c)z6`
zlWE8(e`Ay(huh}3_lBsk)e*&ojhFn8WahOztkH5H|JPnIP_*U1c*74C41%3lNo>c)
z(v8;J!sOboio^|oHPjkajIL^Hi7c;U8dTRVXo4O8u#|A@9AdWsG}F!~de`*JbFs(h
zi!Jb^Z8{~vCv}%(7MWWN)hI$VCd=*~Y%<wxlMu-xe}bv}*&aDM!{PXXeE_!^nrUW~
z|J2D_+I@*yE0P=9ea$Dt64PI+9wpzN`}yZinrR<K?ZMCPnUO#Jn{`zY3}a;Y-#%nr
zT!4Nb-WYv&@dij8Vi5=Wi)*Rr&n`1(KZ7Re2~cYM?B5ZOnZ0EG#RGdV9>{;b#(!`^
zT<+j(e`l4S(?2a;T#>8{-u2n#(#_BQ>Edtp@p#O?9e}G#LM=iOe_GNf=MR_|peyeI
z^4LG0@^{CmYK~o8AFt~+Ae+Dp&<98lnw|5*n|l7`XCH?){TfeQU;o~9J6Z|B#lx^f
zzWLG()J%GD4wH<3O0^L6=cMy@coR4=3md>JD){M=UuA~n8~>XKv;1@A725q2G2<T-
z0fT?Wy4jzcE>%PMae0NpgnLSpTgoVZz{d?&5Zf~R?EdTkQmwB7Sq96*ChPEm3Yr{#
z^-x_h{FJI%DP7<(>}Jp+MUf&{6p}M*;B&NFQf0zT^U8{kGhxNy=Ro9+MV3YW(}Jy-
zP;}Vq?m3k|oDlPF^l-cuppw0`OT-pyf?eb0ky4OgiiIyXrsEi1j{7*`Ls>0vebA1+
zU7`6E4(%mlsz*da)^Vve%uQ=TaeAZJdx96jNM2mae2PI$tt`py;0d{s7m!RQ2bPPP
z3HQbzG2vm9^C5VF<Wnh?XFBx_TxR5We8pXznu6y5P|WQBs|2nAvY`BW82M<f?fwuf
zo?cj!amyEfvx6V5&fsNII?*Xv_4U0(zZ4#L2z8O+%xEyFB~k5{Fz_X!u>CxYvWL!N
zCT2Dd9*#FcSdL`63fsj)8t`{Me2trJ$7UC7u(=bAjkx3r$MdyDsD3o8zD19Yf!*pQ
zV~97wGo#v-Xc~xc<HF~~Fk$MZhoI7jg<X9a0~ytSm-EBAxb6HXExw$O)8fl8%60FA
zQ3K29V0x~IaTrk7!W{;!o4$h)-WgnQ-shwJ&GiTmgzKN8@*{bFtQ^21eD&ObkaYO{
z{P1^kDMIDpQpCD@)^c+l%<A5CS#*6EBX2H7M1A4KCF)aO#^_MEY~YwRzwfQFI^mDG
zA(gX#NceH?F^HY)mqBd9iPW&SJakq!M-jHroF$|&@=$PaYD#9JlKNSEOlM0e<qGRJ
zRSD(kRM#9Vg$RYK0A$C32wWe*8)moyS%NJ-@tkZ4fQ!y+N>a)&L*6Xlw{%`0#TO?J
z<2eogn$=kj;F5UCmjBuTqyr?#3G{K;%%2K>d`m!#WbzHb>Xl9W;~(5W6j1oh=i9I|
zl|^FV6l77tm=j#dch}8?I2bS4RI!;AjarSW_+5v#?5V&H0gSygO>Koh^Z;N=j2SRQ
zX9ZtV$qpKMI`g|#9!qO+0EbJe8j#xf{nwp4{cEZPiBx*1KVXb6Q1W;J0SGT7zz~an
zNXEHjXet-p$t=rY|9Gv#WKZ8d9C!E+<;z<Oc$2&@s9au__^`&4EKabe>go>8R41+2
zF5Oe=qu}jFe}iKlJqH%PQu;42yIgN}t~=or3arTlJ#;q+{}z1|PN#XKkaEjg1fk-d
z2B@1M7kKI-n!$upU?5TPIK1~k{=#d2{28Qi6oWkpK2B*?$COGM%cUWTuf+4--W=~1
z&d(jFLxB!Y=s0)K?XDwHTGFwO>QGxF)Dzoctd57{TY(}~1$IV_3=W!>vn7FzcFr8v
zO{so&E83ApA*pT#V#$K`Maw8RJ=#V2t7sKH{9^AeQWJ*<M^$lMOMJq*ez5m{vE!+f
z0pn60hN|nSmwMEeKdTLoPH9mZ$fDNL_fVFt-!y}@Da~MX7e;-RkYllW9vg}n>_aTz
z>H?dS)JNd)z-mGjZ0@3Q7fPO{rFDn{9!+-Bc6eJ?Ia~g^=R8-Ihh7aioIyMND7fdl
zYvWkNBU5j<z1>rwgD%z0(YJ+v&u}W{P2OT}8**9wpr(z8TipNdmc>OMFxe9bnqag{
zt-w8k2&3R=DgF&->Aaxt0&u{#=|Rg1nU3TvCvvuEs;E3oNrnbJ-eknOzUy$BBatC?
z`+{~FT%Fv+rY$VPVk}lxvlfB1iT^UBk}r(y*tk|ZY?S@*XkVEjm>o}l437Ipo>GM9
z2mHMfluvPRCD7IrC<V{+7XyjI$O){3#hT!GyN8B`BAsNxdf+<-Q4O}Uyn?l~HN^Rg
z1@+}@5>`B9@?V=6Kc!OVJb55EN=9Xt2-Q6CjzB7W?+(G0Et8+bf$qx|ZUOmk@l~68
zD`f%2xp(_obI(IsUL3Z6U5}!ivDm>prc$93ay?XK5!%tSxJ^0!wE-;{I%C+Sg0-~)
zXbjluPNAm@aoC?4a#MDyLh3g?Q6(;|1>1(F(v))XalUT_yCsv6HR*^JFjhgLTEqRV
zgM_kYn{Pj@ILYfqL8+`Ehqz*E#+}ostSx6pgEeQsFGnYbJhyItbB!dTs8-OZOCi2Z
z3bE-YD40JyWIU`2?``g6`Wd)+(2NSl<L*}pPO<V9^%m=ey20L>^P4)Ae)y24P|M&2
zgO!!=7SbO`Jt#yrx)2?j;YJvkd8ci`69L??9fs_9azaIVvM6x+zUhL^=ZrZM`}O!}
z3Gp&lrDOzOXEmsQx^KQ1vB!u%&}O2Uhxr8@qSfP)KAdB{tdYoKLr`<bDKC;RYn08L
zj3Gz-9RAEDX-P?9&%k4#+~y1^#UJ?=M?j~YvgsT;qh^SGQp%-f$`i>vO5atzXgVwv
zWo!D1JXfS<PH6KEes=+Ez)ID2^7g9;59Je~X-6O?dYu=4L7Bg7v^;QzJ4RW{iM3|C
z!q4rq$uP*j&YP52A(dg&P~+Om+%~GnaiBj`#u4UbFXdp}QVtfRJ?uuWt$U|2cc_vi
z)yvO#5Jg;jZQA6W9&=9N-+9~A?yZ<I)4Q3v@CnN2&b!gx3uIuy>pDhgQ?hVg8x-z2
zBBqpWLgMcg6@>R<fB@+{qve!LO#vhO<zVT}FOv|`7aG+=SXKOe|JRAK&r!c2@gcV9
zSBSs&+p|0~lR?rWe`kMw^!O>n-g1}REL4CULCHxT1VwQ@1Few(OgA80%qojYjb|;?
zDKsQnvcE(_>(bt0jTzZey35kLE(N`TI$R8Eqs(7Qe?e(sCpBI`IKz}?B^}2I=Lj={
zg1Quh;omV4xZG5mmmFV7*;r|6KLqV23Z+Wq1bEEp0n6W-f6zF?v-mUVJvi%d&6}*j
z4~{$VORIV-bjLXA3j8KeKXqGYK~H}r+RRR8%L6)YvWOF}jZ2juld?n|dYDeVc@htU
z;0#od%j5Z9;yj!GB|OjhU&3^r|0NvI`CkHhnExd_m-fr~)9*XL_(r@kbvWwm9-~;W
z<TzDt8R`&Te+zJuEsbNaSwP?h!7znmjKN(aTSv!OBA26Q|M>fVf6u5zEf$q<a@{A9
zeRXg+!JA<rfz8xVwrCSTz7NHHW`Z>Z?xc(QdeD9g<m7i?ct+x1T0JUFN}wBF1QJht
z5BUw}GPrh971@3DdJ0K9?O8;V(Z-*$veuByGnmXb1}`oyKl>k(p;8sI{nJ4S1+jrR
zgjTad-82Dz0a{Dj!IWJ&7&uY93(4CptVv1|?fUOcKdc>!m&rNrlXG5@ug;?OK0zC<
zWPzd}L>@@07?+0vz3exBiacY9WTaLS3e<r?tMd9Pr%gtchMiUoXv@KPjwDS+n*trJ
zZ8D4vJ%S)6a1QCjN@+o?JL&^&2tAPl;5ZC#u>ebd7_kKRK);!ZXhJeNBbyIh4**6n
z)F41wgQFnAKVA!3m_G*wW#JUuc8%*a#a*%)9mUywHhea=Z5y=75X0q<@Z0w3d8q1h
z+3$)1Dsx6Ns)1Og%N?<r)04M`&MlfLT~(lSym0i}tckH(xA=+!TX*G!`No?VIsWZ*
zPYumN#`l1EE^9V6`&M3)hsXT}m2nuyeiZrP-9AjSB+cUZy$^CR-)A2$#1!X$V&aF1
zAE!Mry3e8|@f%PMxi9}q`2~~l))Wc1so^W#0RR97v)A7t0e@X@(=Zf$N8&$3d0&$a
zHlfPNG_`|0Fi~i>ch|XTEgakU-b5|GhkwE!<0jG4lnraC*ggL^5Im}ipS_~B;nqzZ
zyZK8CS;BS(-Od%W7kPjF-ci9xTb7!fa}twhc>Ma$SM7~l=bROIB@A1R>f96jSvhIJ
zEl1tLW4Wj2o@$K}s$ZTsd&jCvT+{qaO(VSYE`8Bzv~AQ~X!BV)!A9X+^so2}msa-4
z+ljHCZz&G6n6&JI>64WneVsc#-pf$!%%6WhTU2IO*P`2dnUp7G1{=IKU7?m?RU&aY
zWX)8Q4G)+<dr7fOl;M8Fm!kg6>s7<fjLdsYO5#da?nj>Mwz%cd(w9~*w%sTrv-4$H
zvh$_m$AHVl)N&kz^Uj=?cM)(o6zsg5e>wN%i2Y~ve>3v=v0FDZ@|ycqip}DAuslnZ
zd9TCoBCp-g4JOFFsL5NBI8)48a!JxMDNpU5X$@K#{=ttPi~ig2nRNs3gtB#anvbYC
zq%VEZoc!>(@DJ1fg^%-pY`-scH{#RbDAqR|k=eI@KbiUNZ}q08{h8Yewod<cpx5x%
zinrl4A6lcmn$*|N5j#37w0Y87)2d9J4(n~62C^L4+1mr`&f4UcoU4=BS6WwR>V1Dn
z&Mi-0mE-(#{xeNJ`)C5E(o~Z)SK#Izv&m_X{TPELZ+)yQ!&$;s*bY3_)C#!aM*_Iv
z2LTrGPF`p&I$8LMs0`u~Y;;BO!eB*_Kt+h-cF`3*HwP=44^)IWR1{s&I%}XJsmZUN
z2*@BdhodWE2?m>_{ZyZE(d6i-YBK2il@QKXOr1RUsXTa-!sG)_#TY{-Uw`VzWPN3_
zz%}W~rq4{6Y_EcuZ9t~OH6T-U^229ZOwQNAqI%c4CL2B1Vsg7NIqrEdliMvIr84>Y
zbA6_W+hC^73w@@nJ78wx3sGrs!34}kHB1Z)f(S<dSv8Y4zEF{YXER{%3!unzKA8OR
Lg%X?0V~{8S+hitc

delta 34188
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
E07iim&;S4c

-- 
GitLab